














<!doctype html>

<html class="no-js" lang="de" dir="ltr">
<head>
  <!-- Google Consent Mode V2 Consentmo -->
<script async crossorigin fetchpriority="high" src="/cdn/shopifycloud/importmap-polyfill/es-modules-shim.2.4.0.js"></script>
<script>
  window.consentmo_gcm_initial_state = "";
  window.consentmo_gcm_state = "";
  window.consentmo_gcm_security_storage = "";
  window.consentmo_gcm_ad_storage = "";
  window.consentmo_gcm_analytics_storage = "";
  window.consentmo_gcm_functionality_storage = "";
  window.consentmo_gcm_personalization_storage = "";
  window.consentmo_gcm_ads_data_redaction = "";
  window.consentmo_gcm_url_passthrough = "";
  window.consentmo_gcm_data_layer_name = "";
  
  // Google Consent Mode V2 integration script from Consentmo GDPR
  window.isenseRules = {};
  window.isenseRules.gcm = {
      gcmVersion: 2,
      integrationVersion: 3,
      customChanges: false,
      consentUpdated: false,
      initialState: 7,
      isCustomizationEnabled: false,
      adsDataRedaction: true,
      urlPassthrough: false,
      dataLayer: 'dataLayer',
      categories: { ad_personalization: "marketing", ad_storage: "marketing", ad_user_data: "marketing", analytics_storage: "analytics", functionality_storage: "functionality", personalization_storage: "functionality", security_storage: "strict"},
      storage: { ad_personalization: "false", ad_storage: "false", ad_user_data: "false", analytics_storage: "false", functionality_storage: "false", personalization_storage: "false", security_storage: "false", wait_for_update: 2000 }
  };
  if(window.consentmo_gcm_state !== null && window.consentmo_gcm_state !== "" && window.consentmo_gcm_state !== "0") {
    window.isenseRules.gcm.isCustomizationEnabled = true;
    window.isenseRules.gcm.initialState = window.consentmo_gcm_initial_state === null || window.consentmo_gcm_initial_state.trim() === "" ? window.isenseRules.gcm.initialState : window.consentmo_gcm_initial_state;
    window.isenseRules.gcm.categories.ad_storage = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_storage : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.ad_user_data = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_user_data : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.ad_personalization = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_personalization : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.analytics_storage = window.consentmo_gcm_analytics_storage === null || window.consentmo_gcm_analytics_storage.trim() === "" ? window.isenseRules.gcm.categories.analytics_storage : window.consentmo_gcm_analytics_storage;
    window.isenseRules.gcm.categories.functionality_storage = window.consentmo_gcm_functionality_storage === null || window.consentmo_gcm_functionality_storage.trim() === "" ? window.isenseRules.gcm.categories.functionality_storage : window.consentmo_gcm_functionality_storage;
    window.isenseRules.gcm.categories.personalization_storage = window.consentmo_gcm_personalization_storage === null || window.consentmo_gcm_personalization_storage.trim() === "" ? window.isenseRules.gcm.categories.personalization_storage : window.consentmo_gcm_personalization_storage;
    window.isenseRules.gcm.categories.security_storage = window.consentmo_gcm_security_storage === null || window.consentmo_gcm_security_storage.trim() === "" ? window.isenseRules.gcm.categories.security_storage : window.consentmo_gcm_security_storage;
    window.isenseRules.gcm.urlPassthrough = window.consentmo_gcm_url_passthrough === null || window.consentmo_gcm_url_passthrough.trim() === "" ? window.isenseRules.gcm.urlPassthrough : window.consentmo_gcm_url_passthrough;
    window.isenseRules.gcm.adsDataRedaction = window.consentmo_gcm_ads_data_redaction === null || window.consentmo_gcm_ads_data_redaction.trim() === "" ? window.isenseRules.gcm.adsDataRedaction : window.consentmo_gcm_ads_data_redaction;
    window.isenseRules.gcm.dataLayer = window.consentmo_gcm_data_layer_name === null || window.consentmo_gcm_data_layer_name.trim() === "" ? window.isenseRules.gcm.dataLayer : window.consentmo_gcm_data_layer_name;
  }
  window.isenseRules.initializeGcm = function (rules) {
    if(window.isenseRules.gcm.isCustomizationEnabled) {
      rules.initialState = window.isenseRules.gcm.initialState;
      rules.urlPassthrough = window.isenseRules.gcm.urlPassthrough === true || window.isenseRules.gcm.urlPassthrough === 'true';
      rules.adsDataRedaction = window.isenseRules.gcm.adsDataRedaction === true || window.isenseRules.gcm.adsDataRedaction === 'true';
    }
    
    let initialState = parseInt(rules.initialState);
    let marketingBlocked = initialState === 0 || initialState === 2 || initialState === 5 || initialState === 7;
    let analyticsBlocked = initialState === 0 || initialState === 3 || initialState === 6 || initialState === 7;
    let functionalityBlocked = initialState === 4 || initialState === 5 || initialState === 6 || initialState === 7;

    let consentStatus = (document.cookie.match(/(^| )cookieconsent_status=([^;]+)/) || [])[2] || null;
    let gdprCache = localStorage.getItem('gdprCache') ? JSON.parse(localStorage.getItem('gdprCache')) : null;
    if (consentStatus && gdprCache && typeof gdprCache.updatedPreferences !== "undefined") {
      let updatedPreferences = gdprCache.updatedPreferences;
      marketingBlocked = parseInt(updatedPreferences.indexOf('marketing')) > -1;
      analyticsBlocked = parseInt(updatedPreferences.indexOf('analytics')) > -1;
      functionalityBlocked = parseInt(updatedPreferences.indexOf('functionality')) > -1;
    }

    Object.entries(rules.categories).forEach(category => {
      if(rules.storage.hasOwnProperty(category[0])) {
        switch(category[1]) {
          case 'strict':
            rules.storage[category[0]] = "granted";
            break;
          case 'marketing':
            rules.storage[category[0]] = marketingBlocked ? "denied" : "granted";
            break;
          case 'analytics':
            rules.storage[category[0]] = analyticsBlocked ? "denied" : "granted";
            break;
          case 'functionality':
            rules.storage[category[0]] = functionalityBlocked ? "denied" : "granted";
            break;
        }
      }
    });
    rules.consentUpdated = true;
    isenseRules.gcm = rules;
  }

  /*
   * Options:
   * - true: set default consent for all regions
   * - false: set default consent when the cookie bar active
   */
  const isSetDefaultConsent = false;

  window[window.isenseRules.gcm.dataLayer] = window[window.isenseRules.gcm.dataLayer] || [];
  function gtag() { window[window.isenseRules.gcm.dataLayer].push(arguments); }

  if (isSetDefaultConsent) {
    // Editable
    gtag("consent", "default", {
      ad_storage: "denied",
      ad_personalization: "denied",
      ad_user_data: "denied",
      analytics_storage: "denied",
      functionality_storage: "denied",
      personalization_storage: "denied",
      security_storage: "granted",
      wait_for_update: 2000
    });
    gtag("set", "ads_data_redaction", false);
    gtag("set", "url_passthrough", false);
  }

  function csmConsentGcm() {
    /*
    * initialState acceptable values:
    * 0 - Set both ad_storage and analytics_storage to denied
    * 1 - Set all categories to granted
    * 2 - Set only ad_storage to denied
    * 3 - Set only analytics_storage to denied
    * 4 - Set only functionality_storage to denied
    * 5 - Set both ad_storage and functionality_storage to denied
    * 6 - Set both analytics_storage and functionality_storage to denied
    * 7 - Set all categories to denied
    */
    window.isenseRules.initializeGcm({
      ...window.isenseRules.gcm,
      adsDataRedaction: true,
      urlPassthrough: false,
      initialState: 7
    });

    gtag("consent", (!isSetDefaultConsent ? "default" : "update"), isenseRules.gcm.storage);
    isenseRules.gcm.adsDataRedaction && gtag("set", "ads_data_redaction", isenseRules.gcm.adsDataRedaction);
    isenseRules.gcm.urlPassthrough && gtag("set", "url_passthrough", isenseRules.gcm.urlPassthrough);
  }

  let isInitConsentmoSignal = true;
  document.addEventListener("consentmoSignal", function(e) {
    if (isInitConsentmoSignal) {
      csmConsentGcm();
      isInitConsentmoSignal = false;
    }
  });
</script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height, minimum-scale=1.0, maximum-scale=5.0">

  <title>leevje® - design for loved ones I Only Official Website</title><meta name="description" content="leevje creates playful, timeless &amp; high quality products that children want to have by themselves &amp; parents will love for a modern and conscious family life"><link rel="canonical" href="https://leevje.com/"><link rel="shortcut icon" href="//leevje.com/cdn/shop/files/LD_Instagram_Profilbild_2019_09_09_LT01_Zeichenflaeche_1_eb7c2cd3-1352-4b65-be41-fbcbf69b99e9.jpg?v=1722512655&width=96">
    <link rel="apple-touch-icon" href="//leevje.com/cdn/shop/files/LD_Instagram_Profilbild_2019_09_09_LT01_Zeichenflaeche_1_eb7c2cd3-1352-4b65-be41-fbcbf69b99e9.jpg?v=1722512655&width=180"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><link rel="preload" href="//leevje.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2" as="font" type="font/woff2" crossorigin><meta property="og:type" content="website">
  <meta property="og:title" content="leevje® - design for loved ones I Only Official Website"><meta property="og:description" content="leevje creates playful, timeless &amp; high quality products that children want to have by themselves &amp; parents will love for a modern and conscious family life"><meta property="og:url" content="https://leevje.com/">
<meta property="og:site_name" content="leevje - design for loved ones"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="leevje® - design for loved ones I Only Official Website">
  <meta name="twitter:description" content="leevje creates playful, timeless &amp; high quality products that children want to have by themselves &amp; parents will love for a modern and conscious family life">


  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
  "itemListElement": [{
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://leevje.com"
    }]
  }
  </script>

<script type="application/ld+json">
  [
    {
      "@context": "https://schema.org",
      "@type": "WebSite",
      "name": "leevje - design for loved ones",
      "url": "https:\/\/leevje.com",
      "potentialAction": {
        "@type": "SearchAction",
        "target": "https:\/\/leevje.com\/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
      }
    },
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "name": "leevje - design for loved ones","logo": "https:\/\/leevje.com\/cdn\/shop\/files\/leevje_DESIGN_FOR_LOVED_ONES_schwarz_logo.png?v=1718179275\u0026width=2177","url": "https:\/\/leevje.com"
    }
  ]
  </script><style>/* Typography (heading) */
  

/* Typography (body) */
  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
  src: url("//leevje.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2") format("woff2"),
       url("//leevje.com/cdn/fonts/jost/jost_n4.791c46290e672b3f85c3d1c651ef2efa3819eadd.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
  src: url("//leevje.com/cdn/fonts/jost/jost_i4.b690098389649750ada222b9763d55796c5283a5.woff2") format("woff2"),
       url("//leevje.com/cdn/fonts/jost/jost_i4.fd766415a47e50b9e391ae7ec04e2ae25e7e28b0.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
  src: url("//leevje.com/cdn/fonts/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2") format("woff2"),
       url("//leevje.com/cdn/fonts/jost/jost_n7.cbfc16c98c1e195f46c536e775e4e959c5f2f22b.woff") format("woff");
}

@font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: italic;
  font-display: fallback;
  src: url("//leevje.com/cdn/fonts/jost/jost_i7.d8201b854e41e19d7ed9b1a31fe4fe71deea6d3f.woff2") format("woff2"),
       url("//leevje.com/cdn/fonts/jost/jost_i7.eae515c34e26b6c853efddc3fc0c552e0de63757.woff") format("woff");
}

:root {
    /* Container */
    --container-max-width: 100%;
    --container-xxs-max-width: 27.5rem; /* 440px */
    --container-xs-max-width: 42.5rem; /* 680px */
    --container-sm-max-width: 61.25rem; /* 980px */
    --container-md-max-width: 71.875rem; /* 1150px */
    --container-lg-max-width: 78.75rem; /* 1260px */
    --container-xl-max-width: 85rem; /* 1360px */
    --container-gutter: 1.25rem;

    --section-vertical-spacing: 2.5rem;
    --section-vertical-spacing-tight:2.5rem;

    --section-stack-gap:2.25rem;
    --section-stack-gap-tight:2.25rem;

    /* Form settings */
    --form-gap: 1.25rem; /* Gap between fieldset and submit button */
    --fieldset-gap: 1rem; /* Gap between each form input within a fieldset */
    --form-control-gap: 0.625rem; /* Gap between input and label (ignored for floating label) */
    --checkbox-control-gap: 0.75rem; /* Horizontal gap between checkbox and its associated label */
    --input-padding-block: 0.65rem; /* Vertical padding for input, textarea and native select */
    --input-padding-inline: 0.8rem; /* Horizontal padding for input, textarea and native select */
    --checkbox-size: 0.875rem; /* Size (width and height) for checkbox */

    /* Other sizes */
    --sticky-area-height: calc(var(--announcement-bar-is-sticky, 0) * var(--announcement-bar-height, 0px) + var(--header-is-sticky, 0) * var(--header-is-visible, 1) * var(--header-height, 0px));

    /* RTL support */
    --transform-logical-flip: 1;
    --transform-origin-start: left;
    --transform-origin-end: right;

    /**
     * ---------------------------------------------------------------------
     * TYPOGRAPHY
     * ---------------------------------------------------------------------
     */

    /* Font properties */
    --heading-font-family: Helvetica, Arial, sans-serif;
    --heading-font-weight: 400;
    --heading-font-style: normal;
    --heading-text-transform: uppercase;
    --heading-letter-spacing: 0.18em;
    --text-font-family: Jost, sans-serif;
    --text-font-weight: 400;
    --text-font-style: normal;
    --text-letter-spacing: 0.0em;
    --button-font: var(--text-font-style) var(--text-font-weight) var(--text-sm) / 1.65 var(--text-font-family);
    --button-text-transform: uppercase;
    --button-letter-spacing: 0.18em;

    /* Font sizes */--text-heading-size-factor: 0.9;
    --text-h1: max(0.6875rem, clamp(1.375rem, 1.146341463414634rem + 0.975609756097561vw, 2rem) * var(--text-heading-size-factor));
    --text-h2: max(0.6875rem, clamp(1.25rem, 1.0670731707317074rem + 0.7804878048780488vw, 1.75rem) * var(--text-heading-size-factor));
    --text-h3: max(0.6875rem, clamp(1.125rem, 1.0335365853658536rem + 0.3902439024390244vw, 1.375rem) * var(--text-heading-size-factor));
    --text-h4: max(0.6875rem, clamp(1rem, 0.9542682926829268rem + 0.1951219512195122vw, 1.125rem) * var(--text-heading-size-factor));
    --text-h5: calc(0.875rem * var(--text-heading-size-factor));
    --text-h6: calc(0.75rem * var(--text-heading-size-factor));

    --text-xs: 0.6875rem;
    --text-sm: 0.75rem;
    --text-base: 0.8125rem;
    --text-lg: 0.9375rem;
    --text-xl: 1.0625rem;

    /* Rounded variables (used for border radius) */
    --rounded-full: 9999px;
    --button-border-radius: 0.0rem;
    --input-border-radius: 0.0rem;

    /* Box shadow */
    --shadow-sm: 0 2px 8px rgb(0 0 0 / 0.05);
    --shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    --shadow-md: 0 5px 30px rgb(0 0 0 / 0.05);
    --shadow-block: px px px rgb(var(--text-primary) / 0.0);

    /**
     * ---------------------------------------------------------------------
     * OTHER
     * ---------------------------------------------------------------------
     */

    --checkmark-svg-url: url(//leevje.com/cdn/shop/t/166/assets/checkmark.svg?v=77552481021870063511710869225);
    --cursor-zoom-in-svg-url: url(//leevje.com/cdn/shop/t/166/assets/cursor-zoom-in.svg?v=112480252220988712521712141532);
  }

  [dir="rtl"]:root {
    /* RTL support */
    --transform-logical-flip: -1;
    --transform-origin-start: right;
    --transform-origin-end: left;
  }

  @media screen and (min-width: 700px) {
    :root {
      /* Typography (font size) */
      --text-xs: 0.6875rem;
      --text-sm: 0.75rem;
      --text-base: 0.8125rem;
      --text-lg: 0.9375rem;
      --text-xl: 1.1875rem;

      /* Spacing settings */
      --container-gutter: 2rem;
    }
  }

  @media screen and (min-width: 1000px) {
    :root {
      /* Spacing settings */
      --container-gutter: 3rem;

      --section-vertical-spacing: 4rem;
      --section-vertical-spacing-tight: 4rem;

      --section-stack-gap:3rem;
      --section-stack-gap-tight:3rem;
    }
  }:root {/* Overlay used for modal */
    --page-overlay: 0 0 0 / 0.4;

    /* We use the first scheme background as default */
    --page-background: ;

    /* Product colors */
    --on-sale-text: 123 102 96;
    --on-sale-badge-background: 123 102 96;
    --on-sale-badge-text: 255 255 255;
    --sold-out-badge-background: 123 102 96;
    --sold-out-badge-text: 255 255 255;
    --custom-badge-background: 28 28 28;
    --custom-badge-text: 255 255 255;
    --star-color: 86 80 80;

    /* Status colors */
    --success-background: 212 227 203;
    --success-text: 48 122 7;
    --warning-background: 253 241 224;
    --warning-text: 237 138 0;
    --error-background: 243 204 204;
    --error-text: 203 43 43;
  }.color-scheme--scheme-1 {
      /* Color settings */--accent: 171 160 146;
      --text-color: 28 28 28;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 221 221 221;/* Button colors */
      --button-background: 171 160 146;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 123 102 96;
    }.shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673) + .shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-2 {
      /* Color settings */--accent: 86 80 80;
      --text-color: 86 80 80;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 230 229 229;/* Button colors */
      --button-background: 86 80 80;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 86 80 80;
    }.shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673) + .shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-3 {
      /* Color settings */--accent: 255 255 255;
      --text-color: 255 255 255;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 255 255 255;/* Button colors */
      --button-background: 255 255 255;
      --button-text-color: 28 28 28;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673) + .shopify-section:has(.section-spacing.color-scheme--bg-54922f2e920ba8346f6dc0fba343d673:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--scheme-4 {
      /* Color settings */--accent: 255 255 255;
      --text-color: 255 255 255;
      --background: 0 0 0 / 0.0;
      --background-without-opacity: 0 0 0;
      --background-gradient: ;--border-color: 255 255 255;/* Button colors */
      --button-background: 255 255 255;
      --button-text-color: 28 28 28;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 28 28 28;
    }.shopify-section:has(.section-spacing.color-scheme--bg-3671eee015764974ee0aef1536023e0f) + .shopify-section:has(.section-spacing.color-scheme--bg-3671eee015764974ee0aef1536023e0f:not(.bordered-section)) .section-spacing {
      padding-block-start: 0;
    }.color-scheme--dialog {
      /* Color settings */--accent: 86 80 80;
      --text-color: 86 80 80;
      --background: 255 255 255 / 1.0;
      --background-without-opacity: 255 255 255;
      --background-gradient: ;--border-color: 230 229 229;/* Button colors */
      --button-background: 86 80 80;
      --button-text-color: 255 255 255;

      /* Circled buttons */
      --circle-button-background: 255 255 255;
      --circle-button-text-color: 86 80 80;
    }
</style>



  <style>
    body.ly-iameditions {
      /* zentrale, pflegbare Basiswerte (aus Theme Settings) */
      --iam-primary-bg: 86 80 80;
      --iam-primary-text: 255 255 255;
    }


    /* Button-Farben im richtigen Scope überschreiben */
    body.ly-iameditions .color-scheme--scheme-1 {
      --button-background: var(--iam-primary-bg) !important;
      --button-text-color: var(--iam-primary-text) !important;
      --button-outline-color: var(--iam-primary-bg) !important;

      --initial-gradient: linear-gradient(rgb(var(--button-background)), rgb(var(--button-background))) !important;
      --hover-gradient: linear-gradient(rgb(var(--button-background)), rgb(var(--button-background))) !important;
    }

    /* Announcement Bar */
    body.ly-iameditions [data-section-type="announcement-bar"] {
      background: rgb(var(--iam-primary-bg)) !important;
      color: rgb(var(--iam-primary-text)) !important;
    }

    /* Container um den Button */
    body.ly-iameditions .product-info-button-container {
      background: rgb(var(--iam-primary-bg)) !important;
      color: rgb(var(--iam-primary-text)) !important;
    }

    /* STICKY BAR */
    body.ly-iameditions product-sticky-bar.product-sticky-bar buy-buttons .button {
      color: rgb(var(--iam-primary-text)) !important;
      background: rgb(var(--iam-primary-bg)) !important;
    }
  </style>
<script>
  document.documentElement.classList.replace('no-js', 'js');

  // This allows to expose several variables to the global scope, to be used in scripts
  window.themeVariables = {
    settings: {
      showPageTransition: false,
      pageType: "index",
      moneyFormat: "\u003cspan class=money\u003e{{amount}}€\u003c\/span\u003e",
      moneyWithCurrencyFormat: "\u003cspan class=money\u003e{{amount}}€\u003c\/span\u003e",
      currencyCodeEnabled: false,
      cartType: "drawer",
      staggerMenuApparition: true
    },

    strings: {
      addToCartButton: "In den Warenkorb",
      soldOutButton: "Ausverkauft",
      preOrderButton: "Vorbestellen",
      unavailableButton: "Nicht verfügbar",
      addedToCart: "Zum Warenkorb hinzugefügt!",
      closeGallery: "Galerie schließen",
      zoomGallery: "Bild vergrößern",
      errorGallery: "Bild kann nicht geladen werden",
      soldOutBadge: "Ausverkauft",
      discountBadge: "Spare @@",
      sku: "SKU:",
      shippingEstimatorNoResults: "Tut uns leid, aber wir verschicken leider nicht an deine Adresse.",
      shippingEstimatorOneResult: "Für deine Adresse gibt es einen Versandtarif:",
      shippingEstimatorMultipleResults: "Für deine Adresse gibt es mehrere Versandtarife:",
      shippingEstimatorError: "Beim Berechnen der Versandkosten ist ein Fehler aufgetreten:",
      next: "Vor",
      previous: "Zurück"
    },

    mediaQueries: {
      'sm': 'screen and (min-width: 700px)',
      'md': 'screen and (min-width: 1000px)',
      'lg': 'screen and (min-width: 1150px)',
      'xl': 'screen and (min-width: 1400px)',
      '2xl': 'screen and (min-width: 1600px)',
      'sm-max': 'screen and (max-width: 699px)',
      'md-max': 'screen and (max-width: 999px)',
      'lg-max': 'screen and (max-width: 1149px)',
      'xl-max': 'screen and (max-width: 1399px)',
      '2xl-max': 'screen and (max-width: 1599px)',
      'motion-safe': '(prefers-reduced-motion: no-preference)',
      'motion-reduce': '(prefers-reduced-motion: reduce)',
      'supports-hover': 'screen and (pointer: fine)',
      'supports-touch': 'screen and (hover: none)'
    }
  };</script>
<script>
    if (!(HTMLScriptElement.supports && HTMLScriptElement.supports('importmap'))) {
      const importMapPolyfill = document.createElement('script');
      importMapPolyfill.async = true;
      importMapPolyfill.src = "//leevje.com/cdn/shop/t/166/assets/es-module-shims.min.js?v=46445230004644522171710869215";

      document.head.appendChild(importMapPolyfill);
    }
  </script>

  <script type="importmap">{
      "imports": {
        "vendor": "//leevje.com/cdn/shop/t/166/assets/vendor.min.js?v=180270185114800816751710869214",
          "theme": "//leevje.com/cdn/shop/t/166/assets/theme.js?v=23247577860690926401759398686",
          "photoswipe": "//leevje.com/cdn/shop/t/166/assets/photoswipe.min.js?v=20290624223189769891710869208"
        }
      }
  </script>

  <script type="module" src="//leevje.com/cdn/shop/t/166/assets/vendor.min.js?v=180270185114800816751710869214"></script>
  <script type="module" src="//leevje.com/cdn/shop/t/166/assets/theme.js?v=23247577860690926401759398686"></script>
  <script type="module" src="//leevje.com/cdn/shop/t/166/assets/ed-custom.js?v=44763686829196228731770227188"></script>


  <script>
  const boostSDAssetFileURL = "\/\/leevje.com\/cdn\/shop\/t\/166\/assets\/boost_sd_assets_file_url.gif?v=58037";
  window.boostSDAssetFileURL = boostSDAssetFileURL;

  if (window.boostSDAppConfig) {
    window.boostSDAppConfig.generalSettings.custom_js_asset_url = "//leevje.com/cdn/shop/t/166/assets/boost-sd-custom.js?v=160962118398746674481712802109";
    window.boostSDAppConfig.generalSettings.custom_css_asset_url = "//leevje.com/cdn/shop/t/166/assets/boost-sd-custom.css?v=72809539502277619291712802110";
  }

  
</script>

  
  <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="5g6AjzHz-1VJdqudAS5Rdb9M8IjJl3n79A2q5IKxgiw">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/7934804027/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="33c51a73224f0efef87380cb8d617107">
<meta id="in-context-paypal-metadata" data-shop-id="7934804027" data-venmo-supported="false" data-environment="production" data-locale="de_DE" data-paypal-v4="true" data-currency="EUR">
<link rel="alternate" hreflang="x-default" href="https://leevje.com/">
<link rel="alternate" hreflang="de" href="https://leevje.com/">
<link rel="alternate" hreflang="en" href="https://leevje.com/en">
<script async="async" src="/checkouts/internal/preloads.js?locale=de-DE"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=de-DE&shop_id=7934804027" crossorigin="anonymous"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":7934804027,"countryCode":"DE","currencyCode":"EUR","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/7934804027","merchantName":"leevje - design for loved ones","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex"],"total":{"type":"pending","label":"leevje - design for loved ones","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"33c51a73224f0efef87380cb8d617107","betas":["rich-media-storefront-analytics"],"domain":"leevje.com","predictiveSearch":true,"shopId":7934804027,"locale":"de"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "hejcrew.myshopify.com";
Shopify.locale = "de";
Shopify.currency = {"active":"EUR","rate":"1.0"};
Shopify.country = "DE";
Shopify.theme = {"name":"leevje-prestige\/main","id":150602383626,"schema_name":"Prestige","schema_version":"9.2.1","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "leevje.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
  window.ShopifyPay = window.ShopifyPay || {};
  window.ShopifyPay.apiHost = "shop.app\/pay";
  window.ShopifyPay.redirectState = null;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//leevje.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js"></script>
<script type="module">
  await import("//leevje.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-cash-offers":["modules/v2/loader.shop-cash-offers.de.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.de.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.de.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.de.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.de.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.de.esm.js"],"shop-button":["modules/v2/loader.shop-button.de.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.de.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.de.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.de.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.de.esm.js"],"shop-toast-manager":["modules/v2/loader.shop-toast-manager.de.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.de.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.de.esm.js"],"avatar":["modules/v2/loader.avatar.de.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.de.esm.js"],"pay-button":["modules/v2/loader.pay-button.de.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.de.esm.js"],"shop-login":["modules/v2/loader.shop-login.de.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.de.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.de.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/static.klaviyo.com\/onsite\/js\/klaviyo.js?company_id=WvDG3q\u0026shop=hejcrew.myshopify.com","https:\/\/servicepoints.sendcloud.sc\/shops\/shopify\/embed\/34bdf608-b9f5-472d-9567-77b7af112aeb.js?shop=hejcrew.myshopify.com","https:\/\/static.klaviyo.com\/onsite\/js\/klaviyo.js?company_id=WvDG3q\u0026shop=hejcrew.myshopify.com","https:\/\/app.kiwisizing.com\/web\/js\/dist\/kiwiSizing\/plugin\/SizingPlugin.prod.js?v=334\u0026shop=hejcrew.myshopify.com","https:\/\/d1hcrjcdtouu7e.cloudfront.net\/js\/gdpr_cookie_consent.min.js?shop=hejcrew.myshopify.com","https:\/\/cdn.hello-charles.com\/charles-satellite\/1.x\/charles-snippet.js?proxy_vendor=shopify\u0026universe_uri=https:\/\/leevje.hello-charles.com\u0026script_id=81ecde1a-c8d3-4a5b-9cf8-17a1dd07470d\u0026shop=hejcrew.myshopify.com","https:\/\/wisepops.net\/h\/v9XxiERPvZ\/loader.js?v=3\u0026shop=hejcrew.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":7934804027,"offset":7200,"reqid":"f4569efa-71b8-403a-b682-660f1e77bfea-1776357322","pageurl":"leevje.com\/.json","u":"83374ef21166","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Durch hCaptcha geschützt',privacyText:'Datenschutz',termsText:'Allgemeine Geschäftsbedingungen'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//leevje.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//leevje.com/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-65b4c6d7.js?v=20250812"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://leevje.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.de.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://leevje.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

#shopify-buyer-consent.hidden {
  display: none;
}

#shopify-subscription-policy-button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

#shopify-subscription-policy-button::before {
  box-shadow: none;
}

      </style>

<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  <!-- "snippets/shogun-products.liquid" was not rendered, the associated app was uninstalled -->

<link href="//leevje.com/cdn/shop/t/166/assets/theme.css?v=71558577041163562951759398685" rel="stylesheet" type="text/css" media="all" /><link href="//leevje.com/cdn/shop/t/166/assets/ed-custom.css?v=120762751118238795151771924159" rel="stylesheet" type="text/css" media="all" />


<script>
    window.Personizely = {
        
        customer: null,
        
        moneyFormat: '{{amount}}€',
        currency: 'EUR',
        cart: {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"EUR","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
        cartCollections: {},
        
        product: null
        
    };
</script>
<script src="https://static.personizely.net/75d972f411.js" type="text/javascript" async></script><script>
    window.KiwiSizing = window.KiwiSizing === undefined ? {} : window.KiwiSizing;
    KiwiSizing.shop = "hejcrew.myshopify.com";
    
    
    </script>
    <script src="https://shopifyorderlimits.s3.amazonaws.com/limits/hejcrew.myshopify.com?v=100a&r=20230419140201&shop=hejcrew.myshopify.com"></script>
    

  <!-- "snippets/shogun-head.liquid" was not rendered, the associated app was uninstalled -->
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">

  
  <meta name="google-site-verification" content="4-y3eBJvRqJ9tUOtmSAjEnIv3QCYyUyeX0ebXGzXiFE" />
<!-- BEGIN app block: shopify://apps/consentmo-gdpr/blocks/gdpr_cookie_consent/4fbe573f-a377-4fea-9801-3ee0858cae41 -->


<!-- END app block --><!-- BEGIN app block: shopify://apps/triplewhale/blocks/triple_pixel_snippet/483d496b-3f1a-4609-aea7-8eee3b6b7a2a --><link rel='preconnect dns-prefetch' href='https://api.config-security.com/' crossorigin />
<link rel='preconnect dns-prefetch' href='https://conf.config-security.com/' crossorigin />
<script>
/* >> TriplePixel :: start*/
window.TriplePixelData={TripleName:"hejcrew.myshopify.com",ver:"2.16",plat:"SHOPIFY",isHeadless:false,src:'SHOPIFY_EXT',product:{id:"",name:``,price:"",variant:""},search:"",collection:"",cart:"drawer",template:"index",curr:"EUR" || "EUR"},function(W,H,A,L,E,_,B,N){function O(U,T,P,H,R){void 0===R&&(R=!1),H=new XMLHttpRequest,P?(H.open("POST",U,!0),H.setRequestHeader("Content-Type","text/plain")):H.open("GET",U,!0),H.send(JSON.stringify(P||{})),H.onreadystatechange=function(){4===H.readyState&&200===H.status?(R=H.responseText,U.includes("/first")?eval(R):P||(N[B]=R)):(299<H.status||H.status<200)&&T&&!R&&(R=!0,O(U,T-1,P))}}if(N=window,!N[H+"sn"]){N[H+"sn"]=1,L=function(){return Date.now().toString(36)+"_"+Math.random().toString(36)};try{A.setItem(H,1+(0|A.getItem(H)||0)),(E=JSON.parse(A.getItem(H+"U")||"[]")).push({u:location.href,r:document.referrer,t:Date.now(),id:L()}),A.setItem(H+"U",JSON.stringify(E))}catch(e){}var i,m,p;A.getItem('"!nC`')||(_=A,A=N,A[H]||(E=A[H]=function(t,e,i){return void 0===i&&(i=[]),"State"==t?E.s:(W=L(),(E._q=E._q||[]).push([W,t,e].concat(i)),W)},E.s="Installed",E._q=[],E.ch=W,B="configSecurityConfModel",N[B]=1,O("https://conf.config-security.com/model",5),i=L(),m=A[atob("c2NyZWVu")],_.setItem("di_pmt_wt",i),p={id:i,action:"profile",avatar:_.getItem("auth-security_rand_salt_"),time:m[atob("d2lkdGg=")]+":"+m[atob("aGVpZ2h0")],host:A.TriplePixelData.TripleName,plat:A.TriplePixelData.plat,url:window.location.href.slice(0,500),ref:document.referrer,ver:A.TriplePixelData.ver},O("https://api.config-security.com/event",5,p),O("https://api.config-security.com/first?host=".concat(p.host,"&plat=").concat(p.plat),5)))}}("","TriplePixel",localStorage);
/* << TriplePixel :: end*/
</script>



<!-- END app block --><!-- BEGIN app block: shopify://apps/wisepops-popup-builder-cro/blocks/app-embed/e7d7a4f7-0df4-4073-9375-5f36db513952 --><script>
  // Create the wisepops() function
  window.wisepops_key = window.WisePopsObject = window.wisepops_key || window.WisePopsObject || "wisepops";
  window[window.wisepops_key] = function () {
    window[window.wisepops_key].q.push(arguments);
  };
  window[window.wisepops_key].q = [];
  window[window.wisepops_key].l = Date.now();

  // Disable deprecated snippet
  window._wisepopsSkipShopifyDeprecatedSnippet = true;

  document.addEventListener('wisepops.after-initialization', function () {
    // https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
    function getCookieValue(sKey) {
      if (!sKey) { return null; }
      return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1")) || null;
    }

    function getTotalInventoryQuantity() {
      var variants = null;
      if (!variants) {
        return null;
      }

      var totalQuantity = 0;
      for (var i in variants) {
        if (variants[i] && variants[i].inventory_quantity) {
          totalQuantity += variants[i].inventory_quantity;
        } else {
          return null;
        }
      }
      return totalQuantity;
    }

    function getMapCartItems(key, items){
      var cartItems = items ?? [];
      return cartItems.map(function (item) {
        return item[key];
      })
      .filter(function (item){
        if (item !== undefined && item !== null && item !== "") {
          return true;
        }
        return false;
      })
      .join(',');
    }

    

    // Set built-in properties
    window[window.wisepops_key]('properties', {
      client_id: null,
      cart: {
        discount_code: getCookieValue('discount_code'),
        item_count: 0,
        total_price: 0 / 100,
        currency: "EUR",
        skus: getMapCartItems('sku'),
        items: []
      },
      customer: {
        accepts_marketing: false,
        is_logged_in:  false ,
        last_order: {
          created_at: null,
        },
        orders_count: 0,
        total_spent: (isNaN(null) ? 0 : (null / 100)),
        tags:  null ,
        email: null,
        first_name: null,
        last_name: null,
      },
      product: {
        available: null,
        price:  null ,
        tags: null,
        total_inventory_quantity: getTotalInventoryQuantity(),
        stock: 0,
      },
      orders: {},
      

    }, { temporary: true });

    // Custom event when product added to cart
    var shopifyTrackFunction = window.ShopifyAnalytics && ShopifyAnalytics.lib && ShopifyAnalytics.lib.track;
    var lastAddedToCartTimestamp = 0;
    if (shopifyTrackFunction) {
      ShopifyAnalytics.lib.track = function () {
        if (arguments[0] === 'Added Product') {
            (async () => {
                let cartPayload;
                try {
                    cartPayload = await (await fetch(window.Shopify.routes.root + 'cart.js')).json();
                } catch (e) {}

                if (cartPayload) {
                    window[window.wisepops_key]('properties', {
                        cart: {
                            discount_code: getCookieValue('discount_code'),
                            item_count: cartPayload.items.length,
                            total_price: (cartPayload.total_price ?? 0) / 100,
                            currency: cartPayload.currency,
                            skus: getMapCartItems('sku', cartPayload.items),
                            items: cartPayload.items.map(item => ({
                                product_id: item.product_id,
                                variant_id: item.variant_id,
                                sku: item.sku,
                                quantity: item.quantity,
                                price: (item.final_price ?? 0) / 100,
                                totalPrice: (item.final_line_price ?? 0) / 100
                            })),
                        }
                    }, {temporary: true});
                }

                var currentTimestamp = Date.now();
                if (currentTimestamp > lastAddedToCartTimestamp + 5000) {
                    window[window.wisepops_key]('event', 'product-added-to-cart');
                    lastAddedToCartTimestamp = currentTimestamp;
                }
            })();
        }
        shopifyTrackFunction.apply(this, arguments);
      };
    }
  });
</script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/langify/blocks/langify/b50c2edb-8c63-4e36-9e7c-a7fdd62ddb8f --><!-- BEGIN app snippet: ly-switcher-factory -->




<style>
  .ly-switcher-wrapper.ly-hide, .ly-recommendation.ly-hide, .ly-recommendation .ly-submit-btn {
    display: none !important;
  }

  #ly-switcher-factory-template {
    display: none;
  }.ly-languages-switcher ul > li[key="de"],
      .ly-popup-modal .ly-popup-modal-content ul > li[key="de"],
      .ly-languages-switcher.ly-links a[data-language-code="de"] {
        order: 1 !important;
      }.ly-languages-switcher ul > li[key="en"],
      .ly-popup-modal .ly-popup-modal-content ul > li[key="en"],
      .ly-languages-switcher.ly-links a[data-language-code="en"] {
        order: 2 !important;
      }
      .ly-breakpoint-1 { display: none; }
      @media (min-width:0px) and (max-width: 339px ) {
        .ly-breakpoint-1 { display: flex; }

        .ly-recommendation .ly-banner-content, 
        .ly-recommendation .ly-popup-modal-content {
          font-size: 14px !important;
          color: #000 !important;
          background: #fff !important;
          border-radius: 0px !important;
          border-width: 0px !important;
          border-color: #000 !important;
        }
        .ly-recommendation-form button[type="submit"] {
          font-size: 14px !important;
          color: #fff !important;
          background: #999 !important;
        }
      }
      .ly-breakpoint-2 { display: none; }
      @media (min-width:340px)  {
        .ly-breakpoint-2 { display: flex; }

        .ly-recommendation .ly-banner-content, 
        .ly-recommendation .ly-popup-modal-content {
          font-size: 14px !important;
          color: #000 !important;
          background: #fff !important;
          border-radius: 0px !important;
          border-width: 0px !important;
          border-color: #000 !important;
        }
        .ly-recommendation-form button[type="submit"] {
          font-size: 14px !important;
          color: #fff !important;
          background: #999 !important;
        }
      }


  

  /* Accessibility: Focus indicators - only visible for keyboard navigation */
  .ly-languages-switcher:focus-visible,
  .ly-languages-switcher *:focus-visible,
  .ly-currency-switcher:focus-visible,
  .ly-currency-switcher *:focus-visible,
  .ly-country-switcher:focus-visible,
  .ly-country-switcher *:focus-visible,
  .ly-custom-dropdown-current:focus-visible,
  .ly-custom-dropdown-list-element:focus-visible,
  .ly-languages-switcher-link:focus-visible,
  .ly-popup-current:focus-visible,
  .ly-close:focus-visible,
  .ly-submit-btn:focus-visible,
  .ly-text-input:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
  }

  @media (prefers-color-scheme: dark) {
    .ly-languages-switcher:focus-visible,
    .ly-languages-switcher *:focus-visible,
    .ly-currency-switcher:focus-visible,
    .ly-currency-switcher *:focus-visible,
    .ly-country-switcher:focus-visible,
    .ly-country-switcher *:focus-visible,
    .ly-custom-dropdown-current:focus-visible,
    .ly-custom-dropdown-list-element:focus-visible,
    .ly-languages-switcher-link:focus-visible,
    .ly-popup-current:focus-visible,
    .ly-close:focus-visible,
    .ly-submit-btn:focus-visible,
    .ly-text-input:focus-visible {
      outline-color: #66b3ff;
    }
  }
</style>


<template id="ly-switcher-factory-template">
<div data-breakpoint="0" class="ly-switcher-wrapper ly-breakpoint-1 fixed bottom_right ly-hide" style="font-size: 14px; margin: 0px 0px; "><div data-dropup="false" onclick="langify.switcher.toggleSwitcherOpen(this)" class="ly-languages-switcher ly-custom-dropdown-switcher ly-bright-theme" style=" margin: 0px 0px;">
          <span role="button" tabindex="0" aria-label="Selected language: Deutsch" aria-expanded="false" aria-controls="languagesSwitcherList-1" class="ly-custom-dropdown-current" style="background: #fff; color: #000;  border-style: solid; border-width: 0px; border-radius: 0px; border-color: #000;  padding: 0px 0px;"><i class="ly-icon ly-flag-icon ly-flag-icon-de de " aria-hidden="true"></i><span class="ly-custom-dropdown-current-inner ly-custom-dropdown-current-inner-text">Deutsch
</span>
<div aria-hidden="true" class="ly-arrow ly-arrow-black stroke" style="vertical-align: middle; width: 14.0px; height: 14.0px;">
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.0 14.0" height="14.0px" width="14.0px" style="position: absolute;">
          <path d="M1 4.5 L7.0 10.5 L13.0 4.5" fill="transparent" stroke="#000" stroke-width="1px"/>
        </svg>
      </div>
          </span>
          <ul id="languagesSwitcherList-1" role="list" class="ly-custom-dropdown-list ly-is-open ly-bright-theme" style="background: #fff; color: #000;  border-style: solid; border-width: 0px; border-radius: 0px; border-color: #000;"><li key="de" style="color: #000;  margin: 0px 0px; padding: 0px 0px;">
                  <a class="ly-custom-dropdown-list-element ly-languages-switcher-link ly-bright-theme"
                    href="https://hejcrew.myshopify.com/.json"
                      data-language-code="de"

                    
                    lang="de" data-ly-locked="true" rel="nofollow"><i class="ly-icon ly-flag-icon ly-flag-icon-de" aria-hidden="true"></i><span class="ly-custom-dropdown-list-element-right">German</span></a>
                </li><li key="en" style="color: #000;  margin: 0px 0px; padding: 0px 0px;">
                  <a class="ly-custom-dropdown-list-element ly-languages-switcher-link ly-bright-theme"
                    href="#"
                      data-language-code="en"

                    
                    lang="en" data-ly-locked="true" rel="nofollow"><i class="ly-icon ly-flag-icon ly-flag-icon-en" aria-hidden="true"></i><span class="ly-custom-dropdown-list-element-right">Englisch</span></a>
                </li></ul>
        </div></div>

<div data-breakpoint="340" class="ly-switcher-wrapper ly-breakpoint-2 custom ly-custom ly-hide" style="font-size: 14px; "><div data-dropup="false" onclick="langify.switcher.toggleSwitcherOpen(this)" class="ly-languages-switcher ly-custom-dropdown-switcher ly-bright-theme" style=" margin: 0px 0px;">
          <span role="button" tabindex="0" aria-label="Selected language: Deutsch" aria-expanded="false" aria-controls="languagesSwitcherList-2" class="ly-custom-dropdown-current" style="background: #fff; color: #000;  border-style: solid; border-width: 0px; border-radius: 0px; border-color: #000;  padding: 0px 0px;"><i class="ly-icon ly-flag-icon ly-flag-icon-de de " aria-hidden="true"></i><span class="ly-custom-dropdown-current-inner ly-custom-dropdown-current-inner-text">Deutsch
</span>
<div aria-hidden="true" class="ly-arrow ly-arrow-black stroke" style="vertical-align: middle; width: 14.0px; height: 14.0px;">
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.0 14.0" height="14.0px" width="14.0px" style="position: absolute;">
          <path d="M1 4.5 L7.0 10.5 L13.0 4.5" fill="transparent" stroke="#000" stroke-width="1px"/>
        </svg>
      </div>
          </span>
          <ul id="languagesSwitcherList-2" role="list" class="ly-custom-dropdown-list ly-is-open ly-bright-theme" style="background: #fff; color: #000;  border-style: solid; border-width: 0px; border-radius: 0px; border-color: #000;"><li key="de" style="color: #000;  margin: 0px 0px; padding: 0px 0px;">
                  <a class="ly-custom-dropdown-list-element ly-languages-switcher-link ly-bright-theme"
                    href="https://hejcrew.myshopify.com/.json"
                      data-language-code="de"

                    
                    lang="de" data-ly-locked="true" rel="nofollow"><i class="ly-icon ly-flag-icon ly-flag-icon-de" aria-hidden="true"></i><span class="ly-custom-dropdown-list-element-right">German</span></a>
                </li><li key="en" style="color: #000;  margin: 0px 0px; padding: 0px 0px;">
                  <a class="ly-custom-dropdown-list-element ly-languages-switcher-link ly-bright-theme"
                    href="#"
                      data-language-code="en"

                    
                    lang="en" data-ly-locked="true" rel="nofollow"><i class="ly-icon ly-flag-icon ly-flag-icon-en" aria-hidden="true"></i><span class="ly-custom-dropdown-list-element-right">Englisch</span></a>
                </li></ul>
        </div></div>
</template><link rel="preload stylesheet" href="https://cdn.shopify.com/extensions/019cc0b2-ef5a-74d0-8731-c3578054ad9c/langify-87/assets/langify-flags.css" as="style" media="print" onload="this.media='all'; this.onload=null;"><!-- END app snippet -->

<script>
  var langify = window.langify || {};
  var customContents = {};
  var customContents_image = {};
  var langifySettingsOverwrites = {};
  var defaultSettings = {
    debug: false,               // BOOL : Enable/disable console logs
    observe: true,              // BOOL : Enable/disable the entire mutation observer (off switch)
    observeLinks: false,
    observeImages: true,
    observeCustomContents: true,
    maxMutations: 5,
    timeout: 100,               // INT : Milliseconds to wait after a mutation, before the next mutation event will be allowed for the element
    linksBlacklist: [],
    usePlaceholderMatching: false
  };

  if(langify.settings) { 
    langifySettingsOverwrites = Object.assign({}, langify.settings);
    langify.settings = Object.assign(defaultSettings, langify.settings); 
  } else { 
    langify.settings = defaultSettings; 
  }

  langify.settings.theme = null;
  langify.settings.switcher = {"customCSS":"","languageDetection":false,"languageDetectionDefault":"de","enableDefaultLanguage":false,"breakpoints":[{"key":0,"label":"0px","config":{"type":"custom","corner":"bottom_right","position":"fixed","show_flags":true,"rectangle_icons":true,"square_icons":false,"round_icons":false,"show_label":true,"show_custom_name":true,"show_name":false,"show_iso_code":false,"is_dark":false,"is_transparent":false,"is_dropup":false,"arrow_size":100,"arrow_width":1,"arrow_filled":false,"h_space":0,"v_space":0,"h_item_space":0,"v_item_space":0,"h_item_padding":0,"v_item_padding":0,"text_color":"#000","link_color":"#000","arrow_color":"#000","bg_color":"#fff","border_color":"#000","border_width":0,"border_radius":0,"fontsize":14,"button_bg_color":"#999","button_text_color":"#fff","recommendation_fontsize":14,"recommendation_border_width":0,"recommendation_border_radius":0,"recommendation_text_color":"#000","recommendation_link_color":"#000","recommendation_button_bg_color":"#999","recommendation_button_text_color":"#fff","recommendation_bg_color":"#fff","recommendation_border_color":"#000","currency_switcher_enabled":false,"show_currency_selector":false,"show_country_selector_inside_popup":false,"show_currency_selector_inside_popup":false,"country_switcher_enabled":false,"country_switcher_format":"[[country_name]] ([[country_currency_code]] [[country_currency_symbol]])","popup_switcher_type":"links_list","popup_show_world_icon":false,"use_submit_button":false,"switcherLabel":"show_custom_name","switcherIcons":"rectangle_icons"}},{"key":340,"label":"1000px","config":{"type":"custom","corner":"bottom_right","position":"custom","show_flags":true,"rectangle_icons":true,"square_icons":false,"round_icons":false,"show_label":true,"show_custom_name":true,"show_name":false,"show_iso_code":false,"is_dark":false,"is_transparent":false,"is_dropup":false,"arrow_size":100,"arrow_width":1,"arrow_filled":false,"h_space":0,"v_space":0,"h_item_space":0,"v_item_space":0,"h_item_padding":0,"v_item_padding":0,"text_color":"#000","link_color":"#000","arrow_color":"#000","bg_color":"#fff","border_color":"#000","border_width":0,"border_radius":0,"fontsize":14,"button_bg_color":"#999","button_text_color":"#fff","recommendation_fontsize":14,"recommendation_border_width":0,"recommendation_border_radius":0,"recommendation_text_color":"#000","recommendation_link_color":"#000","recommendation_button_bg_color":"#999","recommendation_button_text_color":"#fff","recommendation_bg_color":"#fff","recommendation_border_color":"#000","currency_switcher_enabled":false,"show_currency_selector":false,"show_country_selector_inside_popup":false,"show_currency_selector_inside_popup":false,"country_switcher_enabled":false,"country_switcher_format":"[[country_name]] ([[country_currency_code]] [[country_currency_symbol]])","popup_switcher_type":"links_list","popup_show_world_icon":false,"use_submit_button":false,"switcherLabel":"show_custom_name","switcherIcons":"rectangle_icons"}}],"languages":[{"iso_code":"de","country_code":null,"currency_code":null,"root_url":"\/","name":"German","primary":true,"domain":"hejcrew.myshopify.com","published":true,"custom_name":false},{"iso_code":"en","country_code":null,"currency_code":null,"root_url":"\/en","name":"Englisch","primary":false,"domain":false,"published":true,"custom_name":false}],"marketLanguages":[{"iso_code":"de","country_code":null,"currency_code":null,"root_url":"\/","name":"German","primary":true,"domain":"hejcrew.myshopify.com","published":true,"custom_name":false},{"iso_code":"en","country_code":null,"currency_code":null,"root_url":"\/en","name":"Englisch","primary":false,"domain":false,"published":true,"custom_name":false}],"recommendation_enabled":false,"recommendation_type":"popup","recommendation_switcher_key":-1,"recommendation_strings":{},"switcher_strings":{},"recommendation":{"recommendation_backdrop_show":true,"recommendation_corner":"center_center","recommendation_banner_corner":"top","recommendation_fontsize":14,"recommendation_border_width":0,"recommendation_border_radius":0,"recommendation_text_color":"#000","recommendation_link_color":"#000","recommendation_button_bg_color":"#999","recommendation_button_text_color":"#fff","recommendation_bg_color":"#fff","recommendation_border_color":"#000"}};
  if(langify.settings.switcher === null) {
    langify.settings.switcher = {};
  }
  langify.settings.switcher.customIcons = null;

  langify.locale = langify.locale || {
    country_code: "DE",
    language_code: "de",
    currency_code: null,
    primary: true,
    iso_code: "de",
    root_url: "\/",
    language_id: "ly153934",
    shop_url: "https:\/\/leevje.com",
    domain_feature_enabled: {"leevje.com":[]},
    languages: [{
        iso_code: "de",
        root_url: "\/",
        domain: "hejcrew.myshopify.com",
      },{
        iso_code: "en",
        root_url: "\/en",
        domain: false,
      },]
  };

  langify.localization = {
    available_countries: ["Belgien","Deutschland","Finnland","Frankreich","Georgien","Griechenland","Irland","Island","Italien","Lettland","Liechtenstein","Litauen","Luxemburg","Malta","Niederlande","Norwegen","Österreich","Polen","Portugal","Schweiz","Spanien","Vereinigte Staaten"],
    available_languages: [{"shop_locale":{"locale":"de","enabled":true,"primary":true,"published":true}},{"shop_locale":{"locale":"en","enabled":true,"primary":false,"published":true}}],
    country: "Deutschland",
    language: {"shop_locale":{"locale":"de","enabled":true,"primary":true,"published":true}},
    market: {
      handle: "de",
      id: 22806751,
      metafields: {"error":"json not allowed for this object"},
    }
  };

  // Disable link correction ALWAYS on languages with mapped domains
  
  if(langify.locale.root_url == '/') {
    langify.settings.observeLinks = false;
  }


  function extractImageObject(val) {
  if (!val || val === '') return false;

  // Handle src-sets (e.g., "image_600x600.jpg 1x, image_1200x1200.jpg 2x")
  if (val.search(/([0-9]+w?h?x?,)/gi) > -1) {
    val = val.split(/([0-9]+w?h?x?,)/gi)[0];
  }

  const hostBegin = val.indexOf('//') !== -1 ? val.indexOf('//') : 0;
  const hostEnd = val.lastIndexOf('/') + 1;
  const host = val.substring(hostBegin, hostEnd);
  let afterHost = val.substring(hostEnd);

  // Remove query/hash fragments
  afterHost = afterHost.split('#')[0].split('?')[0];

  // Extract name before any Shopify modifiers or file extension
  // e.g., "photo_600x600_crop_center@2x.jpg" → "photo"
  const name = afterHost.replace(
    /(_[0-9]+x[0-9]*|_{width}x|_{size})?(_crop_(top|center|bottom|left|right))?(@[0-9]*x)?(\.progressive)?(\.(png\.jpg|jpe?g|png|gif|webp))?$/i,
    ''
  );

  // Extract file extension (if any)
  let type = '';
  const match = afterHost.match(/\.(png\.jpg|jpe?g|png|gif|webp)$/i);
  if (match) {
    type = match[1].replace('png.jpg', 'jpg'); // fix weird double-extension cases
  }

  // Clean file name with extension or suffixes normalized
  const file = afterHost.replace(
    /(_[0-9]+x[0-9]*|_{width}x|_{size})?(_crop_(top|center|bottom|left|right))?(@[0-9]*x)?(\.progressive)?(\.(png\.jpg|jpe?g|png|gif|webp))?$/i,
    type ? '.' + type : ''
  );

  return { host, name, type, file };
}



  /* Custom Contents Section*/
  var customContents = {};

  // Images Section
  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

</script><link rel="preload stylesheet" href="https://cdn.shopify.com/extensions/019cc0b2-ef5a-74d0-8731-c3578054ad9c/langify-87/assets/langify-lib.css" as="style" media="print" onload="this.media='all'; this.onload=null;"><!-- END app block --><!-- BEGIN app block: shopify://apps/adcell-tracking-remarketing/blocks/theme_extension/578397e0-3e42-4c27-add7-dfc15023b09b --><script id="trad-js" type="text/javascript" src="https://t.adcell.com/js/trad.js?s=shopify&v=1.2.1&pid=8355" async="async"></script>
<script>
    var script = document.querySelector("#trad-js");
    script.addEventListener('load', function() {
        Adcell.Tracking.track();
    });
</script><script type="text/javascript" src="https://t.adcell.com/js/vcad.js?s=shopify&v=1.2.1&programId=8355" async="async"></script><script type="text/javascript" src="https://t.adcell.com/js/inlineretarget.js?s=shopify&v=1.2.1&method=track&pid=8355&type=startpage" async="async"></script>

<!-- END app block --><!-- BEGIN app block: shopify://apps/eg-auto-add-to-cart/blocks/app-embed/0f7d4f74-1e89-4820-aec4-6564d7e535d2 -->












  
    <script
      async
      type="text/javascript"
      src="https://cdn.506.io/eg/script.js?shop=hejcrew.myshopify.com&v=10"
    ></script>
  



  <meta id="easygift-shop" itemid="c2hvcF8kXzE3NzYzNTczMjM=" content="{&quot;isInstalled&quot;:true,&quot;installedOn&quot;:&quot;2026-02-25T16:11:11.906Z&quot;,&quot;appVersion&quot;:&quot;3.0&quot;,&quot;subscriptionName&quot;:&quot;Unlimited&quot;,&quot;cartAnalytics&quot;:true,&quot;freeTrialEndsOn&quot;:null,&quot;settings&quot;:{&quot;reminderBannerStyle&quot;:{&quot;position&quot;:{&quot;horizontal&quot;:&quot;right&quot;,&quot;vertical&quot;:&quot;bottom&quot;},&quot;fontFamily&quot;:null,&quot;backgroundColor&quot;:&quot;#FFFFFF&quot;,&quot;borderRadius&quot;:null,&quot;closingMode&quot;:&quot;doNotAutoClose&quot;,&quot;cssStyles&quot;:&quot;&quot;,&quot;displayAfter&quot;:5,&quot;headerFontSize&quot;:null,&quot;headerText&quot;:&quot;&quot;,&quot;imageUrl&quot;:null,&quot;padding&quot;:null,&quot;primaryColor&quot;:&quot;#000000&quot;,&quot;reshowBannerAfter&quot;:&quot;everyNewSession&quot;,&quot;selfcloseAfter&quot;:5,&quot;showImage&quot;:false,&quot;subHeaderFontSize&quot;:null,&quot;subHeaderText&quot;:&quot;&quot;},&quot;addedItemIdentifier&quot;:&quot;_Gifted&quot;,&quot;ignoreOtherAppLineItems&quot;:null,&quot;customVariantsInfoLifetimeMins&quot;:1440,&quot;redirectPath&quot;:null,&quot;ignoreNonStandardCartRequests&quot;:false,&quot;bannerStyle&quot;:{&quot;position&quot;:{&quot;horizontal&quot;:&quot;right&quot;,&quot;vertical&quot;:&quot;bottom&quot;},&quot;fontFamily&quot;:null,&quot;backgroundColor&quot;:&quot;#FFFFFF&quot;,&quot;borderRadius&quot;:null,&quot;cssStyles&quot;:null,&quot;headerFontSize&quot;:null,&quot;padding&quot;:null,&quot;primaryColor&quot;:&quot;#000000&quot;,&quot;subHeaderFontSize&quot;:null},&quot;themePresetId&quot;:null,&quot;notificationStyle&quot;:{&quot;position&quot;:{&quot;horizontal&quot;:null,&quot;vertical&quot;:null},&quot;fontFamily&quot;:null,&quot;backgroundColor&quot;:&quot;#FFFFFF&quot;,&quot;borderRadius&quot;:null,&quot;cssStyles&quot;:null,&quot;duration&quot;:null,&quot;hasCustomizations&quot;:false,&quot;headerFontSize&quot;:null,&quot;padding&quot;:null,&quot;primaryColor&quot;:null,&quot;subHeaderFontSize&quot;:null},&quot;fetchCartData&quot;:false,&quot;useLocalStorage&quot;:{&quot;enabled&quot;:false,&quot;expiryMinutes&quot;:null},&quot;popupStyle&quot;:{&quot;headerFontFamily&quot;:null,&quot;bodyFontFamily&quot;:null,&quot;addButtonText&quot;:null,&quot;backgroundColor&quot;:&quot;#FFFFFF&quot;,&quot;bodyColor&quot;:null,&quot;bodyFontSize&quot;:null,&quot;borderRadius&quot;:null,&quot;closeModalOutsideClick&quot;:true,&quot;cssStyles&quot;:null,&quot;dismissButtonText&quot;:null,&quot;hasCustomizations&quot;:false,&quot;headerFontSize&quot;:null,&quot;imageUrl&quot;:null,&quot;outOfStockButtonText&quot;:null,&quot;padding&quot;:null,&quot;priceShowZeroDecimals&quot;:true,&quot;primaryColor&quot;:null,&quot;secondaryColor&quot;:null,&quot;showProductLink&quot;:false,&quot;subHeaderFontSize&quot;:null,&quot;subscriptionLabel&quot;:null},&quot;refreshAfterBannerClick&quot;:false,&quot;disableReapplyRules&quot;:false,&quot;disableReloadOnFailedAddition&quot;:false,&quot;autoReloadCartPage&quot;:false,&quot;ajaxRedirectPath&quot;:null,&quot;allowSimultaneousRequests&quot;:false,&quot;applyRulesOnCheckout&quot;:false,&quot;enableCartCtrlOverrides&quot;:true,&quot;customRedirectFromCart&quot;:null,&quot;scriptSettings&quot;:{&quot;branding&quot;:{&quot;removalRequestSent&quot;:null,&quot;show&quot;:false},&quot;productPageRedirection&quot;:{&quot;enabled&quot;:false,&quot;products&quot;:[],&quot;redirectionURL&quot;:&quot;\/&quot;},&quot;debugging&quot;:{&quot;enabled&quot;:false,&quot;enabledOn&quot;:null,&quot;stringifyObj&quot;:false},&quot;customCSS&quot;:null,&quot;decodePayload&quot;:false,&quot;delayUpdates&quot;:2000,&quot;disableRedirectAfterFormSubmit&quot;:false,&quot;enableBuyNowInterceptions&quot;:true,&quot;fetchCartDataBeforeRequest&quot;:false,&quot;fetchProductInfoFromSavedDomain&quot;:false,&quot;hideAlertsOnFrontend&quot;:false,&quot;hideGiftedPropertyText&quot;:false,&quot;removeEGPropertyFromSplitActionLineItems&quot;:false,&quot;removeProductsAddedFromExpiredRules&quot;:true,&quot;useFinalPrice&quot;:false,&quot;useFinalPriceGetEntireCart&quot;:false},&quot;accessToEnterprise&quot;:false},&quot;translations&quot;:null,&quot;defaultLocale&quot;:&quot;de&quot;,&quot;shopDomain&quot;:&quot;leevje.com&quot;}">


<script defer>
  (async function() {
    try {

      const blockVersion = "v3"
      if (blockVersion != "v3") {
        return
      }

      let metaErrorFlag = false;
      if (metaErrorFlag) {
        return
      }

      // Parse metafields as JSON
      const metafields = {"easygift-rule-699f1fd85b5235f488a0c688":{"schedule":{"enabled":false,"starts":null,"ends":null},"trigger":{"productTags":{"targets":["I AM EDITIONS Februar"],"collectionInfo":{"name":"EG - Free I AM Sign Canvas Tote - Product with tags (I AM EDITIONS Februar)","id":"569432047882","gid":"gid:\/\/shopify\/Collection\/569432047882","handle":"eg-free-i-am-sign-canvas-tote-product-with-tags-i-am-editions-februar"},"sellingPlan":null},"type":"productTags","minCartValue":null,"upperCartValue":null,"products":[],"collections":[],"condition":"value","conditionMin":199,"conditionMax":null,"collectionSellingPlanType":null,"promoCode":null,"promoCodeDiscount":null},"action":{"notification":{"enabled":false,"headerText":null,"subHeaderText":null,"showImage":false,"imageUrl":""},"discount":{"issue":null,"type":"app","id":"gid:\/\/shopify\/DiscountAutomaticNode\/1596924035338","title":"Free I AM Sign Tote","createdByEasyGift":true,"easygiftAppDiscount":true,"discountType":"percentage","value":100},"popupOptions":{"headline":null,"subHeadline":null,"showItemsPrice":false,"showVariantsSeparately":false,"popupDismissable":false,"imageUrl":null,"persistPopup":false,"rewardQuantity":1,"showDiscountedPrice":false,"hideOOSItems":false},"banner":{"enabled":false,"headerText":null,"subHeaderText":null,"showImage":false,"imageUrl":null,"displayAfter":"5","closingMode":"doNotAutoClose","selfcloseAfter":"5","reshowBannerAfter":"everyNewSession","redirectLink":null},"type":"addAutomatically","products":[{"name":"01.07.04 — The I AM Sign Canvas Tote - Default Title","variantId":"52498500452618","variantGid":"gid:\/\/shopify\/ProductVariant\/52498500452618","productGid":"gid:\/\/shopify\/Product\/10383296561418","quantity":1,"handle":"i-am-editions-tote-bag","price":"34.00"}],"limit":1,"preventProductRemoval":false,"addAvailableProducts":false},"targeting":{"link":{"destination":null,"data":null,"cookieLifetime":14},"additionalCriteria":{"geo":{"include":[],"exclude":[]},"type":null,"customerTags":[],"customerTagsExcluded":[],"customerId":[],"orderCount":null,"hasOrderCountMax":false,"orderCountMax":null,"totalSpent":null,"hasTotalSpentMax":false,"totalSpentMax":null},"type":"all"},"settings":{"worksInReverse":true,"runsOncePerSession":false,"preventAddedItemPurchase":false,"showReminderBanner":false},"_id":"699f1fd85b5235f488a0c688","name":"Free I AM Sign Canvas Tote","store":"699f1f1c838210c89d702e8b","shop":"hejcrew","active":true,"translations":null,"createdAt":"2026-02-25T16:14:16.067Z","updatedAt":"2026-03-16T14:00:58.092Z","__v":0}};

      // Process metafields in JavaScript
      let savedRulesArray = [];
      for (const [key, value] of Object.entries(metafields)) {
        if (value) {
          for (const prop in value) {
            // avoiding Object.Keys for performance gain -- no need to make an array of keys.
            savedRulesArray.push(value);
            break;
          }
        }
      }

      const metaTag = document.createElement('meta');
      metaTag.id = 'easygift-rules';
      metaTag.content = JSON.stringify(savedRulesArray);
      metaTag.setAttribute('itemid', 'cnVsZXNfJF8xNzc2MzU3MzIz');

      document.head.appendChild(metaTag);
      } catch (err) {
        
      }
  })();
</script>


  <script
    type="text/javascript"
    defer
  >

    (function () {
      try {
        window.EG_INFO = window.EG_INFO || {};
        var shopInfo = {"isInstalled":true,"installedOn":"2026-02-25T16:11:11.906Z","appVersion":"3.0","subscriptionName":"Unlimited","cartAnalytics":true,"freeTrialEndsOn":null,"settings":{"reminderBannerStyle":{"position":{"horizontal":"right","vertical":"bottom"},"fontFamily":null,"backgroundColor":"#FFFFFF","borderRadius":null,"closingMode":"doNotAutoClose","cssStyles":"","displayAfter":5,"headerFontSize":null,"headerText":"","imageUrl":null,"padding":null,"primaryColor":"#000000","reshowBannerAfter":"everyNewSession","selfcloseAfter":5,"showImage":false,"subHeaderFontSize":null,"subHeaderText":""},"addedItemIdentifier":"_Gifted","ignoreOtherAppLineItems":null,"customVariantsInfoLifetimeMins":1440,"redirectPath":null,"ignoreNonStandardCartRequests":false,"bannerStyle":{"position":{"horizontal":"right","vertical":"bottom"},"fontFamily":null,"backgroundColor":"#FFFFFF","borderRadius":null,"cssStyles":null,"headerFontSize":null,"padding":null,"primaryColor":"#000000","subHeaderFontSize":null},"themePresetId":null,"notificationStyle":{"position":{"horizontal":null,"vertical":null},"fontFamily":null,"backgroundColor":"#FFFFFF","borderRadius":null,"cssStyles":null,"duration":null,"hasCustomizations":false,"headerFontSize":null,"padding":null,"primaryColor":null,"subHeaderFontSize":null},"fetchCartData":false,"useLocalStorage":{"enabled":false,"expiryMinutes":null},"popupStyle":{"headerFontFamily":null,"bodyFontFamily":null,"addButtonText":null,"backgroundColor":"#FFFFFF","bodyColor":null,"bodyFontSize":null,"borderRadius":null,"closeModalOutsideClick":true,"cssStyles":null,"dismissButtonText":null,"hasCustomizations":false,"headerFontSize":null,"imageUrl":null,"outOfStockButtonText":null,"padding":null,"priceShowZeroDecimals":true,"primaryColor":null,"secondaryColor":null,"showProductLink":false,"subHeaderFontSize":null,"subscriptionLabel":null},"refreshAfterBannerClick":false,"disableReapplyRules":false,"disableReloadOnFailedAddition":false,"autoReloadCartPage":false,"ajaxRedirectPath":null,"allowSimultaneousRequests":false,"applyRulesOnCheckout":false,"enableCartCtrlOverrides":true,"customRedirectFromCart":null,"scriptSettings":{"branding":{"removalRequestSent":null,"show":false},"productPageRedirection":{"enabled":false,"products":[],"redirectionURL":"\/"},"debugging":{"enabled":false,"enabledOn":null,"stringifyObj":false},"customCSS":null,"decodePayload":false,"delayUpdates":2000,"disableRedirectAfterFormSubmit":false,"enableBuyNowInterceptions":true,"fetchCartDataBeforeRequest":false,"fetchProductInfoFromSavedDomain":false,"hideAlertsOnFrontend":false,"hideGiftedPropertyText":false,"removeEGPropertyFromSplitActionLineItems":false,"removeProductsAddedFromExpiredRules":true,"useFinalPrice":false,"useFinalPriceGetEntireCart":false},"accessToEnterprise":false},"translations":null,"defaultLocale":"de","shopDomain":"leevje.com"};
        var productRedirectionEnabled = shopInfo.settings.scriptSettings.productPageRedirection.enabled;
        if (["Unlimited", "Enterprise"].includes(shopInfo.subscriptionName) && productRedirectionEnabled) {
          var products = shopInfo.settings.scriptSettings.productPageRedirection.products;
          if (products.length > 0) {
            var productIds = products.map(function(prod) {
              var productGid = prod.id;
              var productIdNumber = parseInt(productGid.split('/').pop());
              return productIdNumber;
            });
            var productInfo = null;
            var isProductInList = productIds.includes(productInfo.id);
            if (isProductInList) {
              var redirectionURL = shopInfo.settings.scriptSettings.productPageRedirection.redirectionURL;
              if (redirectionURL) {
                window.location = redirectionURL;
              }
            }
          }
        }

        
      } catch(err) {
      return
    }})()
  </script>



<!-- END app block --><script src="https://cdn.shopify.com/extensions/019d94de-0a31-7ce8-ba0a-39622a054b8e/lb-upsell-288/assets/lb-selleasy.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019d9023-831e-76f0-93be-47af2391ed43/consentmo-gdpr-699/assets/consentmo_cookie_consent.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019cc0b2-ef5a-74d0-8731-c3578054ad9c/langify-87/assets/langify-lib.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019d6e3c-274b-7ef3-977a-e98c7f3ad037/hidepay-182/assets/hidepay-fe.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 7934804027,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script>
  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 7934804027,storefrontBaseUrl: "https://leevje.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86","d5bdd5d0","5476ea20","ed8389fc"],webPixelsConfigList: [{"id":"3789586698","configuration":"{\"hash\":\"v9XxiERPvZ\",\"ingestion_url\":\"https:\/\/activity.wisepops.com\",\"goal_hash\":\"9CYo8DoZGP71zI3LbO7eDjuG4Wl224Vi\",\"loader_url\":\"https:\/\/wisepops.net\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"f2ebd2ee515d1c2407650eb3f3fbaa1c","type":"APP","apiClientId":461977,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"3678011658","configuration":"{\"pixel_id\":\"521683105042007\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"3617816842","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"eda7426ae5b908b59c2cc90debe015e1","type":"APP","apiClientId":143773990913,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"3326902538","configuration":"{\"accountID\":\"WvDG3q\",\"webPixelConfig\":\"eyJlbmFibGVBZGRlZFRvQ2FydEV2ZW50cyI6IHRydWV9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"524f6c1ee37bacdca7657a665bdca589","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"3232104714","configuration":"{\"pixelCode\":\"D4N9R7RC77U5N1GS657G\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":[]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"2252374282","configuration":"{\"accountID\":\"989\",\"programID\":\"8355\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5de5647cbbb96482fe8c3829d7f42b0b","type":"APP","apiClientId":2982569,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"974684426","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-4WX9Z6Z70P\\\",\\\"GT-5MCGPPP\\\"],\\\"target_country\\\":\\\"DE\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-4WX9Z6Z70P\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-4WX9Z6Z70P\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-4WX9Z6Z70P\\\",\\\"MC-PDTGQMWGXV\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-4WX9Z6Z70P\\\",\\\"MC-PDTGQMWGXV\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-4WX9Z6Z70P\\\",\\\"MC-PDTGQMWGXV\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-4WX9Z6Z70P\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-4WX9Z6Z70P\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"951c44fbf25468d51e88585b4739dbec","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"838828298","configuration":"{\"shopId\":\"hejcrew.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"9735d291f34c37bb980cad11123d15e3","type":"APP","apiClientId":2753413,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"204636426","configuration":"{\"accountID\":\"selleasy-metrics-track\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"a451bb5b79c95ec6981bec9c1b10ec34","type":"APP","apiClientId":5519923,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"236454154","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS"],"name":"klar"},{"id":"285245706","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["MARKETING","SALE_OF_DATA"],"name":"ADCELL Conversion Tracking"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"leevje - design for loved ones","paymentSettings":{"currencyCode":"EUR"},"myshopifyDomain":"hejcrew.myshopify.com","countryCode":"DE","storefrontUrl":"https:\/\/leevje.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://leevje.com/cdn","5bfe654aw9a31df99pb879ff13m3bd6cd49",{"modern":"","legacy":""},{"trekkieShim":true,"shopId":"7934804027","storefrontBaseUrl":"https:\/\/leevje.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"5476ea20\", \"ed8389fc\"]","isMerchantRequest":"false","hashVersion":"5bfe654aw9a31df99pb879ff13m3bd6cd49","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'EUR';
  var meta = {"page":{"pageType":"home","requestId":"f4569efa-71b8-403a-b682-660f1e77bfea-1776357322"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    window.ShopifyAnalytics.lib.trekkie = window.trekkie;
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
          try {
            window.__TREKKIE_SHIM_QUEUE.push({
              from: 'trekkie-stub',
              method: method,
              args: args.slice(1)
            });
          } catch (e) {
            // no-op
          }
        }
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
  var scriptFallback = document.createElement('script');
  scriptFallback.type = 'text/javascript';
  scriptFallback.onerror = function(error) {
          var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 7934804027,
      theme_id: 150602383626,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//leevje.com/cdn/s/trekkie.storefront.853740ed6e9bdebbd97573c5bbdd9cfe5fb59a39.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//leevje.com/cdn/s/trekkie.storefront.853740ed6e9bdebbd97573c5bbdd9cfe5fb59a39.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//leevje.com/cdn/s/trekkie.storefront.853740ed6e9bdebbd97573c5bbdd9cfe5fb59a39.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":7934804027,"isMerchantRequest":null,"themeId":150602383626,"themeCityHash":"13778164257907278847","contentLanguage":"de","currency":"EUR","eventMetadataId":"a5e0395f-9917-4fac-9a0c-1d913640b2bd"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"f4569efa-71b8-403a-b682-660f1e77bfea-1776357322","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });

    var eventsListenerScript = document.createElement('script');
    eventsListenerScript.async = true;
    eventsListenerScript.src = "//leevje.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
  <script>
  if (!window.ga || (window.ga && typeof window.ga !== 'function')) {
    window.ga = function ga() {
      (window.ga.q = window.ga.q || []).push(arguments);
      if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
        window.Shopify.analytics.publish("ga_stub_called", {}, {sendTo: "google_osp_migration"});
      }
      console.error("Shopify's Google Analytics stub called with:", Array.from(arguments), "\nSee https://help.shopify.com/manual/promoting-marketing/pixels/pixel-migration#google for more information.");
    };
    if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
      window.Shopify.analytics.publish("ga_stub_initialized", {}, {sendTo: "google_osp_migration"});
    }
  }
</script>
<script
  defer
  src="https://leevje.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.3.1.min.js"
  data-application="storefront-renderer"
  data-shop-id="7934804027"
  data-render-region="gcp-us-east1"
  data-page-type="index"
  data-theme-instance-id="150602383626"
  data-theme-name="Prestige"
  data-theme-version="9.2.1"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
  data-shs-beacon-endpoint="https://leevje.com/api/collect"
></script>
</head>





  

  <body class="features--button-transition features--zoom-image  color-scheme color-scheme--scheme-1 "><template id="drawer-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <button type="button" is="dialog-close-button" part="close-button tap-area" aria-label="Schließen"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewBox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.8"/>
    </svg>

  </button>
      </header>

      <div part="body">
        <slot></slot>
      </div>

      <footer part="footer">
        <slot name="footer"></slot>
      </footer>
    </div>
  </div>
</template><template id="modal-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <button type="button" is="dialog-close-button" part="close-button tap-area" aria-label="Schließen"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewBox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.8"/>
    </svg>

  </button>
      </header>

      <div part="body">
        <slot></slot>
      </div>
    </div>
  </div>
</template><template id="popover-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <slot name="header"></slot>

        <button type="button" is="dialog-close-button" part="close-button tap-area" aria-label="Schließen"><svg aria-hidden="true" focusable="false" fill="none" width="14" class="icon icon-close" viewBox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.8"/>
    </svg>

  </button>
      </header>

      <div part="body">
        <slot></slot>
      </div>
    </div>
  </div>
</template><template id="header-search-default-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <slot></slot>
    </div>
  </div>
</template><template id="video-media-default-template">
  <slot></slot>

  <svg part="play-button" fill="none" width="48" height="48" viewBox="0 0 48 48">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M48 24c0 13.255-10.745 24-24 24S0 37.255 0 24 10.745 0 24 0s24 10.745 24 24Zm-18 0-9-6.6v13.2l9-6.6Z" fill="var(--play-button-background, #ffffff)"/>
  </svg>
</template><loading-bar class="loading-bar" aria-hidden="true"></loading-bar>
  <a href="#main" allow-hash-change class="skip-to-content sr-only">Zum Inhalt springen</a>

  <span id="header-scroll-tracker" style="position: absolute; width: 1px; height: 1px; top: var(--header-scroll-tracker-offset, 10px); left: 0;"></span><!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--19464376025354__announcement-bar" class="shopify-section shopify-section-group-header-group"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css"/>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css"/><section id="section-sections--19464376025354__announcement-bar" data-section-id="sections--19464376025354__announcement-bar" data-section-type="announcement-bar">
            <div class="AnnouncementBar">
                <div class="AnnouncementBar__Wrapper">
                    <div class="AnnouncementBar__Content Heading sliddder mobile">
                        
                            <div class="item">
                            
                                    ★★★★★ über 2.900 positive Bewertungen
                                    
                            </div>
                        

                        
                            <div class="item">
                            
                                    In 2 - 4 Werktagen bei Dir
                                    
                            </div>
                        

                        
                            <div class="item">
                            
                                    MIT LIEBE FÜR DICH VERPACKT
                                    
                            </div>
                        
                    </div>

                    <div class="AnnouncementBar__Content Heading desktop">

                        
                            <div class="item">
                            
                                    ★★★★★ über 2.900 positive Bewertungen
                                    
                            </div>
                        

                        
                            <div class="item">
                            
                                    In 2 - 4 Werktagen bei Dir
                                    
                            </div>
                        

                        
                            <div class="item">
                            
                                    MIT LIEBE FÜR DICH VERPACKT
                                    
                            </div>
                        


                    </div>

                </div>
            </div>


        </section>

        <style>
            #section-sections--19464376025354__announcement-bar {
                background: #aba092;
                color: #ffffff;
            }
        </style>

        <script>
            document.documentElement.style.setProperty('--announcement-bar-height', document.getElementById('shopify-section-announcement').offsetHeight + 'px');
        </script>

<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>

<script>
    $('.sliddder').slick({
        infinite: true,
        slidesToShow: 1,
        slidesToScroll: 1,
        dots: false,
        arrow: false,
        nextArrow: '',
        prevArrow: '',
        autoplay:true
    });
</script></div><header id="shopify-section-sections--19464376025354__header" class="shopify-section shopify-section-group-header-group shopify-section--header">

<style>
  :root {
    --header-is-sticky: 1;
  }

  #shopify-section-sections--19464376025354__header {
    --header-grid: "primary-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
    --header-padding-block: 1rem;
    --header-transparent-header-text-color: 255 255 255;
    --header-separation-border-color: 0 0 0 / 0;

    position: relative;
    z-index: 4;
  }

  @media screen and (min-width: 700px) {
    #shopify-section-sections--19464376025354__header {
      --header-padding-block: 1.6rem;
    }
  }

  @media screen and (min-width: 1000px) {
    #shopify-section-sections--19464376025354__header {}
  }#shopify-section-sections--19464376025354__header {
      position: sticky;
      top: 0;
    }

    .shopify-section--announcement-bar ~ #shopify-section-sections--19464376025354__header {
      top: calc(var(--announcement-bar-is-sticky, 0) * var(--announcement-bar-height, 0px));
    }#shopify-section-sections--19464376025354__header {
      --header-logo-width: 90px;
    }

    @media screen and (min-width: 700px) {
      #shopify-section-sections--19464376025354__header {
        --header-logo-width: 120px;
      }
    }
  @media(max-width:1000px) {
    #shopify-section-sections--19464376025354__header{
      --header-grid: "primary-nav logo secondary-nav" / auto minmax(0, 1fr) auto;
    }
  }#shopify-section-sections--19464376025354__header .header__secondary-logo-link {
    --header-logo-width: 30px;
  }

  @media screen and (min-width: 700px) {
    #shopify-section-sections--19464376025354__header .header__secondary-logo-link {
      --header-logo-width: 50px;
    }
  }

  .header__secondary-logo-link {
    position: relative;
  }.ed-double-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    @media(min-width: 1001px) {
      justify-content: flex-start;
    }
  }

  
  
</style>

<height-observer variable="header">
  <x-header  class="header ed-header color-scheme color-scheme--scheme-2">
      
        <div class="ed-double-logo">
          <a href="/" class="header__logo"><span class="sr-only">leevje - design for loved ones</span><img src="//leevje.com/cdn/shop/files/leevje_logo_black.png?v=1772119194&amp;width=2177" alt="" srcset="//leevje.com/cdn/shop/files/leevje_logo_black.png?v=1772119194&amp;width=240 240w, //leevje.com/cdn/shop/files/leevje_logo_black.png?v=1772119194&amp;width=360 360w" width="2177" height="654" sizes="120px" class="header__logo-image"><img src="//leevje.com/cdn/shop/files/leevje_weiss.png?v=1772119395&amp;width=2174" alt="" srcset="//leevje.com/cdn/shop/files/leevje_weiss.png?v=1772119395&amp;width=240 240w, //leevje.com/cdn/shop/files/leevje_weiss.png?v=1772119395&amp;width=360 360w" width="2174" height="615" sizes="120px" class="header__logo-image header__logo-image--transparent"></a>
          <a href="/pages/i-am-editions" class="header__secondary-logo-link"><span class="sr-only">leevje - design for loved ones</span><img src="//leevje.com/cdn/shop/files/iameditions_Logo_Hohe_grosser_1_cm_und_kleiner_5cm_schwarz.png?v=1771950035&amp;width=502" alt="" srcset="//leevje.com/cdn/shop/files/iameditions_Logo_Hohe_grosser_1_cm_und_kleiner_5cm_schwarz.png?v=1771950035&amp;width=240 240w, //leevje.com/cdn/shop/files/iameditions_Logo_Hohe_grosser_1_cm_und_kleiner_5cm_schwarz.png?v=1771950035&amp;width=480 480w, //leevje.com/cdn/shop/files/iameditions_Logo_Hohe_grosser_1_cm_und_kleiner_5cm_schwarz.png?v=1771950035&amp;width=502 502w" width="502" height="579" loading="lazy" sizes="240px" class="header__logo-image header__logo-image--secondary"><img src="//leevje.com/cdn/shop/files/Logo_Testdatei_David_Webshop-18.png?v=1769766746&amp;width=136" alt="" width="136" height="157" sizes="240px" class="header__logo-image header__logo-image--transparent"></a>
        </div>
      
    
<nav class="header__primary-nav " aria-label="Hauptnavigation">
        <button type="button" aria-controls="sidebar-menu" >
          <span class="sr-only">Navigationsmenü öffnen</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-hamburger" viewBox="0 0 24 24">
      <path d="M1 19h22M1 12h22M1 5h22" stroke="currentColor" stroke-width="1.8" stroke-linecap="square"/>
    </svg></button></nav><nav class="header__secondary-nav" aria-label="Sekundäre Navigation">
        <span class="ly-custom-340"></span>
      
<a href="https://leevje.com/customer_authentication/redirect?locale=de&region_country=DE" class="sm-max:hidden">
          <span class="sr-only">Kundenkontoseite öffnen</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-account" viewBox="0 0 24 24">
      <path d="M16.125 8.75c-.184 2.478-2.063 4.5-4.125 4.5s-3.944-2.021-4.125-4.5c-.187-2.578 1.64-4.5 4.125-4.5 2.484 0 4.313 1.969 4.125 4.5Z" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M3.017 20.747C3.783 16.5 7.922 14.25 12 14.25s8.217 2.25 8.984 6.497" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10"/>
    </svg></a><a href="/search" aria-controls="header-search-sections--19464376025354__header">
          <span class="sr-only">Suche öffnen</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-search" viewBox="0 0 24 24">
      <path d="M10.364 3a7.364 7.364 0 1 0 0 14.727 7.364 7.364 0 0 0 0-14.727Z" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10"/>
      <path d="M15.857 15.858 21 21.001" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round"/>
    </svg></a><a href="/cart" class="relative" aria-controls="cart-drawer">
        <span class="sr-only">Warenkorb öffnen</span><svg aria-hidden="true" fill="none" focusable="false" width="24" class="header__nav-icon icon icon-cart" viewBox="0 0 24 24"><path d="M21.5 21.5v-15h-19v15h19ZM8 6V5a4 4 0 1 1 8 0v1" stroke="currentColor" stroke-width="1.8"/></svg><cart-dot class="header__cart-dot  "></cart-dot>
      </a>
    </nav><header-search id="header-search-sections--19464376025354__header" class="header-search">
  <div class="container">
    <form id="predictive-search-form" action="/search" method="GET" aria-owns="header-predictive-search" class="header-search__form" role="search">
      <div class="header-search__form-control"><svg aria-hidden="true" fill="none" focusable="false" width="20" class="icon icon-search" viewBox="0 0 24 24">
      <path d="M10.364 3a7.364 7.364 0 1 0 0 14.727 7.364 7.364 0 0 0 0-14.727Z" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10"/>
      <path d="M15.857 15.858 21 21.001" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10" stroke-linecap="round"/>
    </svg><input type="search" name="q" spellcheck="false" class="header-search__input h5 sm:h4" aria-label="Suchen" placeholder="Gib etwas ein...">
        <button type="button" is="dialog-close-button">
          <span class="sr-only">Schließen</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-close" viewBox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.8"/>
    </svg>

  </button>
      </div>
    </form>

    <predictive-search id="header-predictive-search" class="predictive-search">
      <div class="predictive-search__content" slot="results"></div>
    </predictive-search>
  </div>
</header-search><template id="header-sidebar-template">
  <div part="base">
    <div part="overlay"></div>

    <div part="content">
      <header part="header">
        <button type="button" is="dialog-close-button" part="close-button tap-area" aria-label="Schließen"><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-close" viewBox="0 0 16 16">
      <path d="m1 1 14 14M1 15 15 1" stroke="currentColor" stroke-width="1.8"/>
    </svg>

  </button>
      </header>

      <div part="panel-list">
        <slot name="main-panel"></slot><slot name="collapsible-panel"></slot></div>
    </div>
  </div>
</template>

<header-sidebar id="sidebar-menu" class="header-sidebar drawer drawer--sm color-scheme color-scheme--scheme-2" template="header-sidebar-template" open-from="left"><div class="header-sidebar__main-panel" slot="main-panel">
    <div class="header-sidebar__scroller">
      <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><button type="button" class="header-sidebar__linklist-button h6" aria-controls="header-panel-1" aria-expanded="false">Frauen & I AM Editions<svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewBox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button></li><li><button type="button" class="header-sidebar__linklist-button h6" aria-controls="header-panel-2" aria-expanded="false">Kinder - leevje<svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewBox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button></li><li><button type="button" class="header-sidebar__linklist-button h6" aria-controls="header-panel-3" aria-expanded="false">About<svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewBox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button></li><li><button type="button" class="header-sidebar__linklist-button h6" aria-controls="header-panel-4" aria-expanded="false">Lagerverkauf<svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-right  icon--direction-aware" viewBox="0 0 10 10">
      <path d="m3 9 4-4-4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button></li></ul>
    </div><div class="header-sidebar__footer"><a href="https://leevje.com/customer_authentication/redirect?locale=de&region_country=DE" class="text-with-icon smallcaps sm:hidden"><svg aria-hidden="true" fill="none" focusable="false" width="20" class="icon icon-account" viewBox="0 0 24 24">
      <path d="M16.125 8.75c-.184 2.478-2.063 4.5-4.125 4.5s-3.944-2.021-4.125-4.5c-.187-2.578 1.64-4.5 4.125-4.5 2.484 0 4.313 1.969 4.125 4.5Z" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
      <path d="M3.017 20.747C3.783 16.5 7.922 14.25 12 14.25s8.217 2.25 8.984 6.497" stroke="currentColor" stroke-width="1.8" stroke-miterlimit="10"/>
    </svg>Anmelden</a></div></div><header-sidebar-collapsible-panel class="header-sidebar__collapsible-panel" slot="collapsible-panel">
      <div class="header-sidebar__scroller"><div id="header-panel-1" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewBox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>Frauen & I AM Editions</button>

              <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><a href="/collections/i-am-editions-edition-01" class="header-sidebar__linklist-button h6">I AM EDITIONS – EDITION 01 & 02</a></li><li><a href="/collections/i-am-editions-pullover-cardigans" class="header-sidebar__linklist-button h6">Pullover & Cardigans</a></li><li><a href="/collections/frauen-i-am-editions-blusen-tops" class="header-sidebar__linklist-button h6">Blusen & Tops</a></li><li><a href="/collections/frauen-i-am-editions-kleider-rocke" class="header-sidebar__linklist-button h6">Kleider & Röcke</a></li><li><a href="/collections/frauen-i-am-editions-hosen-shorts" class="header-sidebar__linklist-button h6">Hosen & Shorts</a></li><li><a href="/collections/frauen-i-am-editions-accessories-schmuck" class="header-sidebar__linklist-button h6">Accessories & Schmuck</a></li><li><a href="/collections/frauen-i-am-editions-home-living" class="header-sidebar__linklist-button h6">Home & Living</a></li><li><a href="/products/mini-me-pyjama-set-red-green-aus-flanell" class="header-sidebar__linklist-button h6">Pyjamans</a></li></ul></div><div id="header-panel-2" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewBox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>Kinder - leevje</button>

              <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><details is="accordion-disclosure" class="group">
                        <summary class="header-sidebar__linklist-button h6">MODE<span class="animated-plus group-expanded:rotate" aria-hidden="true"></span>
                        </summary>

                        <div class="header-sidebar__nested-linklist"><a href="/collections/fs-26-sweat-strick" class="link-faded-reverse">Sweat & Strick</a><a href="/collections/fs-26-shirts-tops" class="link-faded-reverse">Shirts & Tops</a><a href="/collections/fs-26-blusen-hemden" class="link-faded-reverse">Blusen & Hemden</a><a href="/collections/fs-26-kleider-rocke" class="link-faded-reverse">Kleider & Röcke</a><a href="/collections/fs-26-hosen-shorts" class="link-faded-reverse">Hosen & Shorts</a><a href="/collections/fs-26-jacken-outdoor" class="link-faded-reverse">Jacken & Outdoor</a><a href="/collections/fs-26-bademode" class="link-faded-reverse">Bademode</a><a href="/collections/fs-26-mini-me" class="link-faded-reverse">Mini Me</a><a href="/collections/fs-26-sets" class="link-faded-reverse">Sets</a></div>
                      </details></li><li><a href="/collections/fs-26-accessories-produkte" class="header-sidebar__linklist-button h6">Accessories & Produkte</a></li><li><a href="/collections/strand-und-osterwelt" class="header-sidebar__linklist-button h6">Strand- und Osterwelt</a></li><li><a href="/collections/schulwelt" class="header-sidebar__linklist-button h6">Schul- und Kitawelt</a></li></ul></div><div id="header-panel-3" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewBox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>About</button>

              <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><a href="/pages/uber-leevje" class="header-sidebar__linklist-button h6">leevje </a></li><li><a href="https://leevje.com/pages/sustainable" class="header-sidebar__linklist-button h6">Nachhaltigkeit</a></li><li><a href="/pages/materialien" class="header-sidebar__linklist-button h6">Materialien</a></li><li><a href="/pages/grossentabelle" class="header-sidebar__linklist-button h6">Leitfaden für Größen</a></li><li><a href="/pages/retouren" class="header-sidebar__linklist-button h6">Retoure</a></li><li><a href="/pages/team-2" class="header-sidebar__linklist-button h6">Team</a></li><li><a href="/pages/jobs" class="header-sidebar__linklist-button h6">Jobs</a></li><li><a href="/pages/faq-2" class="header-sidebar__linklist-button h6">FAQ</a></li></ul></div><div id="header-panel-4" class="header-sidebar__sub-panel" hidden>
              <button type="button" class="header-sidebar__back-button link-faded is-divided text-with-icon h6 md:hidden" data-action="close-panel"><svg aria-hidden="true" focusable="false" fill="none" width="12" class="icon icon-chevron-left  icon--direction-aware" viewBox="0 0 10 10">
      <path d="M7 1 3 5l4 4" stroke="currentColor" stroke-linecap="square"/>
    </svg>Lagerverkauf</button>

              <ul class="header-sidebar__linklist divide-y unstyled-list" role="list"><li><a href="/collections/lagerverkauf-produkte" class="header-sidebar__linklist-button h6">Alles</a></li><li><a href="/collections/bundle-aktion" class="header-sidebar__linklist-button h6">Bundle</a></li><li><a href="/collections/lagerverkauf-frauen-1" class="header-sidebar__linklist-button h6">Frauen</a></li><li><a href="/collections/lagerverkauf-baby" class="header-sidebar__linklist-button h6">Baby, Baden & Kuscheln</a></li><li><a href="/collections/lagerverkauf-party-home-deko" class="header-sidebar__linklist-button h6">Party, Interior & Dekoration</a></li><li><a href="/collections/lagerverkauf-spielzeug-holz" class="header-sidebar__linklist-button h6">Spielzeug & Holz</a></li><li><a href="/collections/lagerverkauf-essen-trinken" class="header-sidebar__linklist-button h6">Essen & Trinken</a></li><li><a href="/collections/lagerverkauf-papeterie" class="header-sidebar__linklist-button h6">Papeterie</a></li></ul></div></div>
    </header-sidebar-collapsible-panel></header-sidebar></x-header>
</height-observer>

<script>
  document.documentElement.style.setProperty('--header-height', `${document.getElementById('shopify-section-sections--19464376025354__header').clientHeight.toFixed(2)}px`);
</script>


</header>
<!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
<section id="shopify-section-sections--19464376058122__cart-drawer" class="shopify-section shopify-section-group-overlay-group shopify-section--cart-drawer"><cart-drawer id="cart-drawer" class="cart-drawer ed-cart-drawer drawer drawer--center-body color-scheme color-scheme--scheme-1" initial-focus="false" handle-editor-events>
  <p class="h4" slot="header">Dein Warenkorb</p><p class="h5 text-center">Dein Warenkorb ist leer</p></cart-drawer>

</section>
<!-- END sections: overlay-group --><main id="main" class="anchor">
    <section id="shopify-section-template--19464376811786__slideshow_EkX7Xm" class="shopify-section shopify-section--slideshow"><slideshow-carousel id="carousel-template--19464376811786__slideshow_EkX7Xm" class="slideshow slideshowtemplate--19464376811786__slideshow_EkX7Xm ed-slideshow" allow-swipe allow-transparent-header cell-selector=".slideshow__slide" autoplay="4" autoplay-pause-on-video role="region" style="--background: 171 160 146 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;"><div class="slideshow__slide is-selected" media-type="image" reveal-on-scroll="true" role="group" ><div class="content-over-media content-over-media--auto" style="--content-over-media-content-max-width: 780px; --content-over-media-gradient-overlay: linear-gradient(180deg, rgba(NaN, NaN, NaN, 0), rgba(4, 4, 4, 0.65) 100%)"><picture><source
                      media="(max-width: 699px)"
                      srcset="//leevje.com/cdn/shop/files/Header_Mobil_3.png?v=1776259436&width=400 400w, //leevje.com/cdn/shop/files/Header_Mobil_3.png?v=1776259436&width=600 600w, //leevje.com/cdn/shop/files/Header_Mobil_3.png?v=1776259436&width=800 800w, //leevje.com/cdn/shop/files/Header_Mobil_3.png?v=1776259436&width=1000 1000w"
                      width="750"
                      height="1100"
                  ><img src="//leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1800" alt="" srcset="//leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=300 300w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=400 400w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=500 500w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=600 600w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=700 700w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=800 800w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=900 900w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1000 1000w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1200 1200w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1400 1400w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1600 1600w, //leevje.com/cdn/shop/files/227.png?v=1776259437&amp;width=1800 1800w" width="1800" height="900" fetchpriority="high" sizes="100vw"></picture>

          <div class="slideshow__slide-content    place-self-end-center text-center sm:place-self-end-center sm:text-center" style="--text-color: 255 255 255; color: rgb(var(--text-color));--border-color: var(--text-color) / 0.15;">
            <div class="prose"><div class="button-group justify-center sm:justify-center">
<a class="button"style="--button-background: 171 160 146;--button-outline-color: 171 160 146;--button-text-color: 255 255 255;"href="/collections/lagerverkauf-produkte" >JETZT ENTDECKEN</a></div></div>
          </div>
        </div></div><div class="slideshow__slide " media-type="image"  role="group" ><div class="content-over-media content-over-media--auto" style="--content-over-media-content-max-width: 780px; --content-over-media-gradient-overlay: linear-gradient(180deg, rgba(NaN, NaN, NaN, 0), rgba(4, 4, 4, 0.65) 100%)"><picture><source
                      media="(max-width: 699px)"
                      srcset="//leevje.com/cdn/shop/files/Header_Mobil_1_9148bdbd-1827-4c41-b15e-ae32ecbab045.png?v=1775645903&width=400 400w, //leevje.com/cdn/shop/files/Header_Mobil_1_9148bdbd-1827-4c41-b15e-ae32ecbab045.png?v=1775645903&width=600 600w, //leevje.com/cdn/shop/files/Header_Mobil_1_9148bdbd-1827-4c41-b15e-ae32ecbab045.png?v=1775645903&width=800 800w, //leevje.com/cdn/shop/files/Header_Mobil_1_9148bdbd-1827-4c41-b15e-ae32ecbab045.png?v=1775645903&width=1000 1000w"
                      width="750"
                      height="1100"
                  ><img src="//leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1800" alt="" srcset="//leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=300 300w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=400 400w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=500 500w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=600 600w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=700 700w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=800 800w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=900 900w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1000 1000w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1200 1200w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1400 1400w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1600 1600w, //leevje.com/cdn/shop/files/Header_Desktop_1_574c6380-ab5f-4171-8c77-17d27e614f20.png?v=1775645840&amp;width=1800 1800w" width="1800" height="900" loading="lazy" fetchpriority="low" sizes="100vw"></picture>

          <div class="slideshow__slide-content    place-self-end-center text-center sm:place-self-end-center sm:text-center" style="--text-color: 255 255 255; color: rgb(var(--text-color));--border-color: var(--text-color) / 0.15;">
            <div class="prose"><div class="button-group justify-center sm:justify-center">
<a class="button"style="--button-background: 171 160 146;--button-outline-color: 171 160 146;--button-text-color: 255 255 255;"href="/collections/a-summer-to-remember" >JETZT entdecken</a></div></div>
          </div>
        </div></div><carousel-navigation aria-controls="carousel-template--19464376811786__slideshow_EkX7Xm" class="page-dots page-dots--autoplay" style="--text-color: 255 255 255; color: rgb(var(--text-color));--border-color: var(--text-color) / 0.15;"><button class="tap-area" aria-current="true">
            <span class="sr-only">Gehe zu Element 1</span><svg class="circular-progress" height="8" width="8" viewBox="0 0 8 8" style="--stroke-dasharray: 20.420352248335">
                <circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="3.25" stroke="currentColor" stroke-opacity="0.2"></circle>
                <circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="3.25" stroke="currentColor" stroke-linecap="round"></circle>
              </svg></button><button class="tap-area" aria-current="false">
            <span class="sr-only">Gehe zu Element 2</span><svg class="circular-progress" height="8" width="8" viewBox="0 0 8 8" style="--stroke-dasharray: 20.420352248335">
                <circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="3.25" stroke="currentColor" stroke-opacity="0.2"></circle>
                <circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="3.25" stroke="currentColor" stroke-linecap="round"></circle>
              </svg></button></carousel-navigation></slideshow-carousel><style>
  
    .slideshowtemplate--19464376811786__slideshow_EkX7Xm {
      margin: 0 auto;
      max-width: 2800px;
    }
  
</style>


</section><section id="shopify-section-template--19464376811786__featured_collections_xiy4W8" class="shopify-section shopify-section--featured-collections"><style>
    #shopify-section-template--19464376811786__featured_collections_xiy4W8 {
      --product-list-items-per-row: 2;
      --product-list-horizontal-spacing-factor: 1;
      --product-list-vertical-spacing-factor: 1;
    }

    @media screen and (min-width: 700px) {
      #shopify-section-template--19464376811786__featured_collections_xiy4W8 {
        --product-list-items-per-row: 6;
      }
    }
  </style><div class="ed-featured-collections section-spacing color-scheme color-scheme--scheme-1 color-scheme--bg-54922f2e920ba8346f6dc0fba343d673 ">
    <div class="container"><div class="section-stack">
        <div class="v-stack justify-self-center gap-4 text-center sm:gap-5"><p class="h6 text-center">Eine leichte, warme Sommerkollektion – inspiriert von Meer, Freiheit und unbeschwerten Momenten, gefertigt aus natürlichen Materialien für Lieblingsstücke, die bleiben.</p><h2 class="h2">A Summer To Remember</h2></div>

        <featured-collections-carousel id="featured-collections-carousel-template--19464376811786__featured_collections_xiy4W8" class="featured-collections-carousel"><div class="featured-collections-carousel__item is-selected" ><product-list class="product-list  justify-center"><product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="unisex-t-shirt-palm-tree">
<div class="product-card__figure"><a href="/products/unisex-t-shirt-palm-tree" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=1000" alt="Unisex T-Shirt &#39;Palm Tree&#39;" srcset="//leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26101_white_1.jpg?v=1767703956&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-t-shirt-palm-tree" class="product-title  "  data-instant>Unisex T-Shirt 'Palm Tree'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="tote-bag-small-crocodile">
<div class="product-card__figure"><a href="/products/tote-bag-small-crocodile" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=1000" alt="Tote Bag Small &#39;Crocodile&#39;" srcset="//leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26146_2.jpg?v=1768908995&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/tote-bag-small-crocodile" class="product-title  "  data-instant>Tote Bag Small 'Crocodile'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>17€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="frill-sleeve-top-hearts">
<div class="product-card__figure"><a href="/products/frill-sleeve-top-hearts" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=1000" alt="Frill Sleeve Top ‘Hearts’" srcset="//leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26100_white_1.jpg?v=1768400774&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/frill-sleeve-top-hearts" class="product-title  "  data-instant>Frill Sleeve Top ‘Hearts’</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="unisex-sweatshirt-with-sun-oh-hey-vacay">
<div class="product-card__figure"><a href="/products/unisex-sweatshirt-with-sun-oh-hey-vacay" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=1000" alt="Unisex Sweatshirt with Sun &#39;Oh Hey Vacay&#39;" srcset="//leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26098_cappuccino_1.jpg?v=1770891507&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-sweatshirt-with-sun-oh-hey-vacay" class="product-title  "  data-instant>Unisex Sweatshirt with Sun 'Oh Hey Vacay'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>54€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="sweatshirt-oh-hey-vacay-in-lavender">
<div class="product-card__figure"><a href="/products/sweatshirt-oh-hey-vacay-in-lavender" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=1000" alt="Sweatshirt &#39;Oh Hey Vacay&#39; in Lavender" srcset="//leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26097_lavender_1.jpg?v=1774608249&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/sweatshirt-oh-hey-vacay-in-lavender" class="product-title  "  data-instant>Sweatshirt 'Oh Hey Vacay' in Lavender</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>59€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="sling-bag-leo-5">
<div class="product-card__figure"><a href="/products/sling-bag-leo-5" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=1000" alt="Sling Bag &#39;Leo 5&#39;" srcset="//leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26161_1.jpg?v=1768908157&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/sling-bag-leo-5" class="product-title  "  data-instant>Sling Bag 'Leo 5'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>36€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="culotte-in-denim-optic">
<div class="product-card__figure"><a href="/products/culotte-in-denim-optic" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=1000" alt="Culotte in Denim Optic" srcset="//leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26092_Denim1_1.jpg?v=1766154482&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/culotte-in-denim-optic" class="product-title  "  data-instant>Culotte in Denim Optic</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>49€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="organic-cotton-leggings-flowers-with-front-drawstring-applique">
<div class="product-card__figure"><a href="/products/organic-cotton-leggings-flowers-with-front-drawstring-applique" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=1000" alt="Organic Cotton Leggings &#39;Flowers&#39; with Front Drawstring Appliqué" srcset="//leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26085_aqua_1.jpg?v=1768399787&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/organic-cotton-leggings-flowers-with-front-drawstring-applique" class="product-title  "  data-instant>Organic Cotton Leggings 'Flowers' with Front Drawstring Appliqué</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="flared-organic-cotton-leggings-with-front-drawstring-applique">
<div class="product-card__figure"><a href="/products/flared-organic-cotton-leggings-with-front-drawstring-applique" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=1000" alt="Flared Organic Cotton Leggings with Front Drawstring Appliqué in &#39;Terracotta&#39;" srcset="//leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26080_terracotta_1.jpg?v=1765812676&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/flared-organic-cotton-leggings-with-front-drawstring-applique" class="product-title  "  data-instant>Flared Organic Cotton Leggings with Front Drawstring Appliqué in 'Terracotta'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="unisex-t-shirt-surfboards">
<div class="product-card__figure"><a href="/products/unisex-t-shirt-surfboards" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=1000" alt="Unisex T-Shirt &#39;Surfboards&#39;" srcset="//leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26102_blue_1.jpg?v=1767703687&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-t-shirt-surfboards" class="product-title  "  data-instant>Unisex T-Shirt 'Surfboards'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="unisex-oversized-sweatshirt-with-shark-oh-hey-vacay">
<div class="product-card__figure"><a href="/products/unisex-oversized-sweatshirt-with-shark-oh-hey-vacay" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=1000" alt="Unisex Oversized Sweatshirt with Shark ‘Oh Hey Vacay’" srcset="//leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26133_aqua_1_1.jpg?v=1767877582&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-oversized-sweatshirt-with-shark-oh-hey-vacay" class="product-title  "  data-instant>Unisex Oversized Sweatshirt with Shark ‘Oh Hey Vacay’</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>59€</span></sale-price></price-list></div></div></div>
</product-card>
<product-card class="true product-card ed-product-card" reveal-on-scroll="true" handle="tote-bag-small-flowers">
<div class="product-card__figure"><a href="/products/tote-bag-small-flowers" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=4000" alt="Tote Bag Small &#39;Flowers&#39;" srcset="//leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=1000 1000w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=1200 1200w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=1400 1400w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=1600 1600w, //leevje.com/cdn/shop/files/LE26145_g.png?v=1768908841&amp;width=1800 1800w" width="4000" height="6000" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 6 - (24px / 6 * 5))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/tote-bag-small-flowers" class="product-title  "  data-instant>Tote Bag Small 'Flowers'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>17€</span></sale-price></price-list></div></div></div>
</product-card>
</product-list><div class="justify-self-center ed-featured-collections-button">
<a class="button"href="/collections/a-summer-to-remember" >ALLES ENTDECKEN</a></div></div></featured-collections-carousel>
      </div>
    </div>
  </div><style>
  
    .ed-featured-collections .color-swatch {
      display: none;
    }

    .ed-featured-collections .ed-featured-collections-button .button {
      letter-spacing: 0.19em;
    }
  
</style>


</section><div id="shopify-section-template--19464376811786__ed_collection_list_ReLdMG" class="shopify-section"><!-- Flickity CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.min.css">
<!-- Flickity JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.pkgd.min.js"></script>

<script>
  document.addEventListener("DOMContentLoaded", function() {
    var elem = document.querySelector('.Carouseltemplate--19464376811786__ed_collection_list_ReLdMG');
    var flkty = new Flickity(elem, {
      prevNextButtons: false,
      pageDots: true,
      setGallerySize: true,
      wrapAround: true,
      watchCSS: true,
      dragThreshold: 8,
      cellAlign: 'left',
      percentPosition: true,
      groupCells: true
    });
  });
</script>

<section id="section-template--19464376811786__ed_collection_list_ReLdMG" class="ed-collection-list" data-section-id="template--19464376811786__ed_collection_list_ReLdMG" data-section-type="collection-list"><div class="CollectionList CollectionList--grid CollectionList--spaced">
            <a href="/collections/fs-26-shirts-tops"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_1x1.jpg?v=1770819509)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image Image--contrast Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_1000x.jpg?v=1770819509);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_750x960_crop_center.jpg?v=1770819509 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_1000x.jpg?v=1770819509 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_1500x.jpg?v=1770819509 1500w"></div><noscript>
                    <div class="CollectionItem__Image Image--contrast" style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-520_1000x.jpg?v=1770819509)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">A summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Shirts &amp; Tops</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">Jetzt entdecken</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style><a href="/collections/fs-26-sweat-strick"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_1x1.jpg?v=1770819740)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image  Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_1000x.jpg?v=1770819740);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_750x960_crop_center.jpg?v=1770819740 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_1000x.jpg?v=1770819740 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_1500x.jpg?v=1770819740 1500w"></div><noscript>
                    <div class="CollectionItem__Image " style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-425_1000x.jpg?v=1770819740)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">A summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Sweat &amp; Strick</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">JETZT ENTDECKEN</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style><a href="/collections/fs-26-hosen-shorts"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_1x1.jpg?v=1770819915)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image  Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_1000x.jpg?v=1770819915);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_750x960_crop_center.jpg?v=1770819915 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_1000x.jpg?v=1770819915 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_1500x.jpg?v=1770819915 1500w"></div><noscript>
                    <div class="CollectionItem__Image " style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-983_f71f56c9-a87a-4c74-88df-5bf0ff4ed2ab_1000x.jpg?v=1770819915)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">a summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Hosen &amp; Shorts</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">Jetzt entdecken</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style>
        </div></section>

<style>
    #section-template--19464376811786__ed_collection_list_ReLdMG .CollectionItem .Heading,
    #section-template--19464376811786__ed_collection_list_ReLdMG .flickity-page-dots {
        color: #ffffff;
        bottom: 25px;
        width: unset;
        left: 20px;
    }

    #section-template--19464376811786__ed_collection_list_ReLdMG .CollectionItem__Link {
        --button-background: 255 255 255;
        --button-outline-color: 255 255 255;
        --button-text-color: 220 189 158;
        color: #1c1c1c;
    }

    #section-template--19464376811786__ed_collection_list_ReLdMG .CollectionItem__Link::before {
        background-color: #ffffff;
    }

    @media (-moz-touch-enabled: 0), (hover: hover) {
        #section-template--19464376811786__ed_collection_list_ReLdMG .CollectionItem__Link:hover {
            color: #ffffff;
        }
    }
</style>

</div><section id="shopify-section-template--19464376811786__shop_the_look_QKD9Aj" class="shopify-section shopify-section--shop-the-look"><div class="section-spacing color-scheme color-scheme--scheme-1 color-scheme--bg-54922f2e920ba8346f6dc0fba343d673 ">
    <div class="container container--xl">
      <div class="section-stack">
  <div class="section-header justify-self-center text-center"><div class="prose"><h2 class="h2">Shop the look</h2></div></div>

          <div class="md:hidden"><div class="v-stack gap-6">
                <shop-the-look-mobile-carousel class="shop-the-look__carousel scroll-area snap-x bleed"><div class="shop-the-look__item snap-start is-selected w-full" data-popover-id="shop-the-look-item-popover-look_fWzLjE" >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_fWzLjE-md" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 51%; --shop-the-look-hot-spot-left: 44%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button></carousel-navigation>
                </div><shop-the-look-popover id="shop-the-look-item-popover-look_fWzLjE" class="shop-the-look__popover popover">
                    <p class="h4" slot="header">Shop the look</p>

                    <scroll-carousel id="shop-the-look-item-carousel-look_fWzLjE-md" class="shop-the-look__item-carousel scroll-area bleed snap-x"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class=" product-card ed-product-card"  handle="">
<div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="" class="product-title  "  data-instant></a><price-list  class="price-list "><sale-price class="text-subdued">
      <span class="sr-only">Angebot</span><span class=money>49.99€</span></sale-price></price-list></div></div></div>
</product-card>
</div></scroll-carousel>
                  </shop-the-look-popover></div><div class="shop-the-look__item snap-start  w-full" data-popover-id="shop-the-look-item-popover-look_TAhENP" >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_TAhENP-md" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 64%; --shop-the-look-hot-spot-left: 20%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 77%; --shop-the-look-hot-spot-left: 42%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 2">
                        <span class="sr-only">Gehe zu Element 2</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 60%; --shop-the-look-hot-spot-left: 51%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 3">
                        <span class="sr-only">Gehe zu Element 3</span>
                      </button></carousel-navigation>
                </div><shop-the-look-popover id="shop-the-look-item-popover-look_TAhENP" class="shop-the-look__popover popover">
                    <p class="h4" slot="header">Shop the look</p>

                    <scroll-carousel id="shop-the-look-item-carousel-look_TAhENP-md" class="shop-the-look__item-carousel scroll-area bleed snap-x"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class="true product-card ed-product-card"  handle="muslin-jacket-with-heart-embroidery">
<div class="product-card__figure"><a href="/products/muslin-jacket-with-heart-embroidery" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=1000" alt="Muslin Jacket with Heart Embroidery" srcset="//leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/muslin-jacket-with-heart-embroidery" class="product-title  "  data-instant>Muslin Jacket with Heart Embroidery</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>79€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="true product-card ed-product-card"  handle="trousers-beige-stripes-in-linen-optic">
<div class="product-card__figure"><a href="/products/trousers-beige-stripes-in-linen-optic" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=1000" alt="Trousers ‘Beige Stripes’ in Linen Optic" srcset="//leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/trousers-beige-stripes-in-linen-optic" class="product-title  "  data-instant>Trousers ‘Beige Stripes’ in Linen Optic</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>39€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="true product-card ed-product-card"  handle="short-sleeved-blouse-with-ruffles">
<div class="product-card__figure"><a href="/products/short-sleeved-blouse-with-ruffles" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=1000" alt="Short-Sleeved Blouse with Ruffles" srcset="//leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/short-sleeved-blouse-with-ruffles" class="product-title  "  data-instant>Short-Sleeved Blouse with Ruffles</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>49€</span></sale-price></price-list></div></div></div>
</product-card>
</div></scroll-carousel>
                  </shop-the-look-popover></div><div class="shop-the-look__item snap-start  w-full" data-popover-id="shop-the-look-item-popover-look_x4bGNj" >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_x4bGNj-md" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 54%; --shop-the-look-hot-spot-left: 59%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 84%; --shop-the-look-hot-spot-left: 49%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 2">
                        <span class="sr-only">Gehe zu Element 2</span>
                      </button></carousel-navigation>
                </div><shop-the-look-popover id="shop-the-look-item-popover-look_x4bGNj" class="shop-the-look__popover popover">
                    <p class="h4" slot="header">Shop the look</p>

                    <scroll-carousel id="shop-the-look-item-carousel-look_x4bGNj-md" class="shop-the-look__item-carousel scroll-area bleed snap-x"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class="true product-card ed-product-card"  handle="unisex-short-sleeve-polo-shirt-oh-hey-vacay">
<div class="product-card__figure"><a href="/products/unisex-short-sleeve-polo-shirt-oh-hey-vacay" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=1000" alt="Unisex Short Sleeve Polo Shirt &#39;Oh Hey Vacay&#39;" srcset="//leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-short-sleeve-polo-shirt-oh-hey-vacay" class="product-title  "  data-instant>Unisex Short Sleeve Polo Shirt 'Oh Hey Vacay'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="false product-card ed-product-card"  handle="leggings-cappuccino-aus-bio-baumwolle">
<div class="product-card__figure"><badge-list  class="badge-list badge-list--vertical">
<sold-out-badge   class="badge badge--sold-out ">

              
Ausverkauft

            </sold-out-badge></badge-list><a href="/products/leggings-cappuccino-aus-bio-baumwolle" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=2666" alt="Leggings &#39;cappuccino&#39; aus Bio-Baumwolle" srcset="//leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=200 200w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=300 300w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=400 400w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=500 500w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=600 600w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=700 700w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=800 800w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1000 1000w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1200 1200w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1400 1400w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1600 1600w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1800 1800w" width="2666" height="4000" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/leggings-cappuccino-aus-bio-baumwolle" class="product-title  "  data-instant>Leggings 'cappuccino' aus Bio-Baumwolle</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
</div></scroll-carousel>
                  </shop-the-look-popover></div></shop-the-look-mobile-carousel>
<button type="button" class="button w-full"   >

    
Produkte anzeigen
  </button></div></div>

          <div class="md-max:hidden"><div class="floating-controls-container">
                <shop-the-look-desktop-carousel class="shop-the-look__carousel is-scrollable" id="shop-the-look-carousel-template--19464376811786__shop_the_look_QKD9Aj-md"><div class="shop-the-look__item snap-start is-selected w-full"  >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473.jpg?v=1770820931&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_fWzLjE-md-max" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 51%; --shop-the-look-hot-spot-left: 44%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button></carousel-navigation>
                </div><div class="shop-the-look__item-content">
                    <shop-the-look-product-list-carousel class="shop-the-look__item-carousel w-full" id="shop-the-look-item-carousel-look_fWzLjE-md-max"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class=" product-card ed-product-card"  handle="">
<div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="" class="product-title  "  data-instant></a><price-list  class="price-list "><sale-price class="text-subdued">
      <span class="sr-only">Angebot</span><span class=money>49.99€</span></sale-price></price-list></div></div></div>
</product-card>
</div></shop-the-look-product-list-carousel>
<a class="button"href="#" >Produkt anzeigen</a></div></div><div class="shop-the-look__item snap-start  w-full"  >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-764.jpg?v=1770821321&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_TAhENP-md-max" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 64%; --shop-the-look-hot-spot-left: 20%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 77%; --shop-the-look-hot-spot-left: 42%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 2">
                        <span class="sr-only">Gehe zu Element 2</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 60%; --shop-the-look-hot-spot-left: 51%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 3">
                        <span class="sr-only">Gehe zu Element 3</span>
                      </button></carousel-navigation>
                </div><div class="shop-the-look__item-content">
                    <shop-the-look-product-list-carousel class="shop-the-look__item-carousel w-full" id="shop-the-look-item-carousel-look_TAhENP-md-max"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class="true product-card ed-product-card"  handle="muslin-jacket-with-heart-embroidery">
<div class="product-card__figure"><a href="/products/muslin-jacket-with-heart-embroidery" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=1000" alt="Muslin Jacket with Heart Embroidery" srcset="//leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26037_cappuccino_1.jpg?v=1768394488&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/muslin-jacket-with-heart-embroidery" class="product-title  "  data-instant>Muslin Jacket with Heart Embroidery</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>79€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="true product-card ed-product-card"  handle="trousers-beige-stripes-in-linen-optic">
<div class="product-card__figure"><a href="/products/trousers-beige-stripes-in-linen-optic" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=1000" alt="Trousers ‘Beige Stripes’ in Linen Optic" srcset="//leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26069_beigestripes_1.jpg?v=1767705513&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/trousers-beige-stripes-in-linen-optic" class="product-title  "  data-instant>Trousers ‘Beige Stripes’ in Linen Optic</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>39€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="true product-card ed-product-card"  handle="short-sleeved-blouse-with-ruffles">
<div class="product-card__figure"><a href="/products/short-sleeved-blouse-with-ruffles" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=1000" alt="Short-Sleeved Blouse with Ruffles" srcset="//leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26041_white_1_c5d3c457-596f-423f-b798-1c98401d60fd.jpg?v=1768395085&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/short-sleeved-blouse-with-ruffles" class="product-title  "  data-instant>Short-Sleeved Blouse with Ruffles</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>49€</span></sale-price></price-list></div></div></div>
</product-card>
</div></shop-the-look-product-list-carousel>
<a class="button"href="/products/muslin-jacket-with-heart-embroidery" >Produkt anzeigen</a><carousel-navigation aria-controls="shop-the-look-item-carousel-look_TAhENP-md-max" class="page-dots"><button class="tap-area" aria-current="true" aria-label="Gehe zu Element 1">
                            <span class="sr-only">Gehe zu Element 1</span>
                          </button><button class="tap-area" aria-current="false" aria-label="Gehe zu Element 2">
                            <span class="sr-only">Gehe zu Element 2</span>
                          </button><button class="tap-area" aria-current="false" aria-label="Gehe zu Element 3">
                            <span class="sr-only">Gehe zu Element 3</span>
                          </button></carousel-navigation></div></div><div class="shop-the-look__item snap-start  w-full"  >
                <div class="shop-the-look__image-wrapper"><img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=1000" alt="" srcset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=400 400w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=500 500w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=600 600w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=700 700w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=800 800w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-976_119c3db8-8e15-4338-9b60-5f393e005c47.jpg?v=1770821634&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 999px) 100vw, min(60vw, 550px)" class="image-cover"><carousel-navigation aria-controls="shop-the-look-item-carousel-look_x4bGNj-md-max" class="shop-the-look__hot-spot-list"><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 54%; --shop-the-look-hot-spot-left: 59%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="true" aria-label="Gehe zu Element 1">
                        <span class="sr-only">Gehe zu Element 1</span>
                      </button><button class="shop-the-look__hot-spot" style="--shop-the-look-hot-spot-top: 84%; --shop-the-look-hot-spot-left: 49%; --background: 255 255 255 ; background-color: rgb(var(--background));--border-color: var(--text-color) / 0.15;" aria-current="false" aria-label="Gehe zu Element 2">
                        <span class="sr-only">Gehe zu Element 2</span>
                      </button></carousel-navigation>
                </div><div class="shop-the-look__item-content">
                    <shop-the-look-product-list-carousel class="shop-the-look__item-carousel w-full" id="shop-the-look-item-carousel-look_x4bGNj-md-max"><div class="shop-the-look__item-product w-full snap-center is-selected"><product-card class="true product-card ed-product-card"  handle="unisex-short-sleeve-polo-shirt-oh-hey-vacay">
<div class="product-card__figure"><a href="/products/unisex-short-sleeve-polo-shirt-oh-hey-vacay" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=1000" alt="Unisex Short Sleeve Polo Shirt &#39;Oh Hey Vacay&#39;" srcset="//leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=200 200w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=300 300w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=400 400w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=500 500w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=600 600w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=700 700w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=800 800w, //leevje.com/cdn/shop/files/LE26139_cappuccino_1.jpg?v=1767358550&amp;width=1000 1000w" width="1000" height="1500" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/unisex-short-sleeve-polo-shirt-oh-hey-vacay" class="product-title  "  data-instant>Unisex Short Sleeve Polo Shirt 'Oh Hey Vacay'</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
</div><div class="shop-the-look__item-product w-full snap-center "><product-card class="false product-card ed-product-card"  handle="leggings-cappuccino-aus-bio-baumwolle">
<div class="product-card__figure"><badge-list  class="badge-list badge-list--vertical">
<sold-out-badge   class="badge badge--sold-out ">

              
Ausverkauft

            </sold-out-badge></badge-list><a href="/products/leggings-cappuccino-aus-bio-baumwolle" class="product-card__media" data-instant><img src="//leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=2666" alt="Leggings &#39;cappuccino&#39; aus Bio-Baumwolle" srcset="//leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=200 200w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=300 300w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=400 400w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=500 500w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=600 600w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=700 700w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=800 800w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1000 1000w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1200 1200w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1400 1400w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1600 1600w, //leevje.com/cdn/shop/files/LeggingsCappuccino26009.png?v=1749552181&amp;width=1800 1800w" width="2666" height="4000" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc((100vw - 96px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary object-cover aspect-tall"></a></div><div class="product-card__info empty:hidden"><div class="v-stack justify-items-center gap-2"><div class="v-stack justify-items-center gap-1"><a href="/products/leggings-cappuccino-aus-bio-baumwolle" class="product-title  "  data-instant>Leggings 'cappuccino' aus Bio-Baumwolle</a><price-list  class="price-list "><sale-price class="text-subdued">
        <span class="sr-only">Angebot</span><span class=money>34€</span></sale-price></price-list></div></div></div>
</product-card>
</div></shop-the-look-product-list-carousel>
<a class="button"href="/products/unisex-short-sleeve-polo-shirt-oh-hey-vacay" >Produkt anzeigen</a><carousel-navigation aria-controls="shop-the-look-item-carousel-look_x4bGNj-md-max" class="page-dots"><button class="tap-area" aria-current="true" aria-label="Gehe zu Element 1">
                            <span class="sr-only">Gehe zu Element 1</span>
                          </button><button class="tap-area" aria-current="false" aria-label="Gehe zu Element 2">
                            <span class="sr-only">Gehe zu Element 2</span>
                          </button></carousel-navigation></div></div></shop-the-look-desktop-carousel><button is="carousel-prev-button" type="button" class="prev-next-button prev-next-button--prev circle-button circle-button--lg hover:animate-icon-inline" aria-controls="shop-the-look-carousel-template--19464376811786__shop_the_look_QKD9Aj-md">
                    <span class="sr-only">Zurück</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-arrow-left  icon--direction-aware" viewBox="0 0 16 18">
      <path d="M11 1 3 9l8 8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

                  <button is="carousel-next-button" type="button" class="prev-next-button prev-next-button--next circle-button circle-button--lg hover:animate-icon-inline" aria-controls="shop-the-look-carousel-template--19464376811786__shop_the_look_QKD9Aj-md">
                    <span class="sr-only">Vor</span><svg aria-hidden="true" focusable="false" fill="none" width="16" class="icon icon-arrow-right  icon--direction-aware" viewBox="0 0 16 18">
      <path d="m5 17 8-8-8-8" stroke="currentColor" stroke-linecap="square"/>
    </svg></button></div></div></div>
    </div>
  </div>
<style>
  .shopify-section--shop-the-look product-card .color-swatch, shop-the-look-popover product-card .color-swatch {
    display: none;
  }
</style>



</section><div id="shopify-section-template--19464376811786__ed_collection_list_6jWnHA" class="shopify-section"><!-- Flickity CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.min.css">
<!-- Flickity JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.pkgd.min.js"></script>

<script>
  document.addEventListener("DOMContentLoaded", function() {
    var elem = document.querySelector('.Carouseltemplate--19464376811786__ed_collection_list_6jWnHA');
    var flkty = new Flickity(elem, {
      prevNextButtons: false,
      pageDots: true,
      setGallerySize: true,
      wrapAround: true,
      watchCSS: true,
      dragThreshold: 8,
      cellAlign: 'left',
      percentPosition: true,
      groupCells: true
    });
  });
</script>

<section id="section-template--19464376811786__ed_collection_list_6jWnHA" class="ed-collection-list" data-section-id="template--19464376811786__ed_collection_list_6jWnHA" data-section-type="collection-list"><div class="CollectionList CollectionList--grid CollectionList--spaced">
            <a href="/collections/fs-26-kleider-rocke"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_1x1.jpg?v=1770819740)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image Image--contrast Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_1000x.jpg?v=1770819740);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_750x960_crop_center.jpg?v=1770819740 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_1000x.jpg?v=1770819740 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_1500x.jpg?v=1770819740 1500w"></div><noscript>
                    <div class="CollectionItem__Image Image--contrast" style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-9_1000x.jpg?v=1770819740)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">A summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Kleider &amp; Röcke</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">Jetzt entdecken</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style><a href="/collections/fs-26-blusen-hemden"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_1x1.jpg?v=1770822032)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image  Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_1000x.jpg?v=1770822032);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_750x960_crop_center.jpg?v=1770822032 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_1000x.jpg?v=1770822032 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_1500x.jpg?v=1770822032 1500w"></div><noscript>
                    <div class="CollectionItem__Image " style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-826_aca4e516-08fd-4f35-a3a1-cf9c9926fbcf_1000x.jpg?v=1770822032)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">A summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Blusen &amp; Hemden</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">JETZT ENTDECKEN</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style><a href="/collections/fs-26-jacken-outdoor"  class="CollectionItem CollectionItem--expand Carousel__Cell " data-slide-index=""><div class="CollectionItem__Wrapper CollectionItem__Wrapper--small" style="background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_1x1.jpg?v=1770820931)">
        <div class="CollectionItem__ImageWrapper">
            <div class="CollectionItem__Image  Image--lazyLoad Image--zoomOut hide-no-js"
                 style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_1000x.jpg?v=1770820931);"
                 data-optimumx="1.4"
                 data-expand="-150"
                 data-bgset="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_750x960_crop_center.jpg?v=1770820931 750w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_1000x.jpg?v=1770820931 1000w, //leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_1500x.jpg?v=1770820931 1500w"></div><noscript>
                    <div class="CollectionItem__Image " style="background-position: center center; background-image: url(//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-473_1000x.jpg?v=1770820931)"></div>
                </noscript></div>

        <div class="CollectionItem__Content CollectionItem__Content--bottomLeft">
            <header class="SectionHeader"><h3 class="SectionHeader__SubHeading ed-SectionHeader__SubHeading Heading u-h6">a summer to remember</h3><h2 class="SectionHeader__Heading ed-SectionHeader__Heading SectionHeader__Heading--emphasize Heading u-h1">Jacken &amp; Outdoor</h2>

                <div class="SectionHeader__ButtonWrapper"><span class="CollectionItem__Link button">Jetzt entdecken</span></div>
            </header>
        </div>
    </div>
</a>

<style>

</style>
        </div></section>

<style>
    #section-template--19464376811786__ed_collection_list_6jWnHA .CollectionItem .Heading,
    #section-template--19464376811786__ed_collection_list_6jWnHA .flickity-page-dots {
        color: #ffffff;
        bottom: 25px;
        width: unset;
        left: 20px;
    }

    #section-template--19464376811786__ed_collection_list_6jWnHA .CollectionItem__Link {
        --button-background: 255 255 255;
        --button-outline-color: 255 255 255;
        --button-text-color: 220 189 158;
        color: #1c1c1c;
    }

    #section-template--19464376811786__ed_collection_list_6jWnHA .CollectionItem__Link::before {
        background-color: #ffffff;
    }

    @media (-moz-touch-enabled: 0), (hover: hover) {
        #section-template--19464376811786__ed_collection_list_6jWnHA .CollectionItem__Link:hover {
            color: #ffffff;
        }
    }
</style>

</div><section id="shopify-section-template--19464376811786__text_with_icons_zBMnQt" class="shopify-section shopify-section--text-with-icons"><div class="section-spacing section-spacing--tight color-scheme color-scheme--scheme-1 color-scheme--bg-54922f2e920ba8346f6dc0fba343d673 ">
    <div class="container">
      <div class="v-stack gap-8"><text-with-icons-carousel disabled-on="sm" allow-swipe id="text-with-icons-template--19464376811786__text_with_icons_zBMnQt" class="text-with-icons full-bleed sm:unbleed" role="region" style="--border-color: var(--text-color) / 0.15;"><div class="text-with-icons__item is-selected snap-center" role="group" aria-label="Element 1 von 4" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><img src="//leevje.com/cdn/shop/files/tower_1024x1024_0e7392d7-8d90-4802-97b3-b1a3fd6b5597.webp?v=1770890627&amp;width=1024" alt="" srcset="//leevje.com/cdn/shop/files/tower_1024x1024_0e7392d7-8d90-4802-97b3-b1a3fd6b5597.webp?v=1770890627&amp;width=64 64w, //leevje.com/cdn/shop/files/tower_1024x1024_0e7392d7-8d90-4802-97b3-b1a3fd6b5597.webp?v=1770890627&amp;width=128 128w" width="1024" height="1024" loading="lazy" sizes="64px" class="constrained-image" style="--image-mobile-max-width: 64px; --image-max-width: 64px"><div class="v-stack gap-2 text-center sm:text-center"><p class="h6">Designed with love in münster</p></div></div>
            </div><div class="text-with-icons__item  snap-center" role="group" aria-label="Element 2 von 4" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><img src="//leevje.com/cdn/shop/files/chat_1024x1024_fa9c63b3-1a78-46f5-9d07-ee50143cfa62.webp?v=1770890627&amp;width=1024" alt="" srcset="//leevje.com/cdn/shop/files/chat_1024x1024_fa9c63b3-1a78-46f5-9d07-ee50143cfa62.webp?v=1770890627&amp;width=64 64w, //leevje.com/cdn/shop/files/chat_1024x1024_fa9c63b3-1a78-46f5-9d07-ee50143cfa62.webp?v=1770890627&amp;width=128 128w" width="1024" height="1024" loading="lazy" sizes="64px" class="constrained-image" style="--image-mobile-max-width: 64px; --image-max-width: 64px"><div class="v-stack gap-2 text-center sm:text-center"><p class="h6">ausgezeichneter kundenservice</p></div></div>
            </div><div class="text-with-icons__item  snap-center" role="group" aria-label="Element 3 von 4" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><img src="//leevje.com/cdn/shop/files/present_1024x1024_c1ab6a13-cc2b-4d1d-85ee-b30bb8c07e06.png?v=1770890628&amp;width=1024" alt="" srcset="//leevje.com/cdn/shop/files/present_1024x1024_c1ab6a13-cc2b-4d1d-85ee-b30bb8c07e06.png?v=1770890628&amp;width=64 64w, //leevje.com/cdn/shop/files/present_1024x1024_c1ab6a13-cc2b-4d1d-85ee-b30bb8c07e06.png?v=1770890628&amp;width=128 128w" width="1024" height="1024" loading="lazy" sizes="64px" class="constrained-image" style="--image-mobile-max-width: 64px; --image-max-width: 64px"><div class="v-stack gap-2 text-center sm:text-center"><p class="h6">nachhaltig und mit liebe verpackt</p></div></div>
            </div><div class="text-with-icons__item  snap-center" role="group" aria-label="Element 4 von 4" >
              <div class="v-stack gap-6 justify-items-center sm:justify-items-center"><img src="//leevje.com/cdn/shop/files/review_1024x1024_f74e8770-4355-4661-9ad8-e76edbf3dd30.webp?v=1770890627&amp;width=1003" alt="" srcset="//leevje.com/cdn/shop/files/review_1024x1024_f74e8770-4355-4661-9ad8-e76edbf3dd30.webp?v=1770890627&amp;width=64 64w, //leevje.com/cdn/shop/files/review_1024x1024_f74e8770-4355-4661-9ad8-e76edbf3dd30.webp?v=1770890627&amp;width=128 128w" width="1003" height="1024" loading="lazy" sizes="64px" class="constrained-image" style="--image-mobile-max-width: 64px; --image-max-width: 64px"><div class="v-stack gap-2 text-center sm:text-center"><p class="h6">100% Zufriedenheitsgarantie</p></div></div>
            </div></text-with-icons-carousel><carousel-navigation aria-controls="text-with-icons-template--19464376811786__text_with_icons_zBMnQt" class="page-dots sm:hidden"><button class="tap-area" aria-current="true">
                  <span class="sr-only">Gehe zu Element 1</span>
                </button><button class="tap-area" aria-current="false">
                  <span class="sr-only">Gehe zu Element 2</span>
                </button><button class="tap-area" aria-current="false">
                  <span class="sr-only">Gehe zu Element 3</span>
                </button><button class="tap-area" aria-current="false">
                  <span class="sr-only">Gehe zu Element 4</span>
                </button></carousel-navigation></div>
    </div>
  </div></section><div id="shopify-section-template--19464376811786__ed_map_jUT7ct" class="shopify-section shopify-section__featured-map ed-shopify-section__featured-map shopify-section--bordered">

<section class="Section Section--spacingNormal" id="section-template--19464376811786__ed_map_jUT7ct" data-section-type="map"
         data-section-id="template--19464376811786__ed_map_jUT7ct" data-section-settings='
    {
    &quot;apiKey&quot;: &quot;&quot;,
    &quot;mapAddress&quot;: &quot;Rothenburg 48, 48143 Münster&quot;,
    &quot;zoom&quot;: 14,
    &quot;markerColor&quot;: &quot;#000000&quot;
    }
'>
    <div class="Container">
        <div class="FeaturedMap">
            <div class="FeaturedMap__Info">
                
                    <p class="FeaturedMap__Store h2">Im Herzen Münsters</p>
                

                
                    <div class="FeaturedMap__Address Rte">
                        <p>Rothenburg 48, 48143 Münster</p>
                    </div>
                

                
                    <div class="FeaturedMap__Hours Rte">
                        <p>Besuche uns doch gerne mal in unserem Store und erlebe leevje vor Ort. Du wirst hier von unserem Storeteam in allen Anliegen ganz liebevoll beraten.</p>
                    </div>
                

                
                    <a href="https://maps.google.com?daddr=Rothenburg 48, 48143 Münster" target="_blank"
                       rel="nofollow" class="FeaturedMap__Location button">Komm uns Besuchen</a>
                
            </div>

            <div class="FeaturedMap__MapContainer Image--lazyLoad Image--fadeIn"
                 data-bg="//leevje.com/cdn/shop/files/Onlineshop_Foto_1000x1500_61ffe969-92fa-495d-aaf9-fb10fd79093e_1500x.jpg?v=1689591743" style="background-image: url('//leevje.com/cdn/shop/files/Onlineshop_Foto_1000x1500_61ffe969-92fa-495d-aaf9-fb10fd79093e_1500x.jpg?v=1689591743')">
                

                <div class="FeaturedMap__GMap"></div>
            </div>
        </div>
    </div><style>
            .FeaturedMap__Info {
                padding: 0 0 40px 0;
            }

            @media screen and (min-width: 641px) {
                .FeaturedMap__Info {
                    padding-left: 40px;
                }
            }
        </style><script type="application/json" data-gmap-style>[
          {
            "elementType": "geometry",
            "stylers": [{"color": "#f5f5f5"}]
          },
          {
            "elementType": "labels.icon",
            "stylers": [{"visibility": "off"}]
          },
          {
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#616161"}]
          },
          {
            "elementType": "labels.text.stroke",
            "stylers": [{"color": "#f5f5f5"}]
          },
          {
            "featureType": "administrative.land_parcel",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#bdbdbd"}]
          },
          {
            "featureType": "poi",
            "elementType": "geometry",
            "stylers": [{"color": "#eeeeee"}]
          },
          {
            "featureType": "poi",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#757575"}]
          },
          {
            "featureType": "poi.park",
            "elementType": "geometry",
            "stylers": [{"color": "#e5e5e5"}]
          },
          {
            "featureType": "poi.park",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#9e9e9e"}]
          },
          {
            "featureType": "road",
            "elementType": "geometry",
            "stylers": [{"color": "#ffffff"}]
          },
          {
            "featureType": "road.arterial",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#757575"}]
          },
          {
            "featureType": "road.highway",
            "elementType": "geometry",
            "stylers": [{"color": "#dadada"}]
          },
          {
            "featureType": "road.highway",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#616161"}]
          },
          {
            "featureType": "road.local",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#9e9e9e"}]
          },
          {
            "featureType": "transit.line",
            "elementType": "geometry",
            "stylers": [{"color": "#e5e5e5"}]
          },
          {
            "featureType": "transit.station",
            "elementType": "geometry",
            "stylers": [{"color": "#eeeeee"}]
          },
          {
            "featureType": "water",
            "elementType": "geometry",
            "stylers": [{"color": "#c9c9c9"}]
          },
          {
            "featureType": "water",
            "elementType": "labels.text.fill",
            "stylers": [{"color": "#9e9e9e"}]
          }
        ]</script>
</section>

</div><div id="shopify-section-template--19464376811786__ed_newsletter_iCaFHC" class="shopify-section"><div class="ed-newsletter-subscribe ">
  <div class="ed-newsletter-container" style="background: #e2e2e2">
    <div class="ed-newsletter-content">
      <div class="ed-newsletter-left-column">
        
          <div class="ed-newsletter-badge">Erhalte 10% Rabatt</div>
        
        
          <h2 class="ed-newsletter-title">Komm in den LEEVJE Club</h2>
        
        
          <p class="ed-newsletter-text">Verpasse mit unserem Newsletter keine Neuigkeiten mehr. Du erfährst als eine*r der Ersten von Angeboten und neuen Artikeln. Zusätzlich erhältst Du direkt nach Deiner Anmeldung zu unserem Newsletter einen 10% Rabattcode für Deinen ersten Einkauf bei uns.</p>
        

        <form method="post" action="/contact#ContactFooter" accept-charset="UTF-8" class="newsletter-form">
          <input type="hidden" name="form_type" value="customer">
          <input type="hidden" name="utf8" value="✓">
          <input type="email" name="contact[email]" placeholder="E-Mail Adresse" required>
          <button type="submit" class="button">Jetzt anmelden</button>
        </form>

        <ul class="ed-newsletter-bullet-points">
          
            <li><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path d="M14.9687 3.87501L13.2187 2.12501C13.1603 2.06775 13.0818 2.03568 13 2.03568C12.9182 2.03568 12.8396 2.06775 12.7812 2.12501L5.40622 9.50001C5.34781 9.55726 5.26927 9.58934 5.18747 9.58934C5.10568 9.58934 5.02714 9.55726 4.96872 9.50001L3.21872 7.75001C3.16031 7.69275 3.08177 7.66068 2.99997 7.66068C2.91818 7.66068 2.83964 7.69275 2.78122 7.75001L1.03122 9.50001C0.973966 9.55842 0.941895 9.63696 0.941895 9.71876C0.941895 9.80055 0.973966 9.87909 1.03122 9.93751L4.96872 13.875C5.02714 13.9323 5.10568 13.9643 5.18747 13.9643C5.26927 13.9643 5.34781 13.9323 5.40622 13.875L14.9687 4.31251C15.026 4.25409 15.0581 4.17555 15.0581 4.09376C15.0581 4.01196 15.026 3.93342 14.9687 3.87501Z" fill="#004F2D"/>
    </svg>Erhalte 10% Rabatt</li>
          
          
            <li><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path d="M14.9687 3.87501L13.2187 2.12501C13.1603 2.06775 13.0818 2.03568 13 2.03568C12.9182 2.03568 12.8396 2.06775 12.7812 2.12501L5.40622 9.50001C5.34781 9.55726 5.26927 9.58934 5.18747 9.58934C5.10568 9.58934 5.02714 9.55726 4.96872 9.50001L3.21872 7.75001C3.16031 7.69275 3.08177 7.66068 2.99997 7.66068C2.91818 7.66068 2.83964 7.69275 2.78122 7.75001L1.03122 9.50001C0.973966 9.55842 0.941895 9.63696 0.941895 9.71876C0.941895 9.80055 0.973966 9.87909 1.03122 9.93751L4.96872 13.875C5.02714 13.9323 5.10568 13.9643 5.18747 13.9643C5.26927 13.9643 5.34781 13.9323 5.40622 13.875L14.9687 4.31251C15.026 4.25409 15.0581 4.17555 15.0581 4.09376C15.0581 4.01196 15.026 3.93342 14.9687 3.87501Z" fill="#004F2D"/>
    </svg>100% Kostenlos</li>
          
          
            <li><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path d="M14.9687 3.87501L13.2187 2.12501C13.1603 2.06775 13.0818 2.03568 13 2.03568C12.9182 2.03568 12.8396 2.06775 12.7812 2.12501L5.40622 9.50001C5.34781 9.55726 5.26927 9.58934 5.18747 9.58934C5.10568 9.58934 5.02714 9.55726 4.96872 9.50001L3.21872 7.75001C3.16031 7.69275 3.08177 7.66068 2.99997 7.66068C2.91818 7.66068 2.83964 7.69275 2.78122 7.75001L1.03122 9.50001C0.973966 9.55842 0.941895 9.63696 0.941895 9.71876C0.941895 9.80055 0.973966 9.87909 1.03122 9.93751L4.96872 13.875C5.02714 13.9323 5.10568 13.9643 5.18747 13.9643C5.26927 13.9643 5.34781 13.9323 5.40622 13.875L14.9687 4.31251C15.026 4.25409 15.0581 4.17555 15.0581 4.09376C15.0581 4.01196 15.026 3.93342 14.9687 3.87501Z" fill="#004F2D"/>
    </svg>Keine Angebote Verpassen</li>
          
        </ul>
      </div>

      
        <div class="ed-newsletter-right-column">
          <img src="//leevje.com/cdn/shop/files/leevje_sommer26_verkleinert-381_800x.jpg?v=1770811661" alt="Newsletter Image">
        </div>
      
    </div>
  </div>
</div>



</div>
<div class="header-style-trusted-bd ed-header-style-trusted-bd">

    <hr style="opacity: 0.3; margin-bottom:44px;">

    <h2 class="" style="text-align: center;">UNSERE BEWERTUNGEN</h2>

</div>

<div class="container-bd-tr">


  <div class="trustedshops-bd">

    <img class="trustedshops-logo" src="https://cdn.shopify.com/s/files/1/0079/3480/4027/files/reviewsio-icon.svg?v=1698765298" >


    <div class="rating">
      <div class="stars">

        <span class="star active">★</span>

        <span class="star active">★</span>

        <span class="star active">★</span>

        <span class="star active">★</span>

        <span class="star active">★</span>

      </div>

    </div>
    <div class="trustedshops-bd-summary"><b>4,90</b> / <b>5,0</b> basierend auf über <b> 2.000 </b> Bewertungen</div>
  </div>
</div>
    <!-- Klaviyo Back in Stock -->

<script src="https://a.klaviyo.com/media/js/onsite/onsite.js"></script>
<script>
  var klaviyo = klaviyo || [];
  klaviyo.init({
    account: "WvDG3q",
    platform: "shopify",
    include_on_tags: 'stockbutton'
  });
  klaviyo.enable("backinstock",{
    trigger: {
      product_page_text: "Benachrichtigt mich!",
      product_page_class: "btn",
      product_page_text_align: "center",
      product_page_margin: "0px",
      replace_anchor: false
    },
    modal: {
      headline: "{product_name}",
      body_content: "Trage Dich ein, um eine Benachrichtigung zu erhalten, wenn dieser Artikel wieder auf Lager ist.",
      email_field_label: "E-Mail",
      button_label: "Benachrichtigen, wenn wieder verfügbar",
      subscription_success_label: "Du hast dich erfolgreich angemeldet! Wir geben Dir Bescheid, wenn dein gewünschtes Produkt wieder verfügbar ist.",
      footer_content: '',
      additional_styles: "@import url('https://fonts.googleapis.com/css?family=Helvetica+Neue'); .btn-lg {font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;} @media screen and (max-width: 389px) { .btn-lg {font-size: 10px;} }",
      drop_background_color: "#000",
      background_color: "#fff",
      text_color: "#222",
      button_text_color: "#ffffff",
      button_background_color: "#dcbd9e",
      close_button_color: "#ccc",
      error_background_color: "#fcd6d7",
      error_text_color: "#C72E2F",
      success_background_color: "#d3efcd",
      success_text_color: "#1B9500"
    }
  });
</script>


<!-- Klaviyo Back in Stock END -->
<!-- BEGIN sections: footer-group -->
<footer id="shopify-section-sections--19464376090890__footer" class="shopify-section shopify-section-group-footer-group shopify-section--footer"><style>
  #shopify-section-sections--19464376090890__footer {
    --footer-content-justify-items: space-between;
  }
</style><div class="ed-shopify-section--footer footer color-scheme color-scheme--scheme-2 color-scheme--bg-54922f2e920ba8346f6dc0fba343d673 ">
  <div class="container">
    <div class="footer__inner"><div class="footer__block-list"><div class="footer__block footer__block--links" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Informationen</p><ul class="v-stack gap-2.5 unstyled-list" role="list"><li>
                            <a href="/pages/uber-leevje" class="link-faded">About Us</a>
                          </li><li>
                            <a href="/pages/ask-a-question" class="link-faded">Kontakt</a>
                          </li><li>
                            <a href="/pages/newsletter" class="link-faded">Newsletter</a>
                          </li><li>
                            <a href="https://leevje.com/pages/store-locator" class="link-faded">Händlersuche</a>
                          </li><li>
                            <a href="/pages/versand-lieferung-retoure" class="link-faded">Versand, Lieferung & Retoure</a>
                          </li><li>
                            <a href="/pages/faq-2" class="link-faded">FAQ</a>
                          </li><li>
                            <a href="/pages/jobs" class="link-faded">Jobs</a>
                          </li></ul>
                    </div>
              </div><div class="footer__block footer__block--links" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Rechtliches</p><ul class="v-stack gap-2.5 unstyled-list" role="list"><li>
                            <a href="/policies/legal-notice" class="link-faded">Impressum</a>
                          </li><li>
                            <a href="/policies/terms-of-service" class="link-faded">AGB und Kundeninformationen</a>
                          </li><li>
                            <a href="/policies/refund-policy" class="link-faded">Widerrufsrecht</a>
                          </li><li>
                            <a href="/policies/privacy-policy" class="link-faded">Datenschutzerklärung</a>
                          </li></ul>
                    </div>
              </div><div class="footer__block footer__block--text" ><div class="v-stack gap-4 sm:gap-5"><p class="h6">Kontakt</p><div class="prose text-subdued"><p>E-Mail: <a href="mailto:hallo@leevje.com"> hallo@leevje.com</a><a href="tel:+49(0)25137401853"> </a><br/></p><p>Händleranfrage: <a href="mailto:annamarie@leevje.com" target="_blank" title="mailto:annamarie@leevje.com">annamarie@leevje.com</a><br/></p></div></div>
<ul class=" HorizontalList ">
    <li class="HorizontalList__Item">
      <a href="https://www.facebook.com/leevjedesign" class="Link Link--primary" target="_blank" rel="noopener" aria-label="Facebook">
        <span class="Icon-Wrapper--clickable"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-facebook" viewBox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
    </svg></span>
      </a>
    </li>

    
<li class="HorizontalList__Item">
      <a href="https://www.instagram.com/leevje_design/" class="Link Link--primary" target="_blank" rel="noopener" aria-label="Instagram">
        <span class="Icon-Wrapper--clickable"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-instagram" viewBox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
    </svg></span>
      </a>
    </li>

    
<li class="HorizontalList__Item">
      <a href="https://www.pinterest.de/0i7q8m6xq7ydk2m5zn93303vqoxl69/" class="Link Link--primary" target="_blank" rel="noopener" aria-label="Pinterest">
        <span class="Icon-Wrapper--clickable"><svg aria-hidden="true" focusable="false" width="24" class="icon icon-pinterest" viewBox="0 0 24 24">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M11.765 2.401c3.59-.054 5.837 1.4 6.895 3.95.349.842.722 2.39.442 3.675-.112.512-.144 1.048-.295 1.53-.308.983-.708 1.853-1.238 2.603-.72 1.02-1.81 1.706-3.182 2.052-1.212.305-2.328-.152-2.976-.643-.206-.156-.483-.36-.56-.643h-.029c-.046.515-.244 1.062-.383 1.531-.193.65-.23 1.321-.472 1.929a12.345 12.345 0 0 1-.942 1.868c-.184.302-.692 1.335-1.061 1.347-.04-.078-.057-.108-.06-.245-.118-.19-.035-.508-.087-.766-.082-.4-.145-1.123-.06-1.53v-.643c.096-.442.092-.894.207-1.317.25-.92.39-1.895.648-2.848.249-.915.477-1.916.678-2.847.045-.21-.21-.815-.265-1.041-.174-.713-.042-1.7.176-2.236.275-.674 1.08-1.703 2.122-1.439.838.212 1.371 1.118 1.09 2.266-.295 1.205-.677 2.284-.943 3.49-.068.311.05.641.118.827.248.672 1 1.324 2.004 1.072 1.52-.383 2.193-1.76 2.652-3.246.124-.402.109-.781.206-1.225.204-.935.118-2.331-.177-3.061-.472-1.17-1.353-1.92-2.563-2.328L12.707 4.3c-.56-.128-1.626.064-2.004.183-1.69.535-2.737 1.427-3.388 3.032-.222.546-.344 1.1-.383 1.868l-.03.276c.13.686.144 1.14.413 1.653.132.252.447.451.5.765.032.185-.104.464-.147.613-.065.224-.041.48-.147.673-.192.349-.714.087-.943-.061-1.192-.77-2.175-2.995-1.62-5.144.085-.332.09-.62.206-.919.723-1.844 1.802-2.978 3.359-3.95.583-.364 1.37-.544 2.092-.734l1.149-.154Z" fill="currentColor"/>
    </svg></span>
      </a>
    </li>

    

  </ul>
              </div></div>
      <div class="ed-footer-language-switcher">
          <span class="ly-custom-340"></span>
      </div>
    
<div class="localization-selectors"><div class="relative">
      <button type="button" class="localization-toggle heading text-xxs link-faded" aria-controls="popover-localization--sections--19464376090890__footer-country" aria-expanded="false"><span>EUR €</span><svg aria-hidden="true" focusable="false" fill="none" width="10" class="icon icon-chevron-down" viewBox="0 0 10 10">
      <path d="m1 3 4 4 4-4" stroke="currentColor" stroke-linecap="square"/>
    </svg></button>

      <x-popover id="popover-localization--sections--19464376090890__footer-country" initial-focus="[aria-selected='true']" class="popover popover--top-start color-scheme color-scheme--dialog">
        <p class="h4" slot="header">Land</p><form method="post" action="/localization" id="localization-form--sections--19464376090890__footer-country" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/.json" /><x-listbox class="popover__value-list">
<button type="submit" name="country_code" class="h-stack gap-2.5" role="option" value="DE" aria-selected="true"><span>Deutschland (EUR €)</span>
                  </button>
<button type="submit" name="country_code" class="h-stack gap-2.5" role="option" value="CH" aria-selected="false"><span>Schweiz (CHF CHF)</span>
                  </button></x-listbox></form></x-popover>
    </div></div><div class="footer__aside">
        <div class="Footer__Copyright">
          <a href="/" class="Footer__StoreName Heading u-h7 Link Link--secondary">© leevje - design for loved ones</a>
          <p class="Footer__ThemeAuthor">Designed with ❤️ in Münster</p>
        </div><div class="ed-payment-icons">
  

  
    <ul class="Footer__PaymentList HorizontalList">
      
    
      
      <li class="HorizontalList__Item" style=""><svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
</li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
</li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg xmlns="http://www.w3.org/2000/svg" aria-labelledby="pi-bancontact" role="img" viewBox="0 0 38 24" width="38" height="24"><title id="pi-bancontact">Bancontact</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M4.703 3.077h28.594c.139 0 .276.023.405.068.128.045.244.11.343.194a.9.9 0 0 1 .229.29c.053.107.08.223.08.34V20.03a.829.829 0 0 1-.31.631 1.164 1.164 0 0 1-.747.262H4.703a1.23 1.23 0 0 1-.405-.068 1.09 1.09 0 0 1-.343-.194.9.9 0 0 1-.229-.29.773.773 0 0 1-.08-.34V3.97c0-.118.027-.234.08-.342a.899.899 0 0 1 .23-.29c.098-.082.214-.148.342-.193a1.23 1.23 0 0 1 .405-.068Z" fill="#fff"/><path d="M6.38 18.562v-3.077h1.125c.818 0 1.344.259 1.344.795 0 .304-.167.515-.401.638.338.132.536.387.536.734 0 .62-.536.91-1.37.91H6.38Zm.724-1.798h.537c.328 0 .468-.136.468-.387 0-.268-.255-.356-.599-.356h-.406v.743Zm0 1.262h.448c.438 0 .693-.093.693-.383 0-.286-.219-.404-.63-.404h-.51v.787Zm3.284.589c-.713 0-1.073-.295-1.073-.69 0-.436.422-.69 1.047-.695.156.002.31.014.464.035v-.105c0-.269-.183-.396-.531-.396a2.128 2.128 0 0 0-.688.105l-.13-.474a3.01 3.01 0 0 1 .9-.132c.767 0 1.147.343 1.147.936v1.222c-.214.093-.615.194-1.136.194Zm.438-.497v-.47a2.06 2.06 0 0 0-.37-.036c-.24 0-.427.08-.427.286 0 .185.156.281.432.281a.947.947 0 0 0 .365-.061Zm1.204.444v-2.106a3.699 3.699 0 0 1 1.177-.193c.76 0 1.198.316 1.198.9v1.399h-.719v-1.354c0-.303-.167-.444-.484-.444a1.267 1.267 0 0 0-.459.079v1.719h-.713Zm4.886-2.167-.135.479a1.834 1.834 0 0 0-.588-.11c-.422 0-.652.25-.652.664 0 .453.24.685.688.685.2-.004.397-.043.578-.114l.115.488a2.035 2.035 0 0 1-.75.128c-.865 0-1.365-.453-1.365-1.17 0-.712.495-1.182 1.323-1.182.27-.001.538.043.787.132Zm1.553 2.22c-.802 0-1.302-.47-1.302-1.178 0-.704.5-1.174 1.302-1.174.807 0 1.297.47 1.297 1.173 0 .708-.49 1.179-1.297 1.179Zm0-.502c.37 0 .563-.259.563-.677 0-.413-.193-.672-.563-.672-.364 0-.568.26-.568.672 0 .418.204.677.568.677Zm1.713.449v-2.106a3.699 3.699 0 0 1 1.177-.193c.76 0 1.198.316 1.198.9v1.399h-.719v-1.354c0-.303-.166-.444-.484-.444a1.268 1.268 0 0 0-.459.079v1.719h-.713Zm3.996.053c-.62 0-.938-.286-.938-.866v-.95h-.354v-.484h.355v-.488l.718-.03v.518h.578v.484h-.578v.94c0 .256.125.374.36.374.093 0 .185-.008.276-.026l.036.488c-.149.028-.3.041-.453.04Zm1.814 0c-.713 0-1.073-.295-1.073-.69 0-.436.422-.69 1.047-.695.155.002.31.014.464.035v-.105c0-.269-.183-.396-.532-.396a2.128 2.128 0 0 0-.687.105l-.13-.474a3.01 3.01 0 0 1 .9-.132c.766 0 1.146.343 1.146.936v1.222c-.213.093-.614.194-1.135.194Zm.438-.497v-.47a2.06 2.06 0 0 0-.37-.036c-.24 0-.427.08-.427.286 0 .185.156.281.432.281a.946.946 0 0 0 .365-.061Zm3.157-1.723-.136.479a1.834 1.834 0 0 0-.588-.11c-.422 0-.651.25-.651.664 0 .453.24.685.687.685.2-.004.397-.043.578-.114l.115.488a2.035 2.035 0 0 1-.75.128c-.865 0-1.365-.453-1.365-1.17 0-.712.495-1.182 1.323-1.182.27-.001.538.043.787.132Zm1.58 2.22c-.62 0-.938-.286-.938-.866v-.95h-.354v-.484h.354v-.488l.72-.03v.518h.577v.484h-.578v.94c0 .256.125.374.36.374.092 0 .185-.008.276-.026l.036.488c-.149.028-.3.041-.453.04Z" fill="#1E3764"/><path d="M11.394 13.946c3.803 0 5.705-2.14 7.606-4.28H6.38v4.28h5.014Z" fill="url(#pi-bancontact-a)"/><path d="M26.607 5.385c-3.804 0-5.705 2.14-7.607 4.28h12.62v-4.28h-5.013Z" fill="url(#pi-bancontact-b)"/><defs><linearGradient id="pi-bancontact-a" x1="8.933" y1="12.003" x2="17.734" y2="8.13" gradientUnits="userSpaceOnUse"><stop stop-color="#005AB9"/><stop offset="1" stop-color="#1E3764"/></linearGradient><linearGradient id="pi-bancontact-b" x1="19.764" y1="10.037" x2="29.171" y2="6.235" gradientUnits="userSpaceOnUse"><stop stop-color="#FBA900"/><stop offset="1" stop-color="#FFD800"/></linearGradient></defs></svg></li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-eps"> <title id="pi-eps">EPS</title> <path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" opacity=".07"/> <path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#fff"/> <path fill="#71706f" d="M27.745 12.32h-2.322a.465.465 0 01-.468-.464c0-.258.21-.484.468-.484h3.535V9.628h-3.535c-1.233 0-2.237 1.006-2.237 2.236s1.004 2.237 2.237 2.237h2.29c.259 0 .469.205.469.462 0 .258-.21.448-.468.448h-4.912c-.417.796-.822 1.478-1.645 1.82h6.588c1.213-.018 2.205-1.045 2.205-2.265 0-1.22-.992-2.23-2.205-2.247z"/> <path fill="#71706f" d="M18.845 9.628c-1.968 0-3.571 1.612-3.571 3.594V20.697h1.782V16.83h1.785c1.968 0 3.565-1.634 3.565-3.615 0-1.98-1.593-3.587-3.561-3.587zm0 5.383h-1.79v-1.796c0-1.003.8-1.82 1.79-1.82s1.796.817 1.796 1.82a1.79 1.79 0 01-1.796 1.796z"/> <path fill="#c8036f" d="M9.634 16.83c-1.685 0-3.101-1.2-3.484-2.768 0 0-.111-.519-.111-.86 0-.342.105-.865.105-.865a3.594 3.594 0 013.482-2.73c1.978 0 3.6 1.608 3.6 3.586v.87H7.973c.31.607.938.948 1.662.948h4.724l.006-5.13c0-.764-.625-1.39-1.39-1.39H6.278c-.764 0-1.39.607-1.39 1.371v6.696c0 .765.626 1.41 1.39 1.41h6.696c.686 0 1.259-.493 1.37-1.138h-4.71z"/> <path fill="#c8036f" d="M9.626 11.31c-.72 0-1.348.44-1.66 1.01h3.32c-.312-.57-.939-1.01-1.66-1.01zM12.659 6.314c0-1.635-1.359-2.96-3.034-2.96-1.647 0-2.987 1.282-3.031 2.879v.91c0 .106.086.21.195.21h1.116c.11 0 .205-.104.205-.21v-.83c0-.815.68-1.48 1.516-1.48.837 0 1.516.665 1.516 1.48v.83c0 .106.089.21.198.21h1.116c.109 0 .202-.104.202-.21v-.83z"/> <g> <path fill="#71706f" d="M20.843 19.142l-.16.914c-.082.462-.384.673-.794.673-.347 0-.616-.226-.538-.672l.161-.914h.249l-.161.913c-.05.285.078.447.32.447.249 0 .462-.148.513-.446l.161-.915h.25zm-.977-.285c0 .076.059.112.121.112.079 0 .164-.057.164-.162 0-.074-.05-.112-.114-.112-.08 0-.17.052-.17.162zm.538-.003c0 .079.06.114.126.114.07 0 .161-.056.161-.159 0-.074-.054-.114-.114-.114-.08 0-.173.052-.173.16zM21.445 19.142l-.112.632a.57.57 0 01.423-.199c.278 0 .47.163.47.465 0 .428-.297.686-.678.686-.148 0-.274-.055-.35-.194l-.042.165h-.218l.276-1.554h.23zm-.175 1.066c-.01.183.11.302.282.302a.444.444 0 00.441-.423c.01-.186-.111-.296-.28-.296a.45.45 0 00-.443.417zM22.68 20.242c-.01.151.11.275.311.275.112 0 .26-.044.34-.12l.126.145a.782.782 0 01-.508.188c-.319 0-.505-.19-.505-.482 0-.388.305-.677.695-.677.356 0 .558.216.437.67h-.896zm.708-.19c.018-.19-.094-.267-.28-.267-.168 0-.323.078-.39.267h.67zM24.193 19.597l-.012.146a.414.414 0 01.357-.17c.107 0 .204.039.255.095l-.139.201a.244.244 0 00-.183-.067.346.346 0 00-.352.3l-.106.595h-.23l.195-1.1h.215zM25.905 19.597l.116.87.422-.87h.257l-.578 1.1h-.27l-.11-.725-.178.36-.192.365h-.27l-.194-1.1h.26l.114.87.424-.87h.199zM26.997 20.242c-.01.151.11.275.311.275.112 0 .26-.044.34-.12l.126.145a.782.782 0 01-.508.188c-.319 0-.505-.19-.505-.482 0-.388.305-.677.695-.677.356 0 .558.216.437.67h-.896zm.708-.19c.018-.19-.094-.267-.28-.267-.168 0-.323.078-.39.267h.67zM28.525 19.597l-.194 1.1H28.1l.195-1.1h.23zm-.204-.3c0 .08.059.12.121.12.09 0 .173-.059.173-.168a.113.113 0 00-.117-.117c-.082 0-.177.054-.177.166zM29.55 19.87c-.072-.081-.164-.104-.274-.104-.152 0-.26.052-.26.148 0 .08.088.114.218.126.201.017.459.085.405.37-.038.205-.244.326-.53.326-.18 0-.353-.04-.47-.204l.151-.163c.083.114.229.161.358.164.11 0 .24-.04.26-.144.02-.098-.067-.136-.228-.152-.188-.018-.394-.087-.394-.296 0-.276.298-.372.522-.372.17 0 .295.038.399.148l-.157.152zM30.278 19.597l-.105.592c-.034.189.051.319.244.319.181 0 .336-.15.367-.334l.101-.576h.231l-.195 1.099h-.208l.015-.16a.573.573 0 01-.412.182c-.271 0-.432-.194-.374-.528l.105-.593h.231zM32.13 20.697l.105-.589c.033-.19-.032-.317-.242-.317-.184 0-.339.148-.37.33l-.1.576h-.232l.195-1.1h.21l-.015.16a.583.583 0 01.403-.176c.27 0 .444.187.384.525l-.106.59h-.233zM32.912 20.848c-.016.152.1.213.296.213.17 0 .354-.095.396-.337l.034-.189c-.1.142-.285.197-.421.197-.283 0-.48-.168-.48-.473 0-.434.323-.685.688-.685.155 0 .294.073.343.199l.038-.176h.224l-.193 1.132c-.071.42-.383.55-.668.55-.34 0-.528-.165-.481-.43h.224zm.065-.633c0 .188.123.302.3.302.477 0 .605-.733.128-.733a.42.42 0 00-.428.43z"/></g></svg></li>
    
      
      <li class="HorizontalList__Item" style=""><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
</li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-spidealwero"><title id="pi-spidealwero">iDEAL Wero</title><path opacity="0.07" d="M35 0H3C1.3 0 0 1.3 0 3V21C0 22.7 1.4 24 3 24H35C36.7 24 38 22.7 38 21V3C38 1.3 36.6 0 35 0Z" fill="black"/><path d="M35 1C36.1 1 37 1.9 37 3V21C37 22.1 36.1 23 35 23H3C1.9 23 1 22.1 1 21V3C1 1.9 1.9 1 3 1H35Z" fill="#FFF48D"/><path d="M3.45001 7.43572V17.0022C3.45001 17.4602 3.82664 17.8347 4.28673 17.8347H10.0301C14.3722 17.8347 16.2539 15.4157 16.2539 12.2063C16.2539 8.99693 14.3715 6.60321 10.0294 6.60321H4.28603C3.82594 6.60321 3.44931 6.97773 3.44931 7.43572H3.45001Z" fill="white"/><path d="M7.29413 8.95133V16.0203H10.385C13.1918 16.0203 14.4087 14.4422 14.4087 12.2112C14.4087 9.98022 13.1911 8.41901 10.385 8.41901H7.82926C7.53259 8.41901 7.29413 8.66027 7.29413 8.95204V8.95133Z" fill="#CC0066"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5.03507 17.073H10.0294C13.539 17.073 15.4754 15.3456 15.4754 12.2105C15.4754 10.4038 14.7685 7.36908 10.0294 7.36908H5.03507C4.59182 7.36908 4.23203 7.72677 4.23203 8.16862V16.2742C4.23203 16.7153 4.59182 17.0737 5.03507 17.0737V17.073ZM4.49924 8.16862C4.49924 7.87335 4.7377 7.63559 5.03437 7.63559H10.0287C11.9609 7.63559 15.2068 8.23104 15.2068 12.2105C15.2068 15.1744 13.3665 16.8065 10.0287 16.8065H5.03507C4.7384 16.8065 4.49994 16.5694 4.49994 16.2735V8.16862H4.49924Z" fill="#232323"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.81464 11.1831C8.72066 11.1494 8.62247 11.1326 8.51586 11.1326V11.1284H7.8082V12.8355H8.52428C8.65122 12.8355 8.76134 12.8102 8.85602 12.7681C8.95 12.7218 9.02785 12.6629 9.08957 12.5872C9.15129 12.5114 9.19618 12.4188 9.22844 12.3136C9.25719 12.2084 9.27332 12.0948 9.27332 11.9686C9.27332 11.8255 9.25299 11.7035 9.21581 11.5983C9.17514 11.4973 9.12183 11.4089 9.05661 11.3374C8.98717 11.27 8.90932 11.2153 8.81534 11.1817L8.81464 11.1831ZM8.64702 12.4995C8.59371 12.5163 8.54462 12.5248 8.49132 12.5248V12.529H8.16799V11.4524H8.4296C8.51937 11.4524 8.59301 11.465 8.65473 11.4903C8.71645 11.5155 8.76554 11.5576 8.80201 11.6039C8.83849 11.6502 8.86724 11.7133 8.88407 11.7806C8.9002 11.8479 8.90862 11.9279 8.90862 12.0121C8.90862 12.1088 8.896 12.1846 8.87215 12.2519C8.85108 12.3106 8.81921 12.3649 8.77817 12.4118C8.74305 12.4524 8.69779 12.4829 8.64702 12.5002V12.4995Z" fill="white"/><path d="M10.7504 11.1333V11.4489H9.87441V11.815H10.6803V12.1053H9.87441V12.5219H10.7707V12.8376H9.51041V11.1305H10.7504V11.1347V11.1333Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.6244 12.8404L12.0023 11.1333H11.6222L10.9958 12.8404H11.3641L11.4952 12.4616H12.1173L12.2443 12.8404H12.6251H12.6244ZM11.8136 11.5534L12.0226 12.1797H11.5934L11.8101 11.5534H11.8143H11.8136Z" fill="white"/><path d="M13.2178 11.1325V12.5247H14.0278V12.8403H12.8538V11.1332H13.2178V11.1325Z" fill="white"/><path d="M5.85774 12.8656C6.30099 12.8656 6.66009 12.5065 6.66009 12.0625C6.66009 11.6186 6.30099 11.2595 5.85774 11.2595C5.41448 11.2595 5.05539 11.6186 5.05539 12.0625C5.05539 12.5065 5.41448 12.8656 5.85774 12.8656ZM6.33536 16.0771C5.71396 16.0771 5.216 15.5406 5.216 14.8813V13.9478C5.216 13.6181 5.46498 13.3474 5.77778 13.3474C6.09059 13.3474 6.33957 13.6139 6.33957 13.9478V16.0771H6.33536Z" fill="#232323"/><path d="M31.45 12.2209C31.45 11.1773 32.1926 10.2264 33.4749 10.2264C34.7572 10.2264 35.5053 11.178 35.5053 12.2209C35.5053 13.2638 34.7627 14.2154 33.4749 14.2154C32.1926 14.2154 31.45 13.2638 31.45 12.2209ZM34.3782 12.2209C34.3782 11.7178 34.0467 11.2537 33.4749 11.2537C32.9032 11.2537 32.5717 11.7186 32.5717 12.2209C32.5717 12.7232 32.9086 13.1889 33.4749 13.1889C34.0412 13.1889 34.3782 12.724 34.3782 12.2209ZM30.6615 12.9619C31.0889 12.7185 31.3455 12.2537 31.3455 11.7404C31.3455 10.9784 30.7948 10.3294 29.94 10.3294H28.1452V14.1132H29.2567V13.146H29.4649L30.1006 14.1132H31.4095L30.6615 12.9619ZM29.7161 12.2747H29.2567V11.2046H29.7216C30.0211 11.2046 30.213 11.4479 30.213 11.7396C30.213 12.0314 30.0148 12.2747 29.7161 12.2747ZM23.0713 10.3247L22.4044 12.5797L21.7539 10.3247H20.8686L20.2126 12.5797L19.5511 10.3247H18.378L19.722 14.1015H20.6868L21.3108 12.0454L21.9294 14.1015H22.8997L24.2436 10.3247H23.0705H23.0713ZM25.9261 13.1795H25.9237C25.508 13.1795 25.2163 12.9284 25.0915 12.5961H27.9159C27.9385 12.4713 27.9502 12.3434 27.9502 12.2139C27.9502 11.1734 27.21 10.2241 25.9261 10.2233V11.2482C26.3442 11.249 26.6328 11.5002 26.7568 11.8317H23.9363C23.9137 11.9565 23.902 12.0844 23.902 12.2139C23.902 13.2552 24.643 14.2052 25.923 14.2052H25.9253V13.1795H25.9261Z" fill="#1D1C1C"/><path d="M25.9237 14.2044C25.9674 14.2044 26.0103 14.2029 26.0524 14.2013C26.3122 14.188 26.5485 14.135 26.7591 14.05C26.9697 13.965 27.1546 13.8472 27.3114 13.7052C27.4673 13.5644 27.5983 13.3982 27.699 13.2138C27.7903 13.0469 27.8574 12.8667 27.8995 12.6787H26.7225C26.6983 12.7287 26.6702 12.777 26.6382 12.8215C26.5945 12.8831 26.5431 12.9385 26.4846 12.9861C26.4261 13.0344 26.3605 13.075 26.2888 13.1062C26.217 13.1374 26.1382 13.1592 26.0532 13.1709C26.0119 13.1764 25.969 13.1795 25.9245 13.1795C25.6601 13.1795 25.4456 13.0773 25.2919 12.9174L24.5268 13.6912C24.8668 14.0055 25.3387 14.2036 25.9237 14.2036V14.2044Z" fill="#1D1C1C"/><path d="M25.9237 10.2225C24.838 10.2225 24.1399 10.9058 23.9535 11.7482H25.1266C25.267 11.4581 25.5431 11.2475 25.9237 11.2475C26.2272 11.2475 26.4627 11.3785 26.6164 11.5766L27.3886 10.7958C27.0438 10.4464 26.5477 10.2225 25.9245 10.2225H25.9237Z" fill="#1D1C1C"/><path d="M17.3927 16.431C17.3069 16.431 17.2367 16.3608 17.2367 16.275V8.16296C17.2367 8.07716 17.3069 8.00696 17.3927 8.00696C17.4785 8.00696 17.5487 8.07716 17.5487 8.16296V16.275C17.5487 16.3608 17.4785 16.431 17.3927 16.431Z" fill="#1D1C1C"/></svg></li>
    
      
      <li class="HorizontalList__Item" style=""><svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg></li>
    
      
      <li class="HorizontalList__Item" style=""><svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg></li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
</li>
    
      
      <li class="HorizontalList__Item" style="display: none;"><svg viewBox="-36 25 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-unionpay"><title id="pi-unionpay">Union Pay</title><path fill="#005B9A" d="M-36 46.8v.7-.7zM-18.3 25v24h-7.2c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h1.4zm12.6 0c-1.3 0-2.9 1-3.2 2.3l-4.5 19.4c-.3 1.3.5 2.3 1.8 2.3h-4.9V25h10.8z"/><path fill="#E9292D" d="M-19.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3h-8.9c-.8 0-1.5-.6-1.5-1.4v-21c0-.8.7-1.6 1.5-1.6h14.7z"/><path fill="#0E73B9" d="M-5.7 25c-1.3 0-2.9 1.1-3.2 2.3l-4.4 19.4c-.3 1.3.5 2.3 1.8 2.3H-26h.5c-1.3 0-2.1-1-1.8-2.3l4.4-19.4c.3-1.3 1.9-2.3 3.2-2.3h14z"/><path fill="#059DA4" d="M2 26.6v21c0 .8-.6 1.4-1.5 1.4h-12.1c-1.3 0-2.1-1.1-1.8-2.3l4.5-19.4C-8.6 26-7 25-5.7 25H.5c.9 0 1.5.7 1.5 1.6z"/><path fill="#fff" d="M-21.122 38.645h.14c.14 0 .28-.07.28-.14l.42-.63h1.19l-.21.35h1.4l-.21.63h-1.68c-.21.28-.42.42-.7.42h-.84l.21-.63m-.21.91h3.01l-.21.7h-1.19l-.21.7h1.19l-.21.7h-1.19l-.28 1.05c-.07.14 0 .28.28.21h.98l-.21.7h-1.89c-.35 0-.49-.21-.35-.63l.35-1.33h-.77l.21-.7h.77l.21-.7h-.7l.21-.7zm4.83-1.75v.42s.56-.42 1.12-.42h1.96l-.77 2.66c-.07.28-.35.49-.77.49h-2.24l-.49 1.89c0 .07 0 .14.14.14h.42l-.14.56h-1.12c-.42 0-.56-.14-.49-.35l1.47-5.39h.91zm1.68.77h-1.75l-.21.7s.28-.21.77-.21h1.05l.14-.49zm-.63 1.68c.14 0 .21 0 .21-.14l.14-.35h-1.75l-.14.56 1.54-.07zm-1.19.84h.98v.42h.28c.14 0 .21-.07.21-.14l.07-.28h.84l-.14.49c-.07.35-.35.49-.77.56h-.56v.77c0 .14.07.21.35.21h.49l-.14.56h-1.19c-.35 0-.49-.14-.49-.49l.07-2.1zm4.2-2.45l.21-.84h1.19l-.07.28s.56-.28 1.05-.28h1.47l-.21.84h-.21l-1.12 3.85h.21l-.21.77h-.21l-.07.35h-1.19l.07-.35h-2.17l.21-.77h.21l1.12-3.85h-.28m1.26 0l-.28 1.05s.49-.21.91-.28c.07-.35.21-.77.21-.77h-.84zm-.49 1.54l-.28 1.12s.56-.28.98-.28c.14-.42.21-.77.21-.77l-.91-.07zm.21 2.31l.21-.77h-.84l-.21.77h.84zm2.87-4.69h1.12l.07.42c0 .07.07.14.21.14h.21l-.21.7h-.77c-.28 0-.49-.07-.49-.35l-.14-.91zm-.35 1.47h3.57l-.21.77h-1.19l-.21.7h1.12l-.21.77h-1.26l-.28.42h.63l.14.84c0 .07.07.14.21.14h.21l-.21.7h-.7c-.35 0-.56-.07-.56-.35l-.14-.77-.56.84c-.14.21-.35.35-.63.35h-1.05l.21-.7h.35c.14 0 .21-.07.35-.21l.84-1.26h-1.05l.21-.77h1.19l.21-.7h-1.19l.21-.77zm-19.74-5.04c-.14.7-.42 1.19-.91 1.54-.49.35-1.12.56-1.89.56-.7 0-1.26-.21-1.54-.56-.21-.28-.35-.56-.35-.98 0-.14 0-.35.07-.56l.84-3.92h1.19l-.77 3.92v.28c0 .21.07.35.14.49.14.21.35.28.7.28s.7-.07.91-.28c.21-.21.42-.42.49-.77l.77-3.92h1.19l-.84 3.92m1.12-1.54h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35.14.21.21.49.14.91l-.49 2.38h-.91l.42-2.17c.07-.28.07-.49 0-.56-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.63-3.57m9.8 0h.84l-.07.49.14-.14c.28-.28.63-.42 1.05-.42.35 0 .63.14.77.35s.21.49.14.91l-.49 2.38h-.91l.42-2.24c.07-.21 0-.42-.07-.49-.07-.14-.21-.14-.35-.14-.21 0-.42.07-.56.21-.14.14-.28.35-.28.63l-.42 2.03h-.91l.7-3.57m-5.81 0h.98l-.77 3.5h-.98l.77-3.5m.35-1.33h.98l-.21.84h-.98l.21-.84zm1.4 4.55c-.21-.21-.35-.56-.35-.98v-.21c0-.07 0-.21.07-.28.14-.56.35-1.05.7-1.33.35-.35.84-.49 1.33-.49.42 0 .77.14 1.05.35.21.21.35.56.35.98v.21c0 .07 0 .21-.07.28-.14.56-.35.98-.7 1.33-.35.35-.84.49-1.33.49-.35 0-.7-.14-1.05-.35m1.89-.7c.14-.21.28-.49.35-.84v-.35c0-.21-.07-.35-.14-.49a.635.635 0 0 0-.49-.21c-.28 0-.49.07-.63.28-.14.21-.28.49-.35.84v.28c0 .21.07.35.14.49.14.14.28.21.49.21.28.07.42 0 .63-.21m6.51-4.69h2.52c.49 0 .84.14 1.12.35.28.21.35.56.35.91v.28c0 .07 0 .21-.07.28-.07.49-.35.98-.7 1.26-.42.35-.84.49-1.4.49h-1.4l-.42 2.03h-1.19l1.19-5.6m.56 2.59h1.12c.28 0 .49-.07.7-.21.14-.14.28-.35.35-.63v-.28c0-.21-.07-.35-.21-.42-.14-.07-.35-.14-.7-.14h-.91l-.35 1.68zm8.68 3.71c-.35.77-.7 1.26-.91 1.47-.21.21-.63.7-1.61.7l.07-.63c.84-.28 1.26-1.4 1.54-1.96l-.28-3.78h1.19l.07 2.38.91-2.31h1.05l-2.03 4.13m-2.94-3.85l-.42.28c-.42-.35-.84-.56-1.54-.21-.98.49-1.89 4.13.91 2.94l.14.21h1.12l.7-3.29-.91.07m-.56 1.82c-.21.56-.56.84-.91.77-.28-.14-.35-.63-.21-1.19.21-.56.56-.84.91-.77.28.14.35.63.21 1.19"/></svg></li>
    
      
      <li class="HorizontalList__Item" style=""><svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg></li>
    
  
    </ul>
  
</div>
</div>
    </div>
  </div>
</div>

</footer>
<!-- END sections: footer-group --></main>
  <div class="reviews-io-floating-widget"
     widget-id="BgibQTExM6mJ8sZ5"
     data-store-name="leevje.com"
     lang="de"
></div>
<script src='//widget.reviews.io/modern-widgets/floating.js'></script>

<script>
  document.addEventListener('ed:cart-drawer:state-change', function() {
    setTimeout(() => {
      const cartDrawer = document.getElementById('cart-drawer');
      const reviewsWidget = document.querySelector('.reviews-io-floating-widget');

      if (cartDrawer && reviewsWidget) {
        if (cartDrawer.hasAttribute('open')) {
          reviewsWidget.style.display = 'none';
        } else {
          reviewsWidget.style.display = 'block';
        }
      }
    }, 100);
  });
</script>
  

<script type="text/javascript" src="https://t.adcell.com/js/trad.js?s=shopify&v=1.1.8"></script>
<script>Adcell.Tracking.track();</script><script type="text/javascript" src="https://t.adcell.com/js/inlineretarget.js?s=shopify&v=1.1.8&method=track&pid=8355&type=startpage" async="async"></script>
  <div id="shopify-block-AQm9TRHFSWXVWZkxWc__15316669992541710076" class="shopify-block shopify-app-block"><script defer src="https://widget.reviews.io/rating-snippet/dist.js"></script>
<link rel="stylesheet" href="https://widget.reviews.io/rating-snippet/dist.css" />
<script>
    (function () {
      function initRatingSnippet() {
        var hasStore = typeof reviewsIoStore !== 'undefined' && !!reviewsIoStore;
        if (!hasStore) return;

        if (typeof ratingSnippet !== 'function') return;

        // Ensure the target element exists (rating-output block may render after this app embed).
        if (!document.querySelector('.ruk_rating_snippet')) return;

        var storeOverride = window.__REVIEWSIO_RATING_SNIPPET_STORE_OVERRIDE__;
        var storeForSnippet = storeOverride || reviewsIoStore;

        ratingSnippet("ruk_rating_snippet",{
            store: storeForSnippet,
            color: '#dcbd9e',
            
              textClr: '#1c1c1c',
            
            linebreak: false,
            
            usePolaris: true,
            
            
            
            
            
              text: 'Reviews',
            
            lang: (typeof reviewsIoLang !== 'undefined' && reviewsIoLang) ? reviewsIoLang : 'en',
            mode: 'default',
            showEmptyStars: false,
            
            enableSyndication: (typeof reviewsIoEnableSyndication !== 'undefined') ? reviewsIoEnableSyndication : false
        });

        const reviewsIoModal = document.getElementById('reviews_fade');
        if (reviewsIoModal) {
          reviewsIoModal.classList.add('rio-withoutBranding');
        }
      }

      // Retry to survive slow network/script timing.
      var attempts = 0;
      var MAX_RATING_SNIPPET_INIT_ATTEMPTS = 20;
      var MAX_TIMEOUT_RETRY = 200;
      
      function tick() {
        attempts += 1;
        initRatingSnippet();
        if (attempts < MAX_RATING_SNIPPET_INIT_ATTEMPTS && (typeof ratingSnippet !== 'function' || !document.querySelector('.ruk_rating_snippet'))) {
          window.setTimeout(tick, MAX_TIMEOUT_RETRY);
        }
      }

      // Use window load to maximize chance that the external script executed.
      window.addEventListener('load', tick);
    })();
</script>


</div><div id="shopify-block-AbmZNMkJoZTRRcUIvb__10830403595879607806" class="shopify-block shopify-app-block"><style>
  .rio-withoutBranding .FloatingWidget .R-Logo,
  .rio-withoutBranding .CarouselWidget .R-ReviewsioLogo,
  .rio-withoutBranding .ElementsWidget .footer__reviewsLogo-container,
  .rio-withoutBranding .QnaWidget .footer__reviewsLogo-container,
  .rio-withoutBranding .MediaGalleryWidget-prefix .R-ReviewsioLogo,
  .rio-withoutBranding .RatingBarWidget .R-PlatformIcon {
    display: none !important;
  }
</style>
<script>
  window.__REVIEWS_EDITOR__ = false;
  window.__REVIEWS_DEMO_CONFIG__ = {
    store: 'ecommerce-demo-store',
    sku: 'bunch_of_flowers_sku;blue_flowers_sku;white_flowers_sku;pastel_flowers_sku;summer_selection_sku',
    widgetIds: {
      nuggets: 'W10cpKyjl72VtHv6',
      ugc: '7sG9C5qNeKpvhykZ',
      floating: 'GBvqmKV1Zy9H4Mpd',
      ratingBar: 'pxNMXi7FTlODgr8Q',
      survey: 'uLJcD7bFpGMf1Z0C'
    },
    surveyCampaignId: '392'
  };

  
    var reviewsIoStore = 'leevje.com';
  

  var reviewsIoEnableSyndication = false;

  
    
      
      var reviewsIoLang = 'de';
    
  
</script>

<script defer src="https://cdn.shopify.com/extensions/019d2525-1620-7312-913f-f628fcae3bcb/reviews-co-uk-product-and-merchant-review-collection-54/assets/reviewsio-preview.js"></script>



</div><div id="shopify-block-AM05QbkZpaG5MWU93V__18228966181090706294" class="shopify-block shopify-app-block">

  <script type="module" src="https://cdn.shopify.com/extensions/019d94de-0a31-7ce8-ba0a-39622a054b8e/lb-upsell-288/assets/lb-upsell.js" defer="defer"></script>
  <script type="module" src="https://cdn.shopify.com/extensions/019d94de-0a31-7ce8-ba0a-39622a054b8e/lb-upsell-288/assets/lb-upsell-components.esm.js" defer="defer"></script>


<script>
  
    window.lbupsellToken = "f4bc69ca0f7611dbc0babef5bee77eaf"
  
</script>

<script></script>

<script>
  window.lbComponentSrc = "https://cdn.shopify.com/extensions/019d94de-0a31-7ce8-ba0a-39622a054b8e/lb-upsell-288/assets/lb-upsell-components.esm.js";
</script>

<script type="text/javascript" src="https://cdn.shopify.com/extensions/019d94de-0a31-7ce8-ba0a-39622a054b8e/lb-upsell-288/assets/lb-utils.js" defer="defer"></script>

</div><div id="shopify-block-Ad3BsTFFLOTdHUW5IT__14197025361042770389" class="shopify-block shopify-app-block">

  <script>
    window.WishlistKingAppLoaderURL = "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/app-loader.js";
  </script>
  <script id="wkAppSettings" type="application/json">
    {
      "assets": {
        "themeCssFile": "themes\/prestige-9\/custom.css",
        "localeJsonFile": "locale-de.json",
        "appBaseCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/app-base.css",
        "componentWishlistButtonBlockJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-button-block.js",
        "componentWishlistLinkJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-link.js",
        "componentWishlistLinkCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-link.css",
        "componentWishlistLinkBlockJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-link-block.js",
        "componentWishlistPageBundleJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-page-bundle.js",
        "componentWishlistPageBundleCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-page-bundle.css",
        "componentWishlistLinkFloatingJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-link-floating.js",
        "componentWishlistLinkFloatingCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-link-floating.css",
        "componentWishlistButtonCollectionJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-button-collection.js",
        "componentWishlistButtonCollectionCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-button-collection.css",
        "componentWishlistButtonProductJs": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-button-product.js",
        "componentWishlistButtonProductCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-wishlist-button-product.css",
        "componentSaveForLaterCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-save-for-later.css",
        "componentAccountDialogCss": "https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/component-account-dialog.css"
      },
      "config": {
        "apiHost": "https:\/\/api.appmate.io\/v2",
        "customerId": null,
        "customerEmail": null,
        "customerTags": null,
        "customerName": null,
        "shopName": "leevje - design for loved ones",
        "shopDomain": "leevje.com",
        "shopPermanentDomain": "hejcrew.myshopify.com",
        "shopMoneyFormat": "\u003cspan class=money\u003e{{amount}}€\u003c\/span\u003e",
        "shopMoneyFormatWithCurrency": "\u003cspan class=money\u003e{{amount}}€\u003c\/span\u003e",
        "shopCustomerAccountsEnabled": true,
        "fileUrl": "\/\/leevje.com\/cdn\/shop\/files\/?v=58037",
        "storefrontAccessToken": "adff68dd9a0979e9a9504980b9099523",
        "storefrontVersion": "2024-10",
        "localeIsoCode": "de",
        "token": "3ac2e21689a42fa028a9469102f36f44fa0a2ab37898e0d72c9cbd5b0a0ef4c2"
      },
      "settings": {
        "general": {
          "appLoading": "LAZY",
          "wishlistPath": "\/apps\/wishlist",
          "wishlistAccessMode": "UNRESTRICTED",
          "wishlistMode": "PRODUCT"
        },
        "money": {
          "withCurrency": true
        },
        "integrations": {
          "wishlistAnalytics": {
            "enabled": true
          },
          "klaviyo": {
            "enabled": false
          },
          "metaPixel": {
            "enabled": true
          },
          "googleAnalytics": {
            "enabled": true
          }
        }
      },
      "collectionButtons": {
        "productLinkSelector": ".product-card__media[href*=\"\/products\/\"]",
        "injectMethod": "insertAfter",
        "injectReferenceJs": "(target, app) => target",
        "floatingReferenceJs": "(target, app) => target",
        "productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
        "productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)"
      }
    }
  </script>
  
    <script type="module" src="https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/block-app-settings.js"></script>
  
  <style>
    :root {
      --wk-color-solid-button-label: 255, 255, 255;
      --wk-color-accent-1: 123, 102, 96;
      --wk-color-accent-2: 123, 102, 96;
      --wk-color-outline-button-label: 0, 0, 0;
      --wk-color-background-1: 255, 255, 255;
      --wk-color-background-2: 255, 255, 255;
      --wk-color-text: 0, 0, 0;
      --wk-button-min-height: 45px;
      --wk-button-border-width: 1px;
      --wk-button-border-radius: 0px;
      --wk-input-min-height: 45px;
      --wk-input-border-width: 1px;
      --wk-input-border-radius: 0px;
      --wk-shadow-opacity: 15%;
      --wk-shadow-horizontal-offset: 0px;
      --wk-shadow-vertical-offset: 2px;
      --wk-shadow-blur: 4px;
      --wk-font-text-scale: 1.0;
    }
  </style>


</div><div id="shopify-block-AYUlraVkxNys5bytlS__4139971114690857691" class="shopify-block shopify-app-block">
<script id="wkCollectionButtons" type="application/json">
  {
    "injectMethod": "insertAfter",
    "buttonPlacement": "top-end",
    "productLinkSelector": "",
    "injectReferenceJs": "(target, app) => target",
    "floatingReferenceJs": "(target, app) => target",
    "productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
    "productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)",
    "integration": {
      "productLinkSelector": "",
      "injectReferenceJs": "(target, app) => target",
      "floatingReferenceJs": "(target, app) => target",
      "productHandleJs": "(target, app) => app.theme.getProductHandle(target.element.href)",
      "productVariantJs": "(target, app) => app.theme.getVariantId(target.element.href)"
    }
  }
</script>

  <script type="module" src="https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/block-wishlist-button-collection.js"></script>

<style>
  wishlist-button-collection {
    --icon-size: 18px;
    --icon-stroke-width: 1px;
    --button-offset-vertical: 0px;
    --button-offset-horizontal: 0px;
    --button-background-size: 34px;
    --button-background-border-radius: 24px;
    --button-border-width: 1px;
    --button-background-opacity: 85%;

    --button-background: rgba(var(--wk-color-accent-2), var(--button-background-opacity));
    --button-border: solid var(--button-border-width) rgb(var(--wk-color-accent-2));
    --icon-stroke: rgb(var(--wk-color-solid-button-label));
    

    
  }
</style>

</div><div id="shopify-block-ASFd4aGtkL1V1dGtKa__13655089695959051254" class="shopify-block shopify-app-block"><script id="wkThemeCode" type="application/json">
  {
    "customIconsUrl": null,
    "addToCartJsUrl": "https:\/\/cdn.appmate.io\/themecode\/hejcrew\/main\/add-to-cart.js?generation=1738330651284822",
    "productCardJsUrl": null,
    "wishlistPageJsUrl": null,
    "eventSubscribersJsUrl": null,
    "localeJsonUrl": null,
    "customCssUrl": "https:\/\/cdn.appmate.io\/themecode\/hejcrew\/main\/custom.css?generation=1742388609973108",
    "collectionButtonsJsUrl": null,
    "productPageButtonsJsUrl": "https:\/\/cdn.appmate.io\/themecode\/hejcrew\/main\/product-page-buttons.js?generation=1738333033363201",
    "headerLinkJsUrl": "https:\/\/cdn.appmate.io\/themecode\/hejcrew\/main\/header-link.js?generation=1738330173824486",
    "wishlistLinkHeadlessJsUrl": null,
    "wishlistButtonHeadlessJsUrl": null,
    "saveForLaterJsUrl": null,
    "customDataUrl": null,
    "addWishlistToCartJsUrl": null,
    "accountDialogUrl": null
  }
</script>

  <script type="module" src="https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/block-code-access.js"></script>


</div><div id="shopify-block-ANE4wZWpEQU9nQkpJY__6680288666557934739" class="shopify-block shopify-app-block"><script id="wkWishlistPage" type="application/json">
  {
    "showVendor": false,
    "showProductTitle": true,
    "showPrice": true,
    "showShareButton": true,
    "showBuyAllButton": false,
    "showClearButton": false,
    "moveToCart": false,
    "ctaButton": "none",
    "productOptions": "dropdowns",
    "wishlistEmptyLink": "\/collections\/all",
    "removeButtonStyle": "icon"
  }
</script>

  <script type="module" src="https://cdn.shopify.com/extensions/019d96fd-e333-7c3e-8131-44978f0c1b97/swish-wishlist-king-221/assets/block-wishlist-page.js"></script>

<style>
  wishlist-page {
    --text-color: var(--wk-color-text);
    --page-max-width: 1200px;
    --page-padding-top: 30px;
    --page-padding-bottom: 80px;
    --button-min-height: var(--wk-button-min-height);
    --button-border-width: var(--wk-button-border-width);
    --button-border-radius: var(--wk-button-border-radius);
    --input-min-height: var(--wk-input-min-height);
    --input-border-width: var(--wk-input-border-width);
    --input-border-radius: var(--wk-input-border-radius);

    --grid-columns-xs: 1;
    --grid-columns-sm: 2;
    --grid-columns-md: 2;
    --grid-columns-lg: 3;
    --grid-columns-xl: 4;

    --cta-button-background: rgb(var(--wk-color-accent-1));
    --cta-button-border: solid var(--button-border-width) rgb(var(--wk-color-accent-1));
    --cta-button-color: rgb(var(--wk-color-solid-button-label));

    --variant-input-background: rgb(var(--wk-color-background-1));
    --variant-input-border: solid var(--input-border-width) rgba(var(--wk-color-text));
    --variant-input-color: rgb(var(--wk-color-text));
    --variant-input-selected-background: var(--variant-input-background);
    --variant-input-selected-border: solid var(--input-border-width) rgba(var(--wk-color-text));
    --variant-input-selected-color: var(--variant-input-color);
    --variant-input-selected-shadow: 0 0 0 var(--input-border-width) rgb(var(--wk-color-text));

    --price-justify-content: center;

    --option-select-label-display: none;

    --image-aspect-ratio: 1/1;
    --image-object-fit: cover;
    --meta-text-align: center;
  }
</style>

</div><div id="shopify-block-AOVUvWlArd2srb2t3R__10077418179866729617" class="shopify-block shopify-app-block"><script>
    const tagsInCart = []

  const collectionsInCart = []

  window.HidePayFE = {...window.HidePayFE,
    template: "index",
    shop: "leevje.com",
    customizations: {},
    drawerId: 'additional-checkout-buttons',
    frontendModule: {"hasPlan":"false"},
    tagsInCart: tagsInCart,
    collectionsInCart: collectionsInCart,
    customerCountry: "DE",
    market: 22806751,
  }

  const hp_customerId = undefined;
  window.HidePayFE.customer = hp_customerId !== undefined ? {
    id: "",
    email: "",
    orders_count: undefined,
    tags: null,
  } : null;

</script>

</div></body>

  
  

</html>
