<!doctype html>

<html
  class="js"
  lang="de"
  
    dir="ltr"
  
>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content="">
    <link rel="canonical" href="https://selira.de/">
    <script src="//selira.de/cdn/shop/t/13/assets/constants.js?v=178089113188150681341780232419" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/pubsub.js?v=19906250630491308881780232577" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/global.js?v=176904259260657110321780232452" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/premium-attachment-kit.js?v=58590960812319190991780232563" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/upsell-simple.js?v=144815246006408268811780232637" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/details-disclosure.js?v=98877546902727003311780232439" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/details-modal.js?v=77324850323692975061780232440" defer="defer"></script>
    <script src="//selira.de/cdn/shop/t/13/assets/search-form.js?v=50817755822910279751780232593" defer="defer"></script><script src="//selira.de/cdn/shop/t/13/assets/animations.js?v=140306317059207528321780232350" defer="defer"></script>
<link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><!-- Custom font CSS -->
    <link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/custom-font.css?v=61139437524400616491780232425" type="text/css">

    <title>
      Selira
</title>

    

    

<meta property="og:site_name" content="Selira">
<meta property="og:url" content="https://selira.de/">
<meta property="og:title" content="Selira">
<meta property="og:type" content="website">
<meta property="og:description" content="Selira"><meta property="og:image" content="http://selira.de/cdn/shop/files/Screenshot_22-8-2025_15245_selira.de.jpg?v=1769772604">
  <meta property="og:image:secure_url" content="https://selira.de/cdn/shop/files/Screenshot_22-8-2025_15245_selira.de.jpg?v=1769772604">
  <meta property="og:image:width" content="318">
  <meta property="og:image:height" content="209"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Selira">
<meta name="twitter:description" content="Selira">


    
    <script>
      window.Shopify = window.Shopify || {};

      Shopify.license_key = 'LIC-1773263789683-kqz6clien';
      Shopify.money_format = "€{{amount_with_comma_separator}}";

      Shopify.formatMoney = function(cents, format) {
        if (typeof cents === 'string') {
          cents = cents.replace('.', '');
        }
        cents = parseInt(cents, 10);

        let value = '';
        
        const placeholderRegex = /{{\s*(\w+)\s*}}/;
        
        const formatString = format || this.money_format;

        function defaultOption(opt, def) {
          return (typeof opt === 'undefined' ? def : opt);
        }

        function formatWithDelimiters(number, precision, thousands, decimal) {
          precision = defaultOption(precision, 2);
          thousands = defaultOption(thousands, ',');
          decimal = defaultOption(decimal, '.');

          if (isNaN(number) || number == null) return '0';

          number = (number / 100).toFixed(precision);

          const parts = number.split('.'),
                dollars = parts[0].replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1' + thousands),
                centsPart = parts[1] ? (decimal + parts[1]) : '';

          return dollars + centsPart;
        }

        const match = formatString.match(placeholderRegex);
        if (!match || !match[1]) return formatString;

        switch (match[1]) {
          case 'amount':
            value = formatWithDelimiters(cents, 2);
            break;
          case 'amount_no_decimals':
            value = formatWithDelimiters(cents, 0);
            break;
          case 'amount_with_comma_separator':
            value = formatWithDelimiters(cents, 2, '.', ',');
            break;
          case 'amount_no_decimals_with_comma_separator':
            value = formatWithDelimiters(cents, 0, '.', ',');
            break;
          default:
            value = formatWithDelimiters(cents, 2);
        }

        return formatString.replace(placeholderRegex, value);
      };
    </script>

    <script>
      if (Shopify.designMode) {
        document.documentElement.classList.add('shopify-design-mode');
      }

      document.addEventListener('alpine:init', function() {
        // Check if there's a premium-attachment-kit block with product-specific free gifts
        const premiumKit = document.querySelector('.premium-attachment-kit');
        let relyOnProductId = "";
        let freeGiftProductIds = [];
        let firstFreeGiftId = null;
        
        if (premiumKit) {
          const blockFreeGiftIds = premiumKit.getAttribute('data-free-gift-product-ids');
          const blockRelyOnProductId = premiumKit.getAttribute('data-rely-on-product-id');
          
          if (blockFreeGiftIds && blockFreeGiftIds.trim() !== '') {
            freeGiftProductIds = blockFreeGiftIds.split(',').filter(id => id.trim() !== '');
            firstFreeGiftId = freeGiftProductIds.length > 0 ? freeGiftProductIds[0] : null;
          }
          
          if (blockRelyOnProductId && blockRelyOnProductId.trim() !== '') {
            relyOnProductId = blockRelyOnProductId;
          }
        }
        
        // Fallback to global settings if no block-specific gifts found
        if (freeGiftProductIds.length === 0) {
          freeGiftProductIds = [
            "0",
            "0",
            "0",
            "0",
            "0",
            "0",
            "0",
            "0",
            "0",
            "0"
          ].filter(gift => gift !== "0");
          firstFreeGiftId = freeGiftProductIds.length > 0 ? freeGiftProductIds[0] : null;
        }
        
        if (!relyOnProductId || relyOnProductId === '') {
          relyOnProductId = "";
        }
        
        Alpine.store(AlpineStoreKeys.FREE_GIFT_STORE, { relyOnProductId, freeGiftProductIds });

        let freeShippingThreshhold = 9000;
        Alpine.store(AlpineStoreKeys.FREE_SHIPPING_THRESHHOLD_STORE, { freeShippingThreshhold });

        // Update free-product-form ONLY if no premium-attachment-kit block is present
        // If premium-attachment-kit is present, free gifts are handled directly in the product form
        if (firstFreeGiftId && !premiumKit) {
          document.addEventListener('DOMContentLoaded', function() {
            const freeProductInput = document.querySelector('.free-product-form .product-variant-id');
            if (freeProductInput) {
              freeProductInput.value = firstFreeGiftId;
            }
          });
        }

        elxr.log('FreeGiftSetup', { relyOnProductId, freeGiftProductIds, firstFreeGiftId, source: premiumKit ? 'block' : 'global' }, 'debug');
        elxr.log('FreeShippingThreshholdSetup', { freeShippingThreshhold }, 'debug');
      });
    </script>

    <script>
      window.shopUrl = 'https://selira.de';
      window.routes = {
        cart_add_url: '/cart/add',
        cart_change_url: '/cart/change',
        cart_update_url: '/cart/update',
        cart_url: '/cart',
        predictive_search_url: '/search/suggest',
      };

      window.cartStrings = {
        error: `Beim Aktualisieren Ihres Warenkorbs ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.`,
        quantityError: `Sie können nur [quantity] von diesem Artikel zu Ihrem Warenkorb hinzufügen.`,
      };

      window.variantStrings = {
        addToCart: `In den Warenkorb`,
        soldOut: `Ausverkauft`,
        unavailable: `Nicht verfügbar`,
        unavailable_with_option: `[value] - Nicht verfügbar`,
      };

      window.accessibilityStrings = {
        imageAvailable: `Bild [index] ist jetzt in der Galerieansicht verfügbar`,
        shareSuccess: `Link in die Zwischenablage kopiert`,
        recipientFormExpanded: `Geschenkkarten-Empfängerformular erweitert`,
        recipientFormCollapsed: `Geschenkkarten-Empfängerformular eingeklappt`,
        countrySelectorSearchCount: `[count] Länder/Regionen gefunden`,
      };
    </script>

    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/95276990850/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="f3fac98307339863d0ef7899c5c3f67f">
<meta id="in-context-paypal-metadata" data-shop-id="95276990850" data-venmo-supported="false" data-environment="production" data-locale="de_DE" data-paypal-v4="true" data-currency="EUR">
<script async="async" src="/checkouts/internal/preloads.js?locale=de-DE"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":95276990850,"countryCode":"LV","currencyCode":"EUR","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/95276990850","merchantName":"Selira","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex"],"total":{"type":"pending","label":"Selira","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"f3fac98307339863d0ef7899c5c3f67f","betas":["rich-media-storefront-analytics"],"domain":"selira.de","predictiveSearch":true,"shopId":95276990850,"locale":"de"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "wejvjq-hg.myshopify.com";
Shopify.locale = "de";
Shopify.currency = {"active":"EUR","rate":"1.0"};
Shopify.country = "DE";
Shopify.theme = {"name":"Sweatbelt DACH Pink","id":188698788226,"schema_name":"Elixir","schema_version":"1.5.4","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "selira.de/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";
Shopify.SignInWithShop = Shopify.SignInWithShop || {};
Shopify.SignInWithShop.User = Shopify.SignInWithShop.User || {};
Shopify.SignInWithShop.User.recognized = false;</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.Shopify = window.Shopify || {};
  window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
  window.Shopify.SignInWithShop.assetMetrics = { sampleRate: 0.01 };
  window.Shopify.SignInWithShop.eligible = true;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//selira.de/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js"></script>
<script type="module">
  await import("//selira.de/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.de.esm.js");

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

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.de.esm.js"],"listener":["modules/v2/loader.listener.de.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.de.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.de.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.de.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.de.esm.js"],"avatar":["modules/v2/loader.avatar.de.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.de.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.de.esm.js"],"shop-button":["modules/v2/loader.shop-button.de.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.de.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.de.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.de.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.de.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.de.esm.js"],"pay-button":["modules/v2/loader.pay-button.de.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.de.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.de.esm.js"],"shop-login":["modules/v2/loader.shop-login.de.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.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 = ["\/\/cdn.shopify.com\/proxy\/1219e1cbb8eb23bb7d06c87a5369946c49ad8b9974417333a76d2983e2628a1f\/pixel.wetracked.io\/wejvjq-hg.myshopify.com\/events.js?shop=wejvjq-hg.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
    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":95276990850,"offset":7200,"reqid":"f74a043b-746b-4947-9f61-89b78d09ecd0-1782360049","pageurl":"selira.de\/.json","u":"819eb58ed367","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="//selira.de/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script>(function () {var userAgent = navigator.userAgent;var platform = navigator.platform;var maxTouchPoints = navigator.maxTouchPoints || 0;var isIOS = /iPad|iPhone|iPod/.test(platform) || (platform === 'MacIntel' && maxTouchPoints > 1);var isMacSafari = platform.indexOf('Mac') === 0 && /Safari/.test(userAgent) && !/Chrome|Chromium|CriOS|FxiOS|Edg|OPR|Android/.test(userAgent);var isAppleSafari = isIOS || isMacSafari;if (isAppleSafari) {fetch('/sf_private_access_tokens' + location.search).catch(function () {});}function browserMajorVersion(pattern) {var match = userAgent.match(pattern);return match ? parseInt(match[1], 10) : null;}function shouldLoadAutosizesPolyfill() {if (!window.PerformanceObserver?.supportedEntryTypes?.includes('paint')) {return false;}var chromeVersion = browserMajorVersion(/Chrome\/(\d+)/);if (chromeVersion !== null) {return chromeVersion < 126;}var firefoxVersion = browserMajorVersion(/Firefox\/(\d+)/);if (firefoxVersion !== null) {return firefoxVersion < 150;}var safariVersion = isAppleSafari ? browserMajorVersion(/Version\/(\d+).*Safari\//) : null;if (safariVersion !== null) {return safariVersion < 27;}return true;}if (shouldLoadAutosizesPolyfill()) {var autosizesScript = document.createElement('script');autosizesScript.async = true;autosizesScript.crossOrigin = 'anonymous';autosizesScript.src = "//selira.de/cdn/shopifycloud/storefront/assets/storefront/autosizes-84416378.js";(document.head || document.documentElement).appendChild(autosizesScript);}window.ShopifyAnalytics = window.ShopifyAnalytics || {};window.ShopifyAnalytics.performance = window.ShopifyAnalytics.performance || {};(function () {var LONG_FRAME_THRESHOLD = 50;var longAnimationFrames = [];var activeRafId = null;function collectLongFrames() {var previousTime = null;function rafMonitor(now) {if (activeRafId === null) {return;}var delta = now - previousTime;if (delta > LONG_FRAME_THRESHOLD) {longAnimationFrames.push({startTime: previousTime,endTime: now,});}previousTime = now;activeRafId = requestAnimationFrame(rafMonitor);}previousTime = performance.now();activeRafId = requestAnimationFrame(rafMonitor);}if (!window.PerformanceObserver?.supportedEntryTypes?.includes('long-animation-frame')) {collectLongFrames();var timeoutId = setTimeout(function () {cancelAnimationFrame(activeRafId);}, 10000);window.ShopifyAnalytics.performance.getLongAnimationFrames = function (stopCollection) {if (stopCollection === undefined) {stopCollection = false;}if (stopCollection) {clearTimeout(timeoutId);cancelAnimationFrame(activeRafId);}return longAnimationFrames;};}})();})();</script><script id="shopify-origin-trials" async="async" integrity="sha256-MrpR+SbfwphjsvuxKsSWA5xxY07P36eahsNLLXSgEwo=" src="//cdn.shopify.com/shopifycloud/storefront/assets/storefront/origin_trials-c173577b.js" crossorigin="anonymous" onload="window.__shopifyOriginTrialsDone = true" onerror="window.__shopifyOriginTrialsDone = true"></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://selira.de/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://selira.de/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 id="sections-script" data-sections="header" defer="defer" src="//selira.de/cdn/shop/t/13/compiled_assets/scripts.js?v=100759261059905682171780232674"></script>
<script id="shopify-cfh-end">window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>

    
    



<style>
  @font-face {
  font-family: Geist;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//selira.de/cdn/fonts/geist/geist_n4.6e27f20c83b0a07405328f98ff3b0be957c5d6d5.woff2") format("woff2"),
       url("//selira.de/cdn/fonts/geist/geist_n4.492f36219dd328eb9d6fa578986db9fe6d514f67.woff") format("woff");
}

  @font-face {
  font-family: Geist;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//selira.de/cdn/fonts/geist/geist_n7.d1a55eaf394973a6f8fe773d87de2e2f51331d2a.woff2") format("woff2"),
       url("//selira.de/cdn/fonts/geist/geist_n7.69b158278bc5ac2dd4016704355834ad3509f9f6.woff") format("woff");
}

  
  
  @font-face {
  font-family: Geist;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//selira.de/cdn/fonts/geist/geist_n4.6e27f20c83b0a07405328f98ff3b0be957c5d6d5.woff2") format("woff2"),
       url("//selira.de/cdn/fonts/geist/geist_n4.492f36219dd328eb9d6fa578986db9fe6d514f67.woff") format("woff");
}

  @font-face {
  font-family: Geist;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//selira.de/cdn/fonts/geist/geist_n4.6e27f20c83b0a07405328f98ff3b0be957c5d6d5.woff2") format("woff2"),
       url("//selira.de/cdn/fonts/geist/geist_n4.492f36219dd328eb9d6fa578986db9fe6d514f67.woff") format("woff");
}

:root {
    /* Global Color Variables */
    --global-section-background-color: #faf7f5;
    --global-section-text-color: #000000;
    --global-section-heading-color: ;
    --global-section-accent-1-color: #faf7f5;
    --global-section-use-gradient-background: 0;

    

    --color-background: 250,247,245;
    --gradient-background: linear-gradient(180deg, rgba(250, 247, 245, 1), rgba(242, 242, 242, 1) 22%, rgba(255, 250, 247, 1) 100%);
    --color-foreground: #000000;
    --color-background-contrast: 207,179,160;
    --color-shadow: 18,18,18;

    --color-button: 250,247,245;
    --color-button-text: 0,0,0;
    --color-secondary-button: 250,247,245;
    --color-secondary-button-text: 0,0,0;
    --color-link: 255,255,255;
    --color-badge-foreground: 0,0,0;
    --color-header: 231,207,207;
    --color-footer: 231,207,207;
    --color-drawer: 231,207,207;
    --color-drawer-text: 253,255,255;
    --color-dropdown: 24,27,29;
    --color-badge-background: 250,247,245;
    --color-badge-border: 250,247,245;
    --payment-terms-background-color: rgb(250 247 245);

    
      /* Container Styling Variables */
      --container-border-width: px;
      --container-border-radius: 2px;
      --container-border-style: ;
      --container-border-opacity: 0.0;
      
      --container-shadow: none;
      
    
  }

  :root {
    /* Typography Variables */
    --font-body-family: Geist, sans-serif;
    --font-body-style: normal;
    --font-body-weight: 400;

    --font-heading-family: Geist, sans-serif;
    --font-heading-style: normal;

    
    
      
      --font-accent-family: Geist, sans-serif;
    

    
    --font-accent-style: normal;
    --font-accent-weight: 300;
    --font-accent-scale: 0.85;
    --font-accent-letter-spacing: -2px;
    --font-accent-text-transform: none;
    --font-accent-style: normal;

    
    --global-accent-font: var(--font-accent-family);

    --font-weight-regular: 400 !important;
    --font-weight-bold: 700 !important;
    --font-weight-semibold: 600 !important;

    --font-body-scale: 1.0;
    --font-heading-scale: 1.0;

    /* Media Variables */
    --media-padding: px;
    --media-border-opacity: 0.05;
    --media-border-width: 1px;
    --media-radius: 0px;
    --media-shadow-opacity: 0.0;
    --media-shadow-horizontal-offset: 0px;
    --media-shadow-vertical-offset: 4px;
    --media-shadow-blur-radius: 5px;
    --media-shadow-visible: 0;

    --page-width: 120rem;
    --page-width-margin: 0rem;

    --animate-spin: spin 1s linear infinite;

    /* Product Card Variables */
    --product-card-image-padding: 0.0rem;
    --product-card-corner-radius: 0.0rem;
    --product-card-text-alignment: left;
    --product-card-border-width: 0.0rem;
    --product-card-border-opacity: 0.1;
    --product-card-shadow-opacity: 0.0;
    --product-card-shadow-visible: 0;
    --product-card-shadow-horizontal-offset: 0.0rem;
    --product-card-shadow-vertical-offset: 0.4rem;
    --product-card-shadow-blur-radius: 0.5rem;

    /* Collection Card Variables */
    --collection-card-image-padding: 0.0rem;
    --collection-card-corner-radius: 0.0rem;
    --collection-card-text-alignment: left;
    --collection-card-border-width: 0.0rem;
    --collection-card-border-opacity: 0.1;
    --collection-card-shadow-opacity: 0.0;
    --collection-card-shadow-visible: 0;
    --collection-card-shadow-horizontal-offset: 0.0rem;
    --collection-card-shadow-vertical-offset: 0.4rem;
    --collection-card-shadow-blur-radius: 0.5rem;

    /* Blog Card Variables */
    --blog-card-image-padding: 0.0rem;
    --blog-card-corner-radius: 0.0rem;
    --blog-card-text-alignment: left;
    --blog-card-border-width: 0.0rem;
    --blog-card-border-opacity: 0.1;
    --blog-card-shadow-opacity: 0.0;
    --blog-card-shadow-visible: 0;
    --blog-card-shadow-horizontal-offset: 0.0rem;
    --blog-card-shadow-vertical-offset: 0.4rem;
    --blog-card-shadow-blur-radius: 0.5rem;

    --badge-corner-radius: 4.0rem;

    /* Popup Variables */
    --popup-border-width: 1px;
    --popup-border-opacity: 0.1;
    --popup-corner-radius: 0px;
    --popup-shadow-opacity: 0.05;
    --popup-shadow-horizontal-offset: 0px;
    --popup-shadow-vertical-offset: 4px;
    --popup-shadow-blur-radius: 5px;

    /* Drawer Variables */
    --drawer-border-width: 1px;
    --drawer-border-opacity: 0.1;
    --drawer-shadow-opacity: 0.0;
    --drawer-shadow-horizontal-offset: 0px;
    --drawer-shadow-vertical-offset: 4px;
    --drawer-shadow-blur-radius: 5px;

    /* Spacing Variables */
    --spacing-sections-desktop: 0px;
    --spacing-sections-mobile: 0px;

    --grid-desktop-vertical-spacing: 8px;
    --grid-desktop-horizontal-spacing: 8px;
    --grid-mobile-vertical-spacing: 4px;
    --grid-mobile-horizontal-spacing: 4px;
    --page-desktop-horizontal-padding: 0px;
    --sections-desktop-horizontal-padding: 0px;
    --sections-desktop-vertical-padding: 0px;
    --sections-mobile-horizontal-padding: 0px;
    --sections-mobile-vertical-padding: 0px;

    /* Text Box Variables */
    --text-boxes-border-opacity: 0.1;
    --text-boxes-border-width: 0px;
    --text-boxes-radius: 0px;
    --text-boxes-shadow-opacity: 0.0;
    --text-boxes-shadow-visible: 0;
    --text-boxes-shadow-horizontal-offset: 0px;
    --text-boxes-shadow-vertical-offset: 4px;
    --text-boxes-shadow-blur-radius: 5px;

    /* Button Variables */
    --buttons-radius: 0px;
    --buttons-radius-outset: 0px;
    --buttons-border-width: 1px;
    --buttons-border-opacity: 1.0;
    --buttons-shadow-opacity: 0.0;
    --buttons-shadow-visible: 0;
    --buttons-shadow-horizontal-offset: 0px;
    --buttons-shadow-vertical-offset: 4px;
    --buttons-shadow-blur-radius: 5px;
    --buttons-border-offset: 0px;

    /* Input Variables */
    --inputs-radius: 0px;
    --inputs-border-width: 1px;
    --inputs-border-opacity: 0.55;
    --inputs-shadow-opacity: 0.0;
    --inputs-shadow-horizontal-offset: 0px;
    --inputs-margin-offset: 0px;
    --inputs-shadow-vertical-offset: 4px;
    --inputs-shadow-blur-radius: 5px;
    --inputs-radius-outset: 0px;

    /* Variant Pills Variables */
    --variant-pills-radius: 40px;
    --variant-pills-border-width: 1px;
    --variant-pills-border-opacity: 0.55;
    --variant-pills-shadow-opacity: 0.0;
    --variant-pills-shadow-horizontal-offset: 0px;
    --variant-pills-shadow-vertical-offset: 4px;
    --variant-pills-shadow-blur-radius: 5px;

    /* Global Button Variables */
    --global-button-padding-y: 20px;
    --global-button-font-size: 19px;
    --global-button-font-weight: 700;
    --conditional-button-font-weight: var(--global-button-font-weight, 700);
    --global-button-letter-spacing: 0px;
    --global-button-text-transform: uppercase;
    --global-button-radius: 40px;

    /* Enhanced Global Button Colors */
    --global-button-bg-color: #000000;
    --global-button-text-color: #ffffff;
    --global-button-border-color: #000000;
    --global-button-border-width: 1px;
    --global-button-bottom-border-width: 1px;
    --global-button-bottom-border-color: #000000;

    /* Hover & Focus Colors */
    --global-button-hover-bg-color: #000000;
    --global-button-hover-text-color: #ffffff;

    /* Button Box Shadow Variables */
    --button-box-shadow-enabled: true;
    --button-shadow-intensity: 2;

    /* Gradient Effect Variables */
    --button-gradient-enabled: true;
    --button-gradient-start: #e7cfcf;
    --button-gradient-end: #e7cfcf;
    --button-gradient-direction: to top;
    --button-gradient-hover-start: #ffffff;
    --button-gradient-hover-end: #f5f5f5;
    --button-gradient-shine-enabled: true;
    --global-button-hover-brightness: 90%;

    
    /* Global Border System Disabled */
    --enable-global-border-styling: 0;
    

    /* Letter spacing for body text and apps */
    --letter-spacing-body: -0.3px;
    --app-letter-spacing: -0.3px;
    --global-section-bg-color: #faf7f5;
    --global-section-text-color: #000000;
    --global-section-accent-1-color: #faf7f5;
    --global-section-accent-2-color: #ffffff;
    --global-section-accent-gradient-color: var(--gradient-background);

    /* RTL Support Variables */
    
    --direction: ltr;
    --text-align-start: left;
    --text-align-end: right;
    --margin-start: margin-left;
    --margin-end: margin-right;
    --padding-start: padding-left;
    --padding-end: padding-right;
    --border-start: border-left;
    --border-end: border-right;
    --float-start: left;
    --float-end: right;
    

    
    
    /* Contained Sections System Disabled */
    --enable-contained-sections: 0;
    
  }
</style>

    
    <style>
      *,
      *::before,
      *::after {
        box-sizing: inherit;
      }

      html {
        box-sizing: border-box;
        font-size: calc(var(--font-body-scale) * 62.5%);
        height: 100%;
      }

      body {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        margin: 0;
        font-size: 1.5rem;
        letter-spacing: var(--letter-spacing-body);
        line-height: calc(1 + 0.8 / var(--font-body-scale));
        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
        color: rgba(var(--color-foreground), 0.75);
        background-color: rgb(var(--color-background));
      }

      section {
        color: rgba(var(--color-foreground), 0.75);
        background-color: rgb(var(--color-background));
      }

      #MainContent {
        flex-grow: 1;
      }

      @media screen and (min-width: 750px) {
        body {
          font-size: 1.6rem;
        }
      }
    </style>

    
    


  
  
  
  

  <style>
    :root {
      /* Theme default colors only */
      --global-section-text-color: ;
      --global-section-background-color: ;
      --global-section-accent-1-color: ;
    }
  </style>



    
    <link href="//selira.de/cdn/shop/t/13/assets/base.css?v=183029894060551658711780232355" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/custom-product-grid.css?v=115811572360702474401780232426" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/card-media-fix.css?v=14520060235047065321780232363" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/universal-font-fix.css?v=85773714138864263841780232636" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/app-typography-fix.css?v=173654749494671925991780232353" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/global-headings.css?v=127762122635099906891780232451" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/accent-typography.css?v=87772195225215953151780232347" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/selective-heading-fonts.css?v=33454361275003881961780232611" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/size-chart.css?v=79667529099247686161780232618" rel="stylesheet" type="text/css" media="all" />
    <link href="//selira.de/cdn/shop/t/13/assets/custom.css?v=165849431586777267931780232427" rel="stylesheet" type="text/css" media="all" />
    <link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/component-cart-items.css?v=170369858107727255461780232385" media="print" onload="this.media='all'">

    
    




<link href="//selira.de/cdn/shop/t/13/assets/component-cart-drawer.css?v=109191578666403875351780232384" rel="stylesheet" type="text/css" media="all" />
  <link href="//selira.de/cdn/shop/t/13/assets/component-cart.css?v=142717512571643586421780232387" rel="stylesheet" type="text/css" media="all" />
  <link href="//selira.de/cdn/shop/t/13/assets/component-totals.css?v=145065307395273935911780232417" rel="stylesheet" type="text/css" media="all" />
  <link href="//selira.de/cdn/shop/t/13/assets/component-price.css?v=115697393100663570171780232406" rel="stylesheet" type="text/css" media="all" />
  <link href="//selira.de/cdn/shop/t/13/assets/component-discounts.css?v=29232138674760765831780232391" rel="stylesheet" type="text/css" media="all" />





<link
    rel="stylesheet"
    href="//selira.de/cdn/shop/t/13/assets/component-predictive-search.css?v=112853479392794020501780232405"
    media="print"
    onload="this.media='all'"
  ><link href="//selira.de/cdn/shop/t/13/assets/component-localization-form.css?v=66557587062367005011780232396" rel="stylesheet" type="text/css" media="all" />

<script src="//selira.de/cdn/shop/t/13/assets/predictive-search.js?v=182404507833923159961780232561" defer="defer"></script><script src="//selira.de/cdn/shop/t/13/assets/cart-drawer.js?v=42671976774248908821780232365" defer="defer"></script>


<script src="//selira.de/cdn/shop/t/13/assets/localization-form.js?v=170875248734160423031780232544" defer="defer"></script>

    
    <link href="//selira.de/cdn/shop/t/13/assets/typography-system.css?v=155538027646168030501780232635" rel="stylesheet" type="text/css" media="all" />
<script src="//selira.de/cdn/shop/t/13/assets/typography-settings.js?v=69595076899672114051780232634" type="text/javascript"></script>

<script>
  // Set theme settings data attributes on the root element
  document.documentElement.setAttribute('data-heading-scale', '100');
  document.documentElement.setAttribute('data-body-scale', '100');
  document.documentElement.setAttribute('data-heading-letter-spacing', '-0.9');
  document.documentElement.setAttribute('data-body-letter-spacing', '-0.3');
  document.documentElement.setAttribute('data-button-text-case', '');
  document.documentElement.setAttribute('data-button-radius', '40');
  document.documentElement.setAttribute('data-apply-button-radius-to-all', 'true');
</script>

<style>
  /* CSS variable overrides from theme settings */
  :root {
    /* Font families from theme settings */
    --font-heading-family: Geist, sans-serif;
    --font-body-family: Geist, sans-serif;

    /* Font weights from theme settings */
    --font-heading-weight: 400;
    --font-body-weight: 400;

    /* Apply text transform for buttons based on settings */
    --button-text-transform: ;

    /* Set these for our override variables too so they cascade down */
    --font-body-family-override: Geist, sans-serif;
    --font-heading-family-override: Geist, sans-serif;
    --font-body-weight-override: 400;
    --font-heading-weight-override: 700;

    /* Button styling variables */
    --global-button-radius: 40px;

    
  }

  /* Apply button text transform */
  .button, .button-text, button[type="submit"], input[type="submit"] {
    text-transform: var(--button-text-transform);
    font-family: var(--font-body-family-override);
  }
</style>

    <style>
  /* Global Typography Overrides */
  /* This ensures that all text elements inherit the correct font family from theme settings */

  /* Basic text elements */
  p, span, div, a, button, input, select, textarea, label, li {
    font-family: var(--font-body-family-override, Geist, sans-serif);
  }

  /* Heading elements */
  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .h4, .h5, .h6,
  [class*="title"],
  [class*="heading"],
  .title,
  .heading {
    font-family: var(--font-heading-family-override, Geist, sans-serif);
  }

  /* Special elements */
  .product-title,
  .product__title,
  .product-form__label,
  .collection-hero__title,
  .page-title,
  .section-header__title,
  .main-collection-title,
  .main-title,
  .subtitle {
    font-family: var(--font-heading-family-override, Geist, sans-serif);
  }

  /* Rating components, reviews, benefits, and other common elements */
  .rating-component,
  .review-name,
  .review-text,
  .benefit-text,
  .counter-text,
  .feature-name,
  .check-yes,
  .check-no,
  .text-value {
    font-family: var(--font-body-family-override, Geist, sans-serif);
  }
</style>

    

<style>
  :root {
    --app-letter-spacing: -0.3px;
  }

  /* Apply letter-spacing to common app elements */
  .shopify-app-block,
  .shopify-buy-frame,
  div[data-shopify-app],
  div[data-app-id],
  div[class*="app-"],
  div[class*="App"],
  #bundle-container,
  #bundle-app,
  [data-bundle-app],
  .bundle-builder,
  #ReCharge,
  [data-rebuy-id],
  [data-rebuy-container],
  [data-bold-bundle],
  [data-loyalty-container] {
    letter-spacing: var(--app-letter-spacing) !important;
  }

  /* Exclude shop-product-details blocks from app letter-spacing rules */
  .shop-product-section,
  .shop-product-info,
  .shop-product-info *,
  .shop-product-section *,
  .blocks-section:not(.shopify-app-block):not([data-shopify-app]):not([data-app-id]):not([class*="app-"]):not([class*="App"]),
  .limited-inventory-alert,
  .limited-inventory-alert *,
  .product-description-block,
  .product-description-block * {
    letter-spacing: var(--letter-spacing-body) !important;
  }
</style>
    <style>
  /* Global Button Styling Overrides */
  /* Define CSS variables for global button colors */
  /* CSS variables are now defined in layout/theme.liquid */

  /* Primary buttons - apply global styling */
  .button,
  .btn,
  button[type="submit"],
  input[type="submit"],
  .shopify-payment-button__button,
  .product-form__submit,
  .shop-add-to-cart-button,
  .claim-button,
  .cart__checkout-button,
  .contact-button,
  .button--primary,
  .rich-text-button,
  .theme-button,
  .sticky-add-to-cart__button {
    border-radius: var(--global-button-radius) !important;
    font-family: var(--font-body-family-override) !important;
    transition: all 0.3s ease;
    
    background: linear-gradient(to top, #e7cfcf, #e7cfcf) !important;
    
    color: var(--global-button-text-color) !important;
    border-left: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-right: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-top: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-bottom: var(--global-button-bottom-border-width) solid var(--global-button-bottom-border-color) !important;
    border-bottom-style: solid !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    font-weight: bold !important;
  }

  /* Hover, focus, and active states for buttons */
  .button:hover,
  .btn:hover,
  button[type="submit"]:hover,
  input[type="submit"]:hover,
  .shopify-payment-button__button:hover,
  .product-form__submit:hover,
  .shop-add-to-cart-button:hover,
  .claim-button:hover,
  button[class*="add-to-cart"]:hover,
  button[class*="add_to_cart"]:hover,
  a[class*="add-to-cart"]:hover,
  a[class*="add_to_cart"]:hover,
  input[class*="add-to-cart"]:hover,
  input[class*="add_to_cart"]:hover,
  .cart__checkout-button:hover,
  .contact-button:hover,
  .button--primary:hover,
  .rich-text-button:hover,
  .theme-button:hover,
  .sticky-add-to-cart__button:hover,
  .button:focus,
  .button:focus-visible,
  .btn:focus,
  .btn:focus-visible,
  button[type="submit"]:focus,
  button[type="submit"]:focus-visible,
  input[type="submit"]:focus,
  input[type="submit"]:focus-visible,
  .shopify-payment-button__button:focus,
  .shopify-payment-button__button:focus-visible,
  .product-form__submit:focus,
  .product-form__submit:focus-visible,
  .shop-add-to-cart-button:focus,
  .shop-add-to-cart-button:focus-visible,
  .claim-button:focus,
  .claim-button:focus-visible,
  button[class*="add-to-cart"]:focus,
  button[class*="add_to_cart"]:focus,
  a[class*="add-to-cart"]:focus,
  a[class*="add_to_cart"]:focus,
  input[class*="add-to-cart"]:focus,
  input[class*="add_to_cart"]:focus,
  .cart__checkout-button:focus,
  .cart__checkout-button:focus-visible,
  .contact-button:focus,
  .contact-button:focus-visible,
  .button--primary:focus,
  .button--primary:focus-visible,
  .theme-button:focus,
  .theme-button:focus-visible,
  .sticky-add-to-cart__button:focus,
  .sticky-add-to-cart__button:focus-visible,
  .shopify-payment-button [role='button']:focus,
  .shopify-payment-button [role='button']:focus-visible {
    
    background: linear-gradient(to top, #ffffff, #f5f5f5) !important;
    
    border-left: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-right: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-top: var(--global-button-border-width) solid var(--global-button-border-color) !important;
    border-bottom: var(--global-button-bottom-border-width) solid var(--global-button-bottom-border-color) !important;
    border-bottom-style: solid !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Exclude non-button elements from hover effects */
  div[class*="add-to-cart"]:hover,
  div[class*="add_to_cart"]:hover,
  span[class*="add-to-cart"]:hover,
  span[class*="add_to_cart"]:hover,
  p[class*="add-to-cart"]:hover,
  p[class*="add_to_cart"]:hover,
  section[class*="add-to-cart"]:hover,
  section[class*="add_to_cart"]:hover,
  article[class*="add-to-cart"]:hover,
  article[class*="add_to_cart"]:hover,
  div[class*="add-to-cart"]:focus,
  div[class*="add_to_cart"]:focus,
  span[class*="add-to-cart"]:focus,
  span[class*="add_to_cart"]:focus,
  p[class*="add-to-cart"]:focus,
  p[class*="add_to_cart"]:focus,
  section[class*="add-to-cart"]:focus,
  section[class*="add_to_cart"]:focus,
  article[class*="add-to-cart"]:focus,
  article[class*="add_to_cart"]:focus {
    background-color: inherit !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Sticky add to cart elements - prevent hover styling for non-button elements */
  .sticky-add-to-cart:hover,
  .sticky-add-to-cart:focus,
  .sticky-add-to-cart *:not(button):not(input[type="submit"]):not(.button):not(.btn):hover,
  .sticky-add-to-cart *:not(button):not(input[type="submit"]):not(.button):not(.btn):focus,
  [class*="sticky-add-to-cart"]:not(button):not(input[type="submit"]):not(.button):not(.btn):hover,
  [class*="sticky-add-to-cart"]:not(button):not(input[type="submit"]):not(.button):not(.btn):focus {
    background-color: inherit !important;
    box-shadow: inherit !important;
  }

  /* Remove any box shadows from pseudo-elements */
  .button:before,
  .button:after,
  .btn:before,
  .btn:after,
  button[type="submit"]:before,
  button[type="submit"]:after,
  input[type="submit"]:before,
  input[type="submit"]:after,
  .shopify-payment-button__button:before,
  .shopify-payment-button__button:after,
  .product-form__submit:before,
  .product-form__submit:after,
  .shop-add-to-cart-button:before,
  .shop-add-to-cart-button:after,
  .claim-button:before,
  .claim-button:after,
  [class*="add-to-cart"]:before,
  [class*="add-to-cart"]:after,
  [class*="add_to_cart"]:before,
  [class*="add_to_cart"]:after,
  .cart__checkout-button:before,
  .cart__checkout-button:after,
  .contact-button:before,
  .contact-button:after,
  .button--primary:before,
  .button--primary:after,
  .theme-button:before,
  .theme-button:after,
  .sticky-add-to-cart__button:before,
  .sticky-add-to-cart__button:after {
    box-shadow: none !important;
  }

  /* Shopify accelerated checkout buttons */
  .shopify-payment-button .shopify-payment-button__button,
  .shopify-payment-button .shopify-payment-button__button--unbranded,
  .shopify-payment-button .shopify-payment-button__more-options,
  .shopify-payment-button__button--branded,
  .shopify-payment-button__button--unbranded,
  .shopify-payment-button .shopify-payment-button__button:hover,
  .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .shopify-payment-button .shopify-payment-button__more-options:hover,
  .shopify-payment-button__button--branded:hover,
  .shopify-payment-button__button--unbranded:hover {
    box-shadow: none !important;
  }

  
    /* Apply button radius to other elements */
    button:not([class^="shopify"]),
    .secondary-button,
    .link-styled-button,
    [class*="button"],
    [class*="btn-"],
    .card__badge,
    .badge,
    .tag,
    .spr-button,
    .pagination__item,
    input[type="button"],
    select,
    .select__select,
    .disclosure__button,
    .filter-group,
    .facet-checkbox,
    .variant-input,
    .color-swatch,
    .swatch {
      border-radius: var(--global-button-radius);
    }

    /* Special elements with different radius */
    .pagination__item,
    .card__badge {
      border-radius: calc(var(--global-button-radius) * 0.75) !important;
    }

    /* Pill-shaped elements */
    .pill:not(.pill-item),
    .tag-label,
    [class*="pill"]:not(.pill-item),
    [class*="tag-"] {
      border-radius: 50px !important;
    }
  

  /* SPECIFIC BUTTON AND ELEMENT EXCEPTIONS */

  /* Cart drawer elements - ensure proper colors */.cart-drawer td.cart-item__details dl,
  .cart-drawer .discounts__discount,
  .totals.gb-discounts-cart-values,
  .totals.gb-discounts-cart-values h2,
  .totals.gb-discounts-cart-values .totals__total-value,
  .gb-shipping-protection-icontext p {
    color: #000000
     !important;
  }

  /* Cart drawer product price */
  .cart-drawer .cart-item__final-price.product-option {
    color: #faf7f5
     !important;
  }

  /* Remove background from cart remove buttons */
  cart-remove-button .button,
  .cart-remove-button,
  [id^="CartDrawer-Remove"] {
    background-color: transparent !important;
    border: none !important;
  }

  /* Shipping protection toggle */
  .gb-shipping-protection-button input:checked + .slider {
    background-color: #faf7f5
     !important;
  }

  /* Cart total item - inverted colors */
  span.gb-cart-total-item {
    background-color: #000000
     !important;
    color: #faf7f5
     !important;
  }

  /* Social proof bar - accent background with inverted text */
  .social-proof-bar {
    background-color: #faf7f5
     !important;
  }

  .social-proof-bar .social-proof-content,
  .social-proof-bar .social-proof-content *,
  .social-proof-bar svg,
  .social-proof-bar i,
  .social-proof-bar img,
  .social-proof-bar__text {
    color: #faf7f5
     !important;
    fill: #faf7f5
     !important;
  }

  /* Accent colored text elements */
  .accent-title,
  [class*="accent-title"],
  .accent-heading,
  [class*="accent-heading"] {
    color: #faf7f5
     !important;
  }
</style>

    

<script>
document.addEventListener('DOMContentLoaded', function() {
  // Get theme settings
  const enableBoxShadow = true;
  const shadowIntensity = 2;
  const enableGradient = true;
  const enableGradientShine = true;
  
  // If neither effect is enabled, exit early
  if (!enableBoxShadow && !enableGradient) {
    return;
  }
  
  // Debug logging
  console.log('Enhanced Button Effects:', {
    enableBoxShadow: enableBoxShadow,
    shadowIntensity: shadowIntensity,
    enableGradient: enableGradient,
    enableGradientShine: enableGradientShine
  });
  
  // Define button selectors that should receive enhanced effects
  const buttonSelectors = [
    '.button-global-style',
    '.use-global-button-styling',
    '.button',
    '.btn',
    'button[type="submit"]',
    'input[type="submit"]',
    '.product-form__submit',
    '.shop-add-to-cart-button',
    '.cart__checkout-button',
    '.button--primary',
    '.claim-button',
    '.field__button',
    '.theme-button',
    '.guarantee-section__cta',
    '.custom-hero__button',
    '.rich-text-button'
  ];
  
  // Function to apply effects to buttons
  function applyButtonEffects() {
    buttonSelectors.forEach(selector => {
      const buttons = document.querySelectorAll(selector);
              buttons.forEach(button => {
         // Skip buttons that explicitly opt out or cart remove buttons
         // Cart remove buttons should remain simple and subtle
          if (button.classList.contains('button-section-override') || 
             button.classList.contains('no-enhanced-effects') ||
             button.classList.contains('cart-remove-button') ||
             button.classList.contains('button--tertiary') ||
             button.classList.contains('disable-global-button-styling')) {
            return;
          }
        
        // Apply box shadow effect if enabled
        if (enableBoxShadow) {
          button.classList.add('button-box-shadow');
          button.classList.add(`intensity-${shadowIntensity}`);
          // console.log('Applied box shadow effect to:', button, 'with intensity:', shadowIntensity);
        }
        
        // Apply gradient effect if enabled
        if (enableGradient) {
          button.classList.add('button-gradient-effect');
          
          // Apply shine effect conditionally
          if (enableGradientShine) {
            button.classList.add('gradient-shine-enabled');
          } else {
            button.classList.remove('gradient-shine-enabled');
          }
          // console.log('Applied gradient effect to:', button, 'with shine:', enableGradientShine);
        }
      });
    });
  }
  
  // Apply effects immediately
  applyButtonEffects();
  
  // Re-apply effects when new content is loaded (for AJAX/dynamic content)
  const observer = new MutationObserver(function(mutations) {
    let shouldReapply = false;
    mutations.forEach(function(mutation) {
      mutation.addedNodes.forEach(function(node) {
        if (node.nodeType === 1) { // Element node
          // Check if the added node contains buttons
          if (node.querySelector && buttonSelectors.some(selector => node.querySelector(selector))) {
            shouldReapply = true;
          }
          // Check if the added node itself is a button
          if (buttonSelectors.some(selector => node.matches && node.matches(selector))) {
            shouldReapply = true;
          }
        }
      });
    });
    
    if (shouldReapply) {
      setTimeout(applyButtonEffects, 50); // Small delay to ensure DOM is ready
    }
  });
  
  // Start observing
  observer.observe(document.body, {
    childList: true,
    subtree: true
  });
});
</script>

<style>
  /* Enhanced button effect styling variables */
  :root {
    
    --enhanced-3d-enabled: false;
    

    
    --enhanced-gradient-enabled: true;
    
  }

  /* Critical box shadow effect overrides - must override global button styles */
  
  /* Force box-shadow to override global button box-shadow: none */
  .button-box-shadow,
  .button.button-box-shadow,
  .btn.button-box-shadow,
  button[type="submit"].button-box-shadow,
  input[type="submit"].button-box-shadow,
  .product-form__submit.button-box-shadow,
  .shop-add-to-cart-button.button-box-shadow,
  .cart__checkout-button.button-box-shadow,
  .contact-button.button-box-shadow:not(.disable-global-button-styling),
  .contact__button.button-box-shadow:not(.disable-global-button-styling),
  .button--primary.button-box-shadow,
  .claim-button.button-box-shadow,
  .newsletter-form__button.button-box-shadow:not(.disable-global-button-styling),
  .field__button.button-box-shadow:not(.disable-global-button-styling),
  .theme-button.button-box-shadow,
  .guarantee-section__cta.button-box-shadow,
  .custom-hero__button.button-box-shadow,
  .rich-text-button.button-box-shadow {
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 1;
  }

  /* Apply the correct shadow based on intensity */
  
  .button-box-shadow.intensity-1,
  .button.button-box-shadow.intensity-1,
  .btn.button-box-shadow.intensity-1,
  button[type="submit"].button-box-shadow.intensity-1,
  input[type="submit"].button-box-shadow.intensity-1,
  .product-form__submit.button-box-shadow.intensity-1,
  .shop-add-to-cart-button.button-box-shadow.intensity-1,
  .cart__checkout-button.button-box-shadow.intensity-1,
  .contact-button.button-box-shadow.intensity-1:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-1:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-1,
  .claim-button.button-box-shadow.intensity-1,
  .newsletter-form__button.button-box-shadow.intensity-1:not(.disable-global-button-styling),
  .field__button.button-box-shadow.intensity-1:not(.disable-global-button-styling),
  .theme-button.button-box-shadow.intensity-1,
  .guarantee-section__cta.button-box-shadow.intensity-1,
  .custom-hero__button.button-box-shadow.intensity-1,
  .rich-text-button.button-box-shadow.intensity-1 {
    
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
      
  }

  .button-box-shadow.intensity-1:hover,
  .button.button-box-shadow.intensity-1:hover,
  .btn.button-box-shadow.intensity-1:hover,
  button[type="submit"].button-box-shadow.intensity-1:hover,
  input[type="submit"].button-box-shadow.intensity-1:hover,
  .product-form__submit.button-box-shadow.intensity-1:hover,
  .shop-add-to-cart-button.button-box-shadow.intensity-1:hover,
  .cart__checkout-button.button-box-shadow.intensity-1:hover,
  .contact-button.button-box-shadow.intensity-1:hover:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-1:hover:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-1:hover,
  .claim-button.button-box-shadow.intensity-1:hover,
  .newsletter-form__button.button-box-shadow.intensity-1:not(.disable-global-button-styling):hover,
  .field__button.button-box-shadow.intensity-1:not(.disable-global-button-styling):hover,
  .theme-button.button-box-shadow.intensity-1:hover,
  .guarantee-section__cta.button-box-shadow.intensity-1:hover,
  .custom-hero__button.button-box-shadow.intensity-1:hover,
  .rich-text-button.button-box-shadow.intensity-1:hover {
    transform: translateY(-2px) !important;
    
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
      
  }
  
  .button-box-shadow.intensity-2,
  .button.button-box-shadow.intensity-2,
  .btn.button-box-shadow.intensity-2,
  button[type="submit"].button-box-shadow.intensity-2,
  input[type="submit"].button-box-shadow.intensity-2,
  .product-form__submit.button-box-shadow.intensity-2,
  .shop-add-to-cart-button.button-box-shadow.intensity-2,
  .cart__checkout-button.button-box-shadow.intensity-2,
  .contact-button.button-box-shadow.intensity-2:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-2:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-2,
  .claim-button.button-box-shadow.intensity-2,
  .newsletter-form__button.button-box-shadow.intensity-2:not(.disable-global-button-styling),
  .field__button.button-box-shadow.intensity-2:not(.disable-global-button-styling),
  .theme-button.button-box-shadow.intensity-2,
  .guarantee-section__cta.button-box-shadow.intensity-2,
  .custom-hero__button.button-box-shadow.intensity-2,
  .rich-text-button.button-box-shadow.intensity-2 {
    
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
      
  }

  .button-box-shadow.intensity-2:hover,
  .button.button-box-shadow.intensity-2:hover,
  .btn.button-box-shadow.intensity-2:hover,
  button[type="submit"].button-box-shadow.intensity-2:hover,
  input[type="submit"].button-box-shadow.intensity-2:hover,
  .product-form__submit.button-box-shadow.intensity-2:hover,
  .shop-add-to-cart-button.button-box-shadow.intensity-2:hover,
  .cart__checkout-button.button-box-shadow.intensity-2:hover,
  .contact-button.button-box-shadow.intensity-2:hover:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-2:hover:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-2:hover,
  .claim-button.button-box-shadow.intensity-2:hover,
  .newsletter-form__button.button-box-shadow.intensity-2:not(.disable-global-button-styling):hover,
  .field__button.button-box-shadow.intensity-2:not(.disable-global-button-styling):hover,
  .theme-button.button-box-shadow.intensity-2:hover,
  .guarantee-section__cta.button-box-shadow.intensity-2:hover,
  .custom-hero__button.button-box-shadow.intensity-2:hover,
  .rich-text-button.button-box-shadow.intensity-2:hover {
    transform: translateY(-2px) !important;
    
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
      
  }
  
  .button-box-shadow.intensity-3,
  .button.button-box-shadow.intensity-3,
  .btn.button-box-shadow.intensity-3,
  button[type="submit"].button-box-shadow.intensity-3,
  input[type="submit"].button-box-shadow.intensity-3,
  .product-form__submit.button-box-shadow.intensity-3,
  .shop-add-to-cart-button.button-box-shadow.intensity-3,
  .cart__checkout-button.button-box-shadow.intensity-3,
  .contact-button.button-box-shadow.intensity-3:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-3:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-3,
  .claim-button.button-box-shadow.intensity-3,
  .newsletter-form__button.button-box-shadow.intensity-3:not(.disable-global-button-styling),
  .field__button.button-box-shadow.intensity-3:not(.disable-global-button-styling),
  .theme-button.button-box-shadow.intensity-3,
  .guarantee-section__cta.button-box-shadow.intensity-3,
  .custom-hero__button.button-box-shadow.intensity-3,
  .rich-text-button.button-box-shadow.intensity-3 {
    
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
      
  }

  .button-box-shadow.intensity-3:hover,
  .button.button-box-shadow.intensity-3:hover,
  .btn.button-box-shadow.intensity-3:hover,
  button[type="submit"].button-box-shadow.intensity-3:hover,
  input[type="submit"].button-box-shadow.intensity-3:hover,
  .product-form__submit.button-box-shadow.intensity-3:hover,
  .shop-add-to-cart-button.button-box-shadow.intensity-3:hover,
  .cart__checkout-button.button-box-shadow.intensity-3:hover,
  .contact-button.button-box-shadow.intensity-3:hover:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-3:hover:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-3:hover,
  .claim-button.button-box-shadow.intensity-3:hover,
  .newsletter-form__button.button-box-shadow.intensity-3:not(.disable-global-button-styling):hover,
  .field__button.button-box-shadow.intensity-3:not(.disable-global-button-styling):hover,
  .theme-button.button-box-shadow.intensity-3:hover,
  .guarantee-section__cta.button-box-shadow.intensity-3:hover,
  .custom-hero__button.button-box-shadow.intensity-3:hover,
  .rich-text-button.button-box-shadow.intensity-3:hover {
    transform: translateY(-2px) !important;
    
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25) !important;
      
  }
  
  .button-box-shadow.intensity-4,
  .button.button-box-shadow.intensity-4,
  .btn.button-box-shadow.intensity-4,
  button[type="submit"].button-box-shadow.intensity-4,
  input[type="submit"].button-box-shadow.intensity-4,
  .product-form__submit.button-box-shadow.intensity-4,
  .shop-add-to-cart-button.button-box-shadow.intensity-4,
  .cart__checkout-button.button-box-shadow.intensity-4,
  .contact-button.button-box-shadow.intensity-4:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-4:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-4,
  .claim-button.button-box-shadow.intensity-4,
  .newsletter-form__button.button-box-shadow.intensity-4:not(.disable-global-button-styling),
  .field__button.button-box-shadow.intensity-4:not(.disable-global-button-styling),
  .theme-button.button-box-shadow.intensity-4,
  .guarantee-section__cta.button-box-shadow.intensity-4,
  .custom-hero__button.button-box-shadow.intensity-4,
  .rich-text-button.button-box-shadow.intensity-4 {
    
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25) !important;
      
  }

  .button-box-shadow.intensity-4:hover,
  .button.button-box-shadow.intensity-4:hover,
  .btn.button-box-shadow.intensity-4:hover,
  button[type="submit"].button-box-shadow.intensity-4:hover,
  input[type="submit"].button-box-shadow.intensity-4:hover,
  .product-form__submit.button-box-shadow.intensity-4:hover,
  .shop-add-to-cart-button.button-box-shadow.intensity-4:hover,
  .cart__checkout-button.button-box-shadow.intensity-4:hover,
  .contact-button.button-box-shadow.intensity-4:hover:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-4:hover:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-4:hover,
  .claim-button.button-box-shadow.intensity-4:hover,
  .newsletter-form__button.button-box-shadow.intensity-4:not(.disable-global-button-styling):hover,
  .field__button.button-box-shadow.intensity-4:not(.disable-global-button-styling):hover,
  .theme-button.button-box-shadow.intensity-4:hover,
  .guarantee-section__cta.button-box-shadow.intensity-4:hover,
  .custom-hero__button.button-box-shadow.intensity-4:hover,
  .rich-text-button.button-box-shadow.intensity-4:hover {
    transform: translateY(-2px) !important;
    
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
      
  }
  
  .button-box-shadow.intensity-5,
  .button.button-box-shadow.intensity-5,
  .btn.button-box-shadow.intensity-5,
  button[type="submit"].button-box-shadow.intensity-5,
  input[type="submit"].button-box-shadow.intensity-5,
  .product-form__submit.button-box-shadow.intensity-5,
  .shop-add-to-cart-button.button-box-shadow.intensity-5,
  .cart__checkout-button.button-box-shadow.intensity-5,
  .contact-button.button-box-shadow.intensity-5:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-5:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-5,
  .claim-button.button-box-shadow.intensity-5,
  .newsletter-form__button.button-box-shadow.intensity-5:not(.disable-global-button-styling),
  .field__button.button-box-shadow.intensity-5:not(.disable-global-button-styling),
  .theme-button.button-box-shadow.intensity-5,
  .guarantee-section__cta.button-box-shadow.intensity-5,
  .custom-hero__button.button-box-shadow.intensity-5,
  .rich-text-button.button-box-shadow.intensity-5 {
    
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    
  }

  .button-box-shadow.intensity-5:hover,
  .button.button-box-shadow.intensity-5:hover,
  .btn.button-box-shadow.intensity-5:hover,
  button[type="submit"].button-box-shadow.intensity-5:hover,
  input[type="submit"].button-box-shadow.intensity-5:hover,
  .product-form__submit.button-box-shadow.intensity-5:hover,
  .shop-add-to-cart-button.button-box-shadow.intensity-5:hover,
  .cart__checkout-button.button-box-shadow.intensity-5:hover,
  .contact-button.button-box-shadow.intensity-5:hover:not(.disable-global-button-styling),
  .contact__button.button-box-shadow.intensity-5:hover:not(.disable-global-button-styling),
  .button--primary.button-box-shadow.intensity-5:hover,
  .claim-button.button-box-shadow.intensity-5:hover,
  .newsletter-form__button.button-box-shadow.intensity-5:not(.disable-global-button-styling):hover,
  .field__button.button-box-shadow.intensity-5:not(.disable-global-button-styling):hover,
  .theme-button.button-box-shadow.intensity-5:hover,
  .guarantee-section__cta.button-box-shadow.intensity-5:hover,
  .custom-hero__button.button-box-shadow.intensity-5:hover,
  .rich-text-button.button-box-shadow.intensity-5:hover {
    transform: translateY(-2px) !important;
    
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35) !important;
    
  }
  

  .button-box-shadow:active,
  .button.button-box-shadow:active,
  .btn.button-box-shadow:active,
  button[type="submit"].button-box-shadow:active,
  input[type="submit"].button-box-shadow:active,
  .product-form__submit.button-box-shadow:active,
  .shop-add-to-cart-button.button-box-shadow:active,
  .cart__checkout-button.button-box-shadow:active,
  .contact-button.button-box-shadow:active:not(.disable-global-button-styling),
  .contact__button.button-box-shadow:active:not(.disable-global-button-styling),
  .button--primary.button-box-shadow:active,
  .claim-button.button-box-shadow:active,
  .newsletter-form__button.button-box-shadow:not(.disable-global-button-styling):active,
  .field__button.button-box-shadow:not(.disable-global-button-styling):active,
  .theme-button.button-box-shadow:active,
  .guarantee-section__cta.button-box-shadow:active,
  .custom-hero__button.button-box-shadow:active,
  .rich-text-button.button-box-shadow:active {
    transform: translateY(0) !important;
    }
    

    /* ===================================== */
  /* GRADIENT BACKGROUND EFFECTS */
  /* ===================================== */
  
  
  /* Apply gradient background to buttons with gradient effect class */
  .button-gradient-effect:not(.disable-global-button-styling),
  .button.button-gradient-effect:not(.disable-global-button-styling),
  .btn.button-gradient-effect:not(.disable-global-button-styling),
  button[type="submit"].button-gradient-effect:not(.disable-global-button-styling),
  input[type="submit"].button-gradient-effect:not(.disable-global-button-styling),
  .product-form__submit.button-gradient-effect:not(.disable-global-button-styling),
  .shop-add-to-cart-button.button-gradient-effect:not(.disable-global-button-styling),
  .cart__checkout-button.button-gradient-effect:not(.disable-global-button-styling),
  .contact-button.button-gradient-effect:not(.disable-global-button-styling),
  .contact__button.button-gradient-effect:not(.disable-global-button-styling),
  .button--primary.button-gradient-effect:not(.disable-global-button-styling),
  .claim-button.button-gradient-effect:not(.disable-global-button-styling),
  .newsletter-form__button.button-gradient-effect:not(.disable-global-button-styling),
  .field__button.button-gradient-effect:not(.disable-global-button-styling),
  .theme-button.button-gradient-effect:not(.disable-global-button-styling),
  .guarantee-section__cta.button-gradient-effect:not(.disable-global-button-styling),
  .custom-hero__button.button-gradient-effect:not(.disable-global-button-styling),
  .rich-text-button.button-gradient-effect:not(.disable-global-button-styling) {
    background: linear-gradient(to top, #e7cfcf, #e7cfcf) !important;
    background-color: var(--global-button-bg-color, #EF4A65) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
  }

  /* Gradient hover state */
  .button-gradient-effect:not(.disable-global-button-styling):hover,
  .button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .btn.button-gradient-effect:not(.disable-global-button-styling):hover,
  button[type="submit"].button-gradient-effect:not(.disable-global-button-styling):hover,
  input[type="submit"].button-gradient-effect:not(.disable-global-button-styling):hover,
  .product-form__submit.button-gradient-effect:not(.disable-global-button-styling):hover,
  .shop-add-to-cart-button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .cart__checkout-button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .contact-button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .contact__button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .button--primary.button-gradient-effect:not(.disable-global-button-styling):hover,
  .claim-button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .newsletter-form__button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .field__button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .theme-button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .guarantee-section__cta.button-gradient-effect:not(.disable-global-button-styling):hover,
  .custom-hero__button.button-gradient-effect:not(.disable-global-button-styling):hover,
  .rich-text-button.button-gradient-effect:not(.disable-global-button-styling):hover {
    background: linear-gradient(to top, #ffffff, #f5f5f5) !important;
    background-color: var(--global-button-hover-bg-color, #D63953) !important;
  }

  /* Gradient shine effect (animated overlay) */
  
  .button-gradient-effect.gradient-shine-enabled:not(.disable-global-button-styling)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.5s ease;
    pointer-events: none;
  }

  .button-gradient-effect.gradient-shine-enabled:not(.disable-global-button-styling):hover::before {
    left: 100%;
  }
  
  

    /* ===================================== */
    /* CRITICAL CART REMOVE BUTTON EXCLUSIONS */
    /* ===================================== */

    /*
     * Cart remove buttons must NEVER inherit any enhanced effects
     * These overrides have maximum specificity to ensure they work
     * even if classes like button-box-shadow, button-gradient-effect are applied
     */
    .cart-remove-button,
    .button--tertiary.cart-remove-button,
    button.cart-remove-button,
    .cart-remove-button.button-box-shadow,
    .cart-remove-button.button-gradient-effect,
    .cart-remove-button.intensity-1,
    .cart-remove-button.intensity-2,
    .cart-remove-button.intensity-3,
    .cart-remove-button.intensity-4,
    .cart-remove-button.intensity-5,
    .button--tertiary.cart-remove-button.button-box-shadow,
    .button--tertiary.cart-remove-button.button-gradient-effect,
    .button--tertiary.cart-remove-button.intensity-1,
    .button--tertiary.cart-remove-button.intensity-2,
    .button--tertiary.cart-remove-button.intensity-3,
    .button--tertiary.cart-remove-button.intensity-4,
    .button--tertiary.cart-remove-button.intensity-5,
    button.cart-remove-button.button-box-shadow,
    button.cart-remove-button.button-gradient-effect,
    button.cart-remove-button.intensity-1,
    button.cart-remove-button.intensity-2,
    button.cart-remove-button.intensity-3,
    button.cart-remove-button.intensity-4,
    button.cart-remove-button.intensity-5 {
      /* Reset ALL enhanced effects */
      box-shadow: none !important;
      background: var(--button-tertiary-bg, transparent) !important;
      transform: none !important;
      position: static !important;
      transition: opacity 0.2s ease !important;
      z-index: auto !important;
    }

    .cart-remove-button:hover,
    .button--tertiary.cart-remove-button:hover,
    button.cart-remove-button:hover,
    .cart-remove-button.button-box-shadow:hover,
    .cart-remove-button.button-gradient-effect:hover,
    .cart-remove-button.intensity-1:hover,
    .cart-remove-button.intensity-2:hover,
    .cart-remove-button.intensity-3:hover,
    .cart-remove-button.intensity-4:hover,
    .cart-remove-button.intensity-5:hover,
    .button--tertiary.cart-remove-button.button-box-shadow:hover,
    .button--tertiary.cart-remove-button.button-gradient-effect:hover,
    .button--tertiary.cart-remove-button.intensity-1:hover,
    .button--tertiary.cart-remove-button.intensity-2:hover,
    .button--tertiary.cart-remove-button.intensity-3:hover,
    .button--tertiary.cart-remove-button.intensity-4:hover,
    .button--tertiary.cart-remove-button.intensity-5:hover,
    button.cart-remove-button.button-box-shadow:hover,
    button.cart-remove-button.button-gradient-effect:hover,
    button.cart-remove-button.intensity-1:hover,
    button.cart-remove-button.intensity-2:hover,
    button.cart-remove-button.intensity-3:hover,
    button.cart-remove-button.intensity-4:hover,
    button.cart-remove-button.intensity-5:hover {
      box-shadow: none !important;
      transform: none !important;
      opacity: 0.7 !important;
    }

    .cart-remove-button:active,
    .button--tertiary.cart-remove-button:active,
    button.cart-remove-button:active,
    .cart-remove-button.button-box-shadow:active,
    .cart-remove-button.button-gradient-effect:active,
    .cart-remove-button.intensity-1:active,
    .cart-remove-button.intensity-2:active,
    .cart-remove-button.intensity-3:active,
    .cart-remove-button.intensity-4:active,
    .cart-remove-button.intensity-5:active,
    .button--tertiary.cart-remove-button.button-box-shadow:active,
    .button--tertiary.cart-remove-button.button-gradient-effect:active,
    .button--tertiary.cart-remove-button.intensity-1:active,
    .button--tertiary.cart-remove-button.intensity-2:active,
    .button--tertiary.cart-remove-button.intensity-3:active,
    .button--tertiary.cart-remove-button.intensity-4:active,
    .button--tertiary.cart-remove-button.intensity-5:active,
    button.cart-remove-button.button-box-shadow:active,
    button.cart-remove-button.button-gradient-effect:active,
    button.cart-remove-button.intensity-1:active,
    button.cart-remove-button.intensity-2:active,
    button.cart-remove-button.intensity-3:active,
    button.cart-remove-button.intensity-4:active,
    button.cart-remove-button.intensity-5:active {
      box-shadow: none !important;
      transform: none !important;
      opacity: 0.5 !important;
    }

    /* Remove any gradient effects that might have been applied */
    .cart-remove-button::before,
    .button--tertiary.cart-remove-button::before,
    button.cart-remove-button::before,
    .cart-remove-button.button-gradient-effect::before,
    .cart-remove-button.gradient-shine-enabled::before,
    .button--tertiary.cart-remove-button.button-gradient-effect::before,
    .button--tertiary.cart-remove-button.gradient-shine-enabled::before,
    button.cart-remove-button.button-gradient-effect::before,
    button.cart-remove-button.gradient-shine-enabled::before {
      display: none !important;
      content: none !important;
      background: none !important;
    }

    /* Additional mobile optimizations for box shadow effects */
  @media screen and (max-width: 768px) {
    .button-box-shadow {
      /* Reduce transform distance on mobile for better touch experience */
      transform: none !important;
    }

    .button-box-shadow:hover,
    .button-box-shadow:focus {
      transform: translateY(-1px) !important;
    }
  }

  /* Print media - remove box shadow effects for better printing */
  @media print {
    .button-box-shadow {
      box-shadow: none !important;
      transform: none !important;
    }

    .button-gradient-effect::before {
      display: none !important;
    }
  }

  /* Complete override for disable-global-button-styling class */
  /* These rules ensure that buttons with this class never get enhanced effects */
  /* EXCEPT cart-discount-code-button which has its own color management */
  .disable-global-button-styling:not(.cart-discount-code-button),
  .disable-global-button-styling.button-box-shadow:not(.cart-discount-code-button),
  .disable-global-button-styling.button-gradient-effect:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-1:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-2:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-3:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-4:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-5:not(.cart-discount-code-button),
  .button.disable-global-button-styling.button-box-shadow:not(.cart-discount-code-button),
  .button.disable-global-button-styling.button-gradient-effect:not(.cart-discount-code-button),
  .btn.disable-global-button-styling.button-box-shadow:not(.cart-discount-code-button),
  .btn.disable-global-button-styling.button-gradient-effect:not(.cart-discount-code-button) {
    /* Reset all enhanced button effects */
    box-shadow: none !important;
    background: unset !important;
    background-image: none !important;
    background-color: unset !important;
    transform: none !important;
    transition: none !important;
    position: static !important;
    z-index: auto !important;
    /* Keep section-specific styles (font-size, border-radius), but reset global font overrides */
    font-weight: unset !important;
    letter-spacing: unset !important;
    text-transform: unset !important;
    /* Note: border-radius and font-size are preserved from inline styles */
  }

  /* Reset hover states */
  /* EXCEPT cart-discount-code-button which has its own color management */
  .disable-global-button-styling:hover:not(.cart-discount-code-button),
  .disable-global-button-styling:focus:not(.cart-discount-code-button),
  .disable-global-button-styling.button-box-shadow:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.button-gradient-effect:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-1:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-2:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-3:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-4:hover:not(.cart-discount-code-button),
  .disable-global-button-styling.intensity-5:hover:not(.cart-discount-code-button) {
    box-shadow: none !important;
    background: unset !important;
    background-image: none !important;
    background-color: unset !important;
    transform: none !important;
    transition: none !important;
  }

  /* Reset active states */
  /* EXCEPT cart-discount-code-button which has its own color management */
  .disable-global-button-styling:active:not(.cart-discount-code-button),
  .disable-global-button-styling.button-box-shadow:active:not(.cart-discount-code-button),
  .disable-global-button-styling.button-gradient-effect:active:not(.cart-discount-code-button) {
    box-shadow: none !important;
    background: unset !important;
    background-image: none !important;
    background-color: unset !important;
    transform: none !important;
  }

  /* Remove any pseudo-elements (like gradient shine effects) */
  /* EXCEPT cart-discount-code-button which manages its own pseudo-elements */
  .disable-global-button-styling:not(.cart-discount-code-button)::before,
  .disable-global-button-styling:not(.cart-discount-code-button)::after,
  .disable-global-button-styling.button-gradient-effect:not(.cart-discount-code-button)::before,
  .disable-global-button-styling.gradient-shine-enabled:not(.cart-discount-code-button)::before {
    display: none !important;
    content: none !important;
  }
</style>

    <style>
  /* Global Title/Heading Color Overrides */
  /* Apply consistent text colors based on theme settings */

  h1, h2, h3, h4, h5, h6,
  .title, .heading,
  [class*="title"], [class*="heading"],
  .collection-hero__title,
  .main-collection-title,
  .page-title,
  .section-header__title,
  .section-title,
  .product-title,
  .collection-title,
  .blog-title,
  .card__heading,
  .headline,
  .subtitle,
  .caption-with-letter-spacing,
  .h1, .h2, .h3, .h4, .h5, .h6,
  .comparison-heading,
  .comparison-product-title,
  .statistics-section-title,
  .statistic-title,
  .alt-feat-section-title,
  .alt-feat-title,
  .as-seen-in-title,
  .custom-hero__title,
  .custom-main-heading,
  .reviews-subtitle {
    color: #000000 !important;
  }

  /* Specific title classes that might be in sections using theme colors */
  .section[data-use-theme-colors="true"] .title,
  .section[data-use-theme-colors="true"] [class*="title"],
  .section[data-use-theme-colors="true"] h1,
  .section[data-use-theme-colors="true"] h2,
  .section[data-use-theme-colors="true"] h3,
  .section[data-use-theme-colors="true"] h4,
  .section[data-use-theme-colors="true"] h5,
  .section[data-use-theme-colors="true"] h6,
  .section[data-use-theme-colors="true"] .heading,

  div[class*="section"][data-use-theme-colors="true"] .title,
  div[class*="section"][data-use-theme-colors="true"] [class*="title"],
  div[class*="section"][data-use-theme-colors="true"] h1,
  div[class*="section"][data-use-theme-colors="true"] h2,
  div[class*="section"][data-use-theme-colors="true"] h3,
  div[class*="section"][data-use-theme-colors="true"] h4,
  div[class*="section"][data-use-theme-colors="true"] h5,
  div[class*="section"][data-use-theme-colors="true"] h6,
  div[class*="section"][data-use-theme-colors="true"] .heading,

  *[data-use-theme-colors="true"] .title,
  *[data-use-theme-colors="true"] [class*="title"],
  *[data-use-theme-colors="true"] h1,
  *[data-use-theme-colors="true"] h2,
  *[data-use-theme-colors="true"] h3,
  *[data-use-theme-colors="true"] h4,
  *[data-use-theme-colors="true"] h5,
  *[data-use-theme-colors="true"] h6,
  *[data-use-theme-colors="true"] .heading {
    color: #000000 !important;
  }

  /* Specific shop product heading/title elements */
  .shop-product-title,
  .shop-product-section .title,
  .shop-product-section h1,
  .shop-product-section h2,
  .shop-product-section h3,
  .shop-product-section h4,
  .shop-product-section h5,
  .shop-product-section h6 {
    color: inherit !important;
  }

  /* Specific exceptions where accent color might be needed instead of text color */
  .accent-title,
  [class*="accent-title"],
  .accent-heading,
  [class*="accent-heading"] {
    color: #faf7f5 !important;
  }
</style>


      <link rel="preload" as="font" href="//selira.de/cdn/fonts/geist/geist_n4.6e27f20c83b0a07405328f98ff3b0be957c5d6d5.woff2" type="font/woff2" crossorigin>
      

      <link rel="preload" as="font" href="//selira.de/cdn/fonts/geist/geist_n4.6e27f20c83b0a07405328f98ff3b0be957c5d6d5.woff2" type="font/woff2" crossorigin>
      

    

    
  <!-- BEGIN app block: shopify://apps/pandectes-gdpr/blocks/banner/58c0baa2-6cc1-480c-9ea6-38d6d559556a -->
  
    
      <!-- TCF is active, scripts are loaded above -->
      
      <script>
        
          window.PandectesSettings = {"store":{"id":95276990850,"plan":"basic","theme":"Sweatbelt USA Pink","primaryLocale":"de","adminMode":false,"headless":false,"storefrontRootDomain":"","checkoutRootDomain":"","storefrontAccessToken":"","useGeolocation":false},"impressions":{"enabled":false,"timezone":"Europe/Berlin"},"tsPublished":1780496575,"declaration":{"declDays":"","declName":"","declPath":"","declType":"","isActive":false,"showType":true,"declHours":"","declWeeks":"","declYears":"","declDomain":"","declMonths":"","declMinutes":"","declPurpose":"","declSeconds":"","declSession":"","showPurpose":false,"declProvider":"","showProvider":true,"declIntroText":"","declRetention":"","declFirstParty":"","declThirdParty":"","showDateGenerated":true},"language":{"unpublished":[],"languageMode":"Single","fallbackLanguage":"de","languageDetection":"locale","languagesSupported":[]},"texts":{"managed":{"headerText":{"de":"Wir respektieren Ihre Privatsphäre"},"consentText":{"de":"Diese Website verwendet Cookies, um Ihnen ein optimales Nutzererlebnis zu bieten."},"linkText":{"de":"Mehr erfahren"},"imprintText":{"de":"Impressum"},"googleLinkText":{"de":"Googles Datenschutzbestimmungen"},"allowButtonText":{"de":"Akzeptieren"},"denyButtonText":{"de":"Ablehnen"},"dismissButtonText":{"de":"OK"},"leaveSiteButtonText":{"de":"Verlassen Sie diese Seite"},"preferencesButtonText":{"de":"Präferenzen"},"cookiePolicyText":{"de":"Cookie-Einstellungen"},"preferencesPopupTitleText":{"de":"Einwilligungseinstellungen verwalten"},"preferencesPopupIntroText":{"de":"Wir verwenden Cookies, um die Funktionalität unserer Website zu optimieren, ihre Leistung zu analysieren und Ihnen ein personalisiertes Nutzererlebnis zu bieten. Einige Cookies sind für den korrekten Betrieb der Website unerlässlich. Diese Cookies können nicht deaktiviert werden. In diesem Fenster können Sie Ihre Cookie-Einstellungen verwalten."},"preferencesPopupSaveButtonText":{"de":"Einstellungen speichern"},"preferencesPopupCloseButtonText":{"de":"Schließen"},"preferencesPopupAcceptAllButtonText":{"de":"Alle akzeptieren"},"preferencesPopupRejectAllButtonText":{"de":"Alle ablehnen"},"cookiesDetailsText":{"de":"Cookie-Details"},"preferencesPopupAlwaysAllowedText":{"de":"Immer erlaubt"},"accessSectionParagraphText":{"de":"Sie haben das Recht, jederzeit auf Ihre Daten zuzugreifen."},"accessSectionTitleText":{"de":"Datenübertragbarkeit"},"accessSectionAccountInfoActionText":{"de":"persönliche Daten"},"accessSectionDownloadReportActionText":{"de":"Alle Daten anfordern"},"accessSectionGDPRRequestsActionText":{"de":"Anfragen betroffener Personen"},"accessSectionOrdersRecordsActionText":{"de":"Aufträge"},"rectificationSectionParagraphText":{"de":"Sie haben das Recht, die Aktualisierung Ihrer Daten zu verlangen, wann immer Sie dies für angemessen halten."},"rectificationSectionTitleText":{"de":"Datenberichtigung"},"rectificationCommentPlaceholder":{"de":"Beschreiben Sie, was Sie aktualisieren möchten"},"rectificationCommentValidationError":{"de":"Kommentar ist erforderlich"},"rectificationSectionEditAccountActionText":{"de":"Aktualisierung anfordern"},"erasureSectionTitleText":{"de":"Recht auf Löschung"},"erasureSectionParagraphText":{"de":"Sie haben das Recht, die Löschung aller Ihrer Daten zu verlangen. Danach können Sie nicht mehr auf Ihr Konto zugreifen."},"erasureSectionRequestDeletionActionText":{"de":"Löschung personenbezogener Daten anfordern"},"consentDate":{"de":"Zustimmungsdatum"},"consentId":{"de":"Einwilligungs-ID"},"consentSectionChangeConsentActionText":{"de":"Einwilligungspräferenz ändern"},"consentSectionConsentedText":{"de":"Sie haben der Cookie-Richtlinie dieser Website zugestimmt am"},"consentSectionNoConsentText":{"de":"Sie haben der Cookie-Richtlinie dieser Website nicht zugestimmt."},"consentSectionTitleText":{"de":"Ihre Cookie-Einwilligung"},"consentStatus":{"de":"Einwilligungspräferenz"},"confirmationFailureMessage":{"de":"Ihre Anfrage wurde nicht bestätigt. Bitte versuchen Sie es erneut und wenn das Problem weiterhin besteht, wenden Sie sich an den Ladenbesitzer, um Hilfe zu erhalten"},"confirmationFailureTitle":{"de":"Ein Problem ist aufgetreten"},"confirmationSuccessMessage":{"de":"Wir werden uns in Kürze zu Ihrem Anliegen bei Ihnen melden."},"confirmationSuccessTitle":{"de":"Ihre Anfrage wurde bestätigt"},"guestsSupportEmailFailureMessage":{"de":"Ihre Anfrage wurde nicht übermittelt. Bitte versuchen Sie es erneut und wenn das Problem weiterhin besteht, wenden Sie sich an den Shop-Inhaber, um Hilfe zu erhalten."},"guestsSupportEmailFailureTitle":{"de":"Ein Problem ist aufgetreten"},"guestsSupportEmailPlaceholder":{"de":"E-Mail-Addresse"},"guestsSupportEmailSuccessMessage":{"de":"Wenn Sie als Kunde dieses Shops registriert sind, erhalten Sie in Kürze eine E-Mail mit Anweisungen zum weiteren Vorgehen."},"guestsSupportEmailSuccessTitle":{"de":"Vielen Dank für die Anfrage"},"guestsSupportEmailValidationError":{"de":"Email ist ungültig"},"guestsSupportInfoText":{"de":"Bitte loggen Sie sich mit Ihrem Kundenkonto ein, um fortzufahren."},"submitButton":{"de":"einreichen"},"submittingButton":{"de":"Senden..."},"cancelButton":{"de":"Abbrechen"},"declIntroText":{"de":"Wir verwenden Cookies, um die Funktionalität der Website zu optimieren, die Leistung zu analysieren und Ihnen ein personalisiertes Erlebnis zu bieten. Einige Cookies sind für den ordnungsgemäßen Betrieb der Website unerlässlich. Diese Cookies können nicht deaktiviert werden. In diesem Fenster können Sie Ihre Präferenzen für Cookies verwalten."},"declDateGenerated":{"de":"Datum generiert von"},"declName":{"de":"Name"},"declPurpose":{"de":"Zweck"},"declType":{"de":"Typ"},"declRetention":{"de":"Speicherdauer"},"declProvider":{"de":"Anbieter"},"declFirstParty":{"de":"Erstanbieter"},"declThirdParty":{"de":"Drittanbieter"},"declSeconds":{"de":"Sekunden"},"declMinutes":{"de":"Minuten"},"declHours":{"de":"Std."},"declWeeks":{"de":"Woche(n)"},"declDays":{"de":"Tage"},"declMonths":{"de":"Monate"},"declYears":{"de":"Jahre"},"declSession":{"de":"Sitzung"},"declDomain":{"de":"Domain"},"declPath":{"de":"Weg"}},"categories":{"strictlyNecessaryCookiesTitleText":{"de":"Unbedingt erforderlich"},"strictlyNecessaryCookiesDescriptionText":{"de":"Diese Cookies sind unerlässlich, damit Sie sich auf der Website bewegen und ihre Funktionen nutzen können, z. B. den Zugriff auf sichere Bereiche der Website. Ohne diese Cookies kann die Website nicht richtig funktionieren."},"functionalityCookiesTitleText":{"de":"Funktionale Cookies"},"functionalityCookiesDescriptionText":{"de":"Diese Cookies ermöglichen es der Website, verbesserte Funktionalität und Personalisierung bereitzustellen. Sie können von uns oder von Drittanbietern gesetzt werden, deren Dienste wir auf unseren Seiten hinzugefügt haben. Wenn Sie diese Cookies nicht zulassen, funktionieren einige oder alle dieser Dienste möglicherweise nicht richtig."},"performanceCookiesTitleText":{"de":"Performance-Cookies"},"performanceCookiesDescriptionText":{"de":"Diese Cookies ermöglichen es uns, die Leistung unserer Website zu überwachen und zu verbessern. Sie ermöglichen es uns beispielsweise, Besuche zu zählen, Verkehrsquellen zu identifizieren und zu sehen, welche Teile der Website am beliebtesten sind."},"targetingCookiesTitleText":{"de":"Targeting-Cookies"},"targetingCookiesDescriptionText":{"de":"Diese Cookies können von unseren Werbepartnern über unsere Website gesetzt werden. Sie können von diesen Unternehmen verwendet werden, um ein Profil Ihrer Interessen zu erstellen und Ihnen relevante Werbung auf anderen Websites anzuzeigen. Sie speichern keine direkten personenbezogenen Daten, sondern basieren auf der eindeutigen Identifizierung Ihres Browsers und Ihres Internetgeräts. Wenn Sie diese Cookies nicht zulassen, erleben Sie weniger zielgerichtete Werbung."},"unclassifiedCookiesTitleText":{"de":"Unklassifizierte Cookies"},"unclassifiedCookiesDescriptionText":{"de":"Unklassifizierte Cookies sind Cookies, die wir gerade zusammen mit den Anbietern einzelner Cookies klassifizieren."}},"auto":{}},"library":{"previewMode":false,"fadeInTimeout":0,"defaultBlocked":7,"showLink":true,"showImprintLink":false,"showGoogleLink":false,"enabled":true,"cookie":{"expiryDays":365,"secure":true,"domain":""},"dismissOnScroll":false,"dismissOnWindowClick":false,"dismissOnTimeout":false,"palette":{"popup":{"background":"#FFFFFF","backgroundForCalculations":{"a":1,"b":255,"g":255,"r":255},"text":"#000000"},"button":{"background":"transparent","backgroundForCalculations":{"a":1,"b":255,"g":255,"r":255},"text":"#000000","textForCalculation":{"a":1,"b":0,"g":0,"r":0},"border":"#000000"}},"content":{"href":"/policies/privacy-policy","imprintHref":"","close":"&#10005;","target":"","logo":"<img class=\"cc-banner-logo\" style=\"max-height: 40px;\" src=\"https://wejvjq-hg.myshopify.com/cdn/shop/files/pandectes-banner-logo.png?v=1780496575139\" alt=\"Cookie banner\" />"},"window":"<div role=\"dialog\" aria-label=\"{{header}}\" aria-describedby=\"cookieconsent:desc\" id=\"pandectes-banner\" class=\"cc-window-wrapper cc-popup-wrapper\"><div class=\"pd-cookie-banner-window cc-window {{classes}}\">{{children}}</div></div>","compliance":{"opt-both":"<div class=\"cc-compliance cc-highlight\">{{deny}}{{allow}}</div>"},"type":"opt-both","layouts":{"basic":"{{logo}}{{messagelink}}{{compliance}}{{close}}"},"position":"popup","theme":"wired","revokable":false,"animateRevokable":false,"revokableReset":false,"revokableLogoUrl":"https://wejvjq-hg.myshopify.com/cdn/shop/files/pandectes-reopen-logo.png","revokablePlacement":"bottom-left","revokableMarginHorizontal":15,"revokableMarginVertical":15,"static":false,"autoAttach":true,"hasTransition":true,"blacklistPage":[""],"elements":{"close":"<button aria-label=\"\" type=\"button\" class=\"cc-close\">{{close}}</button>","dismiss":"<button type=\"button\" class=\"cc-btn cc-btn-decision cc-dismiss\">{{dismiss}}</button>","allow":"<button type=\"button\" class=\"cc-btn cc-btn-decision cc-allow\">{{allow}}</button>","deny":"<button type=\"button\" class=\"cc-btn cc-btn-decision cc-deny\">{{deny}}</button>","preferences":"<button type=\"button\" class=\"cc-btn cc-settings\" aria-controls=\"pd-cp-preferences\" onclick=\"Pandectes.fn.openPreferences()\">{{preferences}}</button>"}},"geolocation":{"auOnly":false,"brOnly":false,"caOnly":false,"chOnly":false,"cnOnly":false,"euOnly":false,"inOnly":false,"jpOnly":false,"nzOnly":false,"thOnly":false,"trOnly":false,"zaOnly":false,"canadaOnly":false,"canadaLaw25":false,"canadaPipeda":false,"globalVisibility":true},"dsr":{"guestsSupport":false,"accessSectionDownloadReportAuto":false},"banner":{"resetTs":1769442170,"extraCss":"        .cc-banner-logo {max-width: 24em!important;}    @media(min-width: 768px) {.cc-window.cc-floating{max-width: 24em!important;width: 24em!important;}}    .cc-message, .pd-cookie-banner-window .cc-header, .cc-logo {text-align: center}    .cc-window-wrapper{z-index: 2147483647;-webkit-transition: opacity 1s ease;  transition: opacity 1s ease;}    .cc-window{z-index: 2147483647;font-family: inherit;}    .pd-cookie-banner-window .cc-header{font-family: inherit;}    .pd-cp-ui{font-family: inherit; background-color: #FFFFFF;color:#000000;}    button.pd-cp-btn, a.pd-cp-btn{}    input + .pd-cp-preferences-slider{background-color: rgba(0, 0, 0, 0.3)}    .pd-cp-scrolling-section::-webkit-scrollbar{background-color: rgba(0, 0, 0, 0.3)}    input:checked + .pd-cp-preferences-slider{background-color: rgba(0, 0, 0, 1)}    .pd-cp-scrolling-section::-webkit-scrollbar-thumb {background-color: rgba(0, 0, 0, 1)}    .pd-cp-ui-close{color:#000000;}    .pd-cp-preferences-slider:before{background-color: #FFFFFF}    .pd-cp-title:before {border-color: #000000!important}    .pd-cp-preferences-slider{background-color:#000000}    .pd-cp-toggle{color:#000000!important}    @media(max-width:699px) {.pd-cp-ui-close-top svg {fill: #000000}}    .pd-cp-toggle:hover,.pd-cp-toggle:visited,.pd-cp-toggle:active{color:#000000!important}    .pd-cookie-banner-window {box-shadow: 0 0 18px rgb(0 0 0 / 20%);}  ","customJavascript":{"useButtons":true},"showPoweredBy":false,"logoHeight":40,"revokableTrigger":false,"hybridStrict":false,"cookiesBlockedByDefault":"7","isActive":true,"implicitSavePreferences":false,"cookieIcon":false,"blockBots":false,"showCookiesDetails":true,"hasTransition":true,"blockingPage":false,"showOnlyLandingPage":false,"leaveSiteUrl":"https://pandectes.io","linkRespectStoreLang":false},"cookies":{"0":[{"name":"localization","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Lokalisierung von Shopify-Shops"}},{"name":"master_device_id","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird in Verbindung mit dem Händler-Login verwendet."}},{"name":"storefront_digest","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit dem Kundenlogin verwendet."}},{"name":"keep_alive","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"Session","session":true,"expires":1,"unit":"declSeconds","purpose":{"de":"Wird im Zusammenhang mit der Käuferlokalisierung verwendet."}},{"name":"_tracking_consent","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Tracking-Einstellungen."}},{"name":"_shopify_country","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"30 minute(s)","session":false,"expires":30,"unit":"declMinutes","purpose":{"de":"Wird im Zusammenhang mit der Kasse verwendet."}},{"name":"cart_currency","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Das Cookie ist für die sichere Checkout- und Zahlungsfunktion auf der Website erforderlich. Diese Funktion wird von shopify.com bereitgestellt."}},{"name":"cart","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Notwendig für die Warenkorbfunktion auf der Website."}},{"name":"shopify_pay_redirect","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Das Cookie ist für die sichere Checkout- und Zahlungsfunktion auf der Website erforderlich. Diese Funktion wird von shopify.com bereitgestellt."}},{"name":"_ab","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird in Verbindung mit dem Zugriff auf Admin verwendet."}},{"name":"shopify_pay","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Kasse verwendet."}},{"name":"_shopify_essential","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird auf der Kontenseite verwendet."}},{"name":"_abv","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Behalten Sie den reduzierten Zustand der Admin-Leiste bei."}},{"name":"_identity_session","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"2 year(s)","session":false,"expires":2,"unit":"declYears","purpose":{"de":"Enthält die Identitätssitzungskennung des Benutzers."}},{"name":"_master_udr","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"Session","session":true,"expires":1,"unit":"declSeconds","purpose":{"de":"Permanente Gerätekennung."}},{"name":"user","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Shop-Anmeldung verwendet."}},{"name":"user_cross_site","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Shop-Anmeldung verwendet."}},{"name":"_shopify_essential","type":"http","domain":"shopify.com","path":"/95276990850","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird auf der Kontenseite verwendet."}},{"name":"_ab","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird in Verbindung mit dem Zugriff auf Admin verwendet."}},{"name":"master_device_id","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird in Verbindung mit dem Händler-Login verwendet."}},{"name":"keep_alive","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declSeconds","purpose":{"de":"Wird im Zusammenhang mit der Käuferlokalisierung verwendet."}},{"name":"_tracking_consent","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Tracking-Einstellungen."}},{"name":"cart_currency","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Das Cookie ist für die sichere Checkout- und Zahlungsfunktion auf der Website erforderlich. Diese Funktion wird von shopify.com bereitgestellt."}},{"name":"_shopify_country","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"30 minute(s)","session":false,"expires":30,"unit":"declMinutes","purpose":{"de":"Wird im Zusammenhang mit der Kasse verwendet."}},{"name":"cart","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Notwendig für die Warenkorbfunktion auf der Website."}},{"name":"shopify_pay_redirect","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Das Cookie ist für die sichere Checkout- und Zahlungsfunktion auf der Website erforderlich. Diese Funktion wird von shopify.com bereitgestellt."}},{"name":"storefront_digest","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit dem Kundenlogin verwendet."}},{"name":"localization","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Lokalisierung von Shopify-Shops"}},{"name":"_abv","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Behalten Sie den reduzierten Zustand der Admin-Leiste bei."}},{"name":"shopify_pay","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Kasse verwendet."}},{"name":"_master_udr","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declSeconds","purpose":{"de":"Permanente Gerätekennung."}},{"name":"user","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Shop-Anmeldung verwendet."}},{"name":"user_cross_site","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Wird im Zusammenhang mit der Shop-Anmeldung verwendet."}},{"name":"_identity_session","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 year(s)","session":false,"expires":2,"unit":"declYears","purpose":{"de":"Enthält die Identitätssitzungskennung des Benutzers."}},{"name":"_shopify_test","type":"http","domain":"myshopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declYears","purpose":{"de":"A test cookie used by Shopify to verify the store's setup."}},{"name":"_shopify_test","type":"http","domain":"com","path":"/","provider":"Shopify","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declYears","purpose":{"de":"A test cookie used by Shopify to verify the store's setup."}},{"name":"discount_code","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"Session","session":true,"expires":1,"unit":"declDays","purpose":{"de":"Stores a discount code (received from an online store visit with a URL parameter) in order to the next checkout."}},{"name":"order","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"3 week(s)","session":false,"expires":3,"unit":"declWeeks","purpose":{"de":"Used to allow access to the data of the order details page of the buyer."}},{"name":"shop_pay_accelerated","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Indicates if a buyer is eligible for Shop Pay accelerated checkout."}},{"name":"_shopify_test","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"Session","session":true,"expires":1,"unit":"declYears","purpose":{"de":"A test cookie used by Shopify to verify the store's setup."}},{"name":"_shop_app_essential","type":"http","domain":".shop.app","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains essential information for the correct functionality of Shop.app."}},{"name":"auth_state_*","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"25 minute(s)","session":false,"expires":25,"unit":"declMinutes","purpose":{"de":""}},{"name":"identity-state","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 day(s)","session":false,"expires":1,"unit":"declDays","purpose":{"de":"Stores state before redirecting customers to identity authentication.\t"}},{"name":"_shopify_essential_\t","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains an opaque token that is used to identify a device for all essential purposes."}},{"name":"login_with_shop_finalize","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"5 minute(s)","session":false,"expires":5,"unit":"declMinutes","purpose":{"de":"Used to facilitate login with Shop."}},{"name":"_merchant_essential","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains essential information for the correct functionality of merchant surfaces such as the admin area."}},{"name":"order","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"3 week(s)","session":false,"expires":3,"unit":"declWeeks","purpose":{"de":"Used to allow access to the data of the order details page of the buyer."}},{"name":"discount_code","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declDays","purpose":{"de":"Stores a discount code (received from an online store visit with a URL parameter) in order to the next checkout."}},{"name":"login_with_shop_finalize","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"5 minute(s)","session":false,"expires":5,"unit":"declMinutes","purpose":{"de":"Used to facilitate login with Shop."}},{"name":"shop_pay_accelerated","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Indicates if a buyer is eligible for Shop Pay accelerated checkout."}},{"name":"auth_state_*","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"25 minute(s)","session":false,"expires":25,"unit":"declMinutes","purpose":{"de":""}},{"name":"identity-state","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 day(s)","session":false,"expires":1,"unit":"declDays","purpose":{"de":"Stores state before redirecting customers to identity authentication.\t"}},{"name":"_merchant_essential","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains essential information for the correct functionality of merchant surfaces such as the admin area."}},{"name":"_shopify_essential_\t","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains an opaque token that is used to identify a device for all essential purposes."}}],"1":[{"name":"shopify_override_user_locale","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Used as a mechanism to set User locale in admin."}},{"name":"_cfuvid","type":"http","domain":".challenges.cloudflare.com","path":"/","provider":"Cloudflare","firstParty":false,"retention":"Session","session":true,"expires":1,"unit":"declYears","purpose":{"de":"Sets a unique ID to distinguish users sharing the same IP for rate limiting."}},{"name":"shopify_override_user_locale","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Used as a mechanism to set User locale in admin."}}],"2":[{"name":"_shopify_y","type":"http","domain":".wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Shopify-Analysen."}},{"name":"_shopify_s","type":"http","domain":".wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"30 minute(s)","session":false,"expires":30,"unit":"declMinutes","purpose":{"de":"Shopify-Analysen."}},{"name":"_landing_page","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Verfolgt Zielseiten."}},{"name":"_orig_referrer","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Verfolgt Zielseiten."}},{"name":"shop_analytics","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Shopify-Analysen."}},{"name":"_landing_page","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Verfolgt Zielseiten."}},{"name":"shop_analytics","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Shopify-Analysen."}},{"name":"_orig_referrer","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"2 week(s)","session":false,"expires":2,"unit":"declWeeks","purpose":{"de":"Verfolgt Zielseiten."}},{"name":"_shopify_y","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Shopify-Analysen."}},{"name":"_shopify_analytics","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains analytics data for buyer surfaces such as the storefront or checkout."}},{"name":"_merchant_analytics","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains analytics data for the merchant session."}},{"name":"_shopify_analytics","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains analytics data for buyer surfaces such as the storefront or checkout."}},{"name":"_merchant_analytics","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains analytics data for the merchant session."}}],"4":[{"name":"_shopify_marketing","type":"http","domain":"wejvjq-hg.myshopify.com","path":"/","provider":"Shopify","firstParty":true,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains marketing data for buyer surfaces such as the storefront or checkout."}},{"name":"_shopify_marketing","type":"http","domain":"shopify.com","path":"/","provider":"Shopify","firstParty":false,"retention":"1 year(s)","session":false,"expires":1,"unit":"declYears","purpose":{"de":"Contains marketing data for buyer surfaces such as the storefront or checkout."}}],"8":[]},"blocker":{"isActive":false,"googleConsentMode":{"id":"","onlyGtm":false,"analyticsId":"","adwordsId":"","isActive":false,"adStorageCategory":4,"analyticsStorageCategory":2,"personalizationStorageCategory":1,"functionalityStorageCategory":1,"customEvent":false,"securityStorageCategory":0,"redactData":false,"urlPassthrough":false,"dataLayerProperty":"dataLayer","waitForUpdate":500,"useNativeChannel":false,"debugMode":false},"facebookPixel":{"id":"","isActive":false,"ldu":false},"amazon":{"enabled":false},"microsoft":{"isActive":false,"uetTags":""},"rakuten":{"isActive":false,"cmp":false,"ccpa":false},"klaviyoIsActive":false,"gpcIsActive":true,"clarity":{"isActive":false,"id":""},"defaultBlocked":7,"patterns":{"whiteList":[],"blackList":{"1":[],"2":[],"4":[],"8":[]},"iframesWhiteList":[],"iframesBlackList":{"1":[],"2":[],"4":[],"8":[]},"beaconsWhiteList":[],"beaconsBlackList":{"1":[],"2":[],"4":[],"8":[]}}}};
        
        window.addEventListener('DOMContentLoaded', function(){
          const script = document.createElement('script');
          
            script.src = "https://cdn.shopify.com/extensions/019efa18-3aaf-7580-9f5b-8adf3f36982e/gdpr-cookie-consent-358/assets/pandectes-core.js";
          
          script.defer = true;
          document.body.appendChild(script);
        })
      </script>
    
  




  <!-- A11y -->
  
  
  
  
  

  




<!-- END app block --><!-- BEGIN app block: shopify://apps/kaching-bundles/blocks/app-embed-block-v2/6c637362-a106-4a32-94ac-94dcfd68cdb8 --><!-- Kaching Bundles App Embed V2 -->

<!-- BEGIN app snippet: app-embed-content -->







<script>
  // Prevent duplicate initialization if both app embeds are enabled
  if (window.kachingBundlesAppEmbedLoaded) {
    console.warn('[Kaching Bundles] Multiple app embed blocks detected. Please disable one of them. Skipping duplicate initialization.');
  } else {
    window.kachingBundlesAppEmbedLoaded = true;
    window.kachingBundlesEnabled = true;
    window.kachingBundlesInitialized = false;

    // Allow calling kachingBundlesInitialize before the script is loaded
    (() => {
      let shouldInitialize = false;
      let realInitialize = null;

      window.kachingBundlesInitialize = () => {
        if (realInitialize) {
          realInitialize();
        } else {
          shouldInitialize = true;
        }
      };

      Object.defineProperty(window, '__kachingBundlesInitializeInternal', {
        set(fn) {
          realInitialize = fn;
          if (shouldInitialize) {
            shouldInitialize = false;
            fn();
          }
        },
        get() {
          return realInitialize;
        }
      });
    })();
  }
</script>

<script id="kaching-bundles-config" type="application/json">
  {
    "shopifyDomain": "wejvjq-hg.myshopify.com",
    "moneyFormat": "€{{amount_with_comma_separator}}",
    "locale": "de",
    "liquidLocale": "de",
    "country": "DE",
    "currencyRate": 1,
    "marketCurrencyCode": "EUR",
    "marketId": 101245649282,
    "productId": null,
    "storefrontAccessToken": "331276d71feddbaf6273d4c8f3393f3c",
    "includeSellingPlans": true,
    "includeAvailableQuantity": true,
    "customApiHost": null,
    "keepQuantityInput": false,
    "ignoreDeselect": false,
    "ignoreUnitPrice": false,
    "requireCustomerLogin": false,
    "abTestsRunning": false,
    "webPixel": true,
    "b2bCustomer": false,
    "isLoggedIn": false,
    "isDeprecatedAppEmbed": true,
    "preview": false,
    "defaultTranslations": {
      "system.out_of_stock": "Wir haben nicht genügend Artikel auf Lager, bitte wähle ein kleineres Paket.",
      "system.invalid_variant": "Dies ist derzeit leider nicht verfügbar.",
      "system.unavailable_option_value": "nicht verfügbar",
      "system.confirm": "Bestätigen",
      "system.cancel": "Abbrechen",
      "system.free": "GRATIS",
      "system.search": "Suche",
      "system.sort_by": "Sortieren nach",
      "system.sort_relevance": "Relevanz",
      "system.sort_newest_first": "Neueste zuerst",
      "system.sort_price_low_to_high": "Preis: Niedrig → Hoch",
      "system.sort_price_high_to_low": "Preis: Hoch → Niedrig",
      "system.no_results_found": "Keine Ergebnisse gefunden",
      "system.no_results_description": "Wir können keine Artikel finden, die Ihrer Suche entsprechen.",
      "system.clear_search": "Suche löschen",
      "system.no_products_available": "Keine Produkte verfügbar"
    },
    "customSelectors": {
      "quantity": null,
      "addToCartButton": null,
      "variantPicker": null,
      "price": null,
      "priceCompare": null
    },
    "shopCustomStyles": "",
    "featureFlags": {"cart_change_response_rewrite":false,"cart_interceptor_dedupe_disabled":false,"exclude_markets":false,"hide_missing_variants":true,"initialize_with_form_variant":true,"intercept_cart_request":true,"legacy_saved_percentage":false,"native_swatches_disabled":false,"observe_form_selling_plan":true,"percentage_cents_rounding_workaround":false,"pos_extension":false,"price_rounding_v2":true,"reinitialize_morphed_placeholders":true,"remove_variant_change_delay":false,"split_bxgy_items":false,"storefront_metaobjects":false,"variant_images":true}

  }
</script>

<!-- BEGIN app snippet: translations -->


  

<!-- END app snippet -->




  <link rel="modulepreload" href="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/kaching-bundles.js" crossorigin="anonymous" fetchpriority="high">
  
  <script type="module" src="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/loader.js" crossorigin="anonymous" fetchpriority="high"></script>
  <link rel="stylesheet" href="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/kaching-bundles.css" media="print" onload="this.media='all'" fetchpriority="high">

  <style>
    .kaching-bundles__block {
      display: none;
    }

    .kaching-bundles-sticky-atc {
      display: none;
    }
  </style>



<!-- END app snippet -->

<!-- Kaching Bundles App Embed V2 End -->


<!-- END app block --><!-- BEGIN app block: shopify://apps/gempages-builder/blocks/embed-gp-script-head/20b379d4-1b20-474c-a6ca-665c331919f3 -->














<!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->












  <script async src="https://static.klaviyo.com/onsite/js/U769R8/klaviyo.js?company_id=U769R8"></script>
  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>

  




  <script>
    window.klaviyoReviewsProductDesignMode = false
  </script>









<!-- END app block --><!-- BEGIN app block: shopify://apps/kaching-bundles/blocks/app-embed-block/6c637362-a106-4a32-94ac-94dcfd68cdb8 -->
<!-- Kaching Bundles App Embed -->

<!-- BEGIN app snippet: app-embed-content -->







<script>
  // Prevent duplicate initialization if both app embeds are enabled
  if (window.kachingBundlesAppEmbedLoaded) {
    console.warn('[Kaching Bundles] Multiple app embed blocks detected. Please disable one of them. Skipping duplicate initialization.');
  } else {
    window.kachingBundlesAppEmbedLoaded = true;
    window.kachingBundlesEnabled = true;
    window.kachingBundlesInitialized = false;

    // Allow calling kachingBundlesInitialize before the script is loaded
    (() => {
      let shouldInitialize = false;
      let realInitialize = null;

      window.kachingBundlesInitialize = () => {
        if (realInitialize) {
          realInitialize();
        } else {
          shouldInitialize = true;
        }
      };

      Object.defineProperty(window, '__kachingBundlesInitializeInternal', {
        set(fn) {
          realInitialize = fn;
          if (shouldInitialize) {
            shouldInitialize = false;
            fn();
          }
        },
        get() {
          return realInitialize;
        }
      });
    })();
  }
</script>

<script id="kaching-bundles-config" type="application/json">
  {
    "shopifyDomain": "wejvjq-hg.myshopify.com",
    "moneyFormat": "€{{amount_with_comma_separator}}",
    "locale": "de",
    "liquidLocale": "de",
    "country": "DE",
    "currencyRate": 1,
    "marketCurrencyCode": "EUR",
    "marketId": 101245649282,
    "productId": null,
    "storefrontAccessToken": "331276d71feddbaf6273d4c8f3393f3c",
    "includeSellingPlans": true,
    "includeAvailableQuantity": true,
    "customApiHost": null,
    "keepQuantityInput": false,
    "ignoreDeselect": false,
    "ignoreUnitPrice": false,
    "requireCustomerLogin": false,
    "abTestsRunning": false,
    "webPixel": true,
    "b2bCustomer": false,
    "isLoggedIn": false,
    "isDeprecatedAppEmbed": false,
    "preview": false,
    "defaultTranslations": {
      "system.out_of_stock": "Wir haben nicht genügend Artikel auf Lager, bitte wähle ein kleineres Paket.",
      "system.invalid_variant": "Dies ist derzeit leider nicht verfügbar.",
      "system.unavailable_option_value": "nicht verfügbar",
      "system.confirm": "Bestätigen",
      "system.cancel": "Abbrechen",
      "system.free": "GRATIS",
      "system.search": "Suche",
      "system.sort_by": "Sortieren nach",
      "system.sort_relevance": "Relevanz",
      "system.sort_newest_first": "Neueste zuerst",
      "system.sort_price_low_to_high": "Preis: Niedrig → Hoch",
      "system.sort_price_high_to_low": "Preis: Hoch → Niedrig",
      "system.no_results_found": "Keine Ergebnisse gefunden",
      "system.no_results_description": "Wir können keine Artikel finden, die Ihrer Suche entsprechen.",
      "system.clear_search": "Suche löschen",
      "system.no_products_available": "Keine Produkte verfügbar"
    },
    "customSelectors": {
      "quantity": null,
      "addToCartButton": null,
      "variantPicker": null,
      "price": null,
      "priceCompare": null
    },
    "shopCustomStyles": "",
    "featureFlags": {"cart_change_response_rewrite":false,"cart_interceptor_dedupe_disabled":false,"exclude_markets":false,"hide_missing_variants":true,"initialize_with_form_variant":true,"intercept_cart_request":true,"legacy_saved_percentage":false,"native_swatches_disabled":false,"observe_form_selling_plan":true,"percentage_cents_rounding_workaround":false,"pos_extension":false,"price_rounding_v2":true,"reinitialize_morphed_placeholders":true,"remove_variant_change_delay":false,"split_bxgy_items":false,"storefront_metaobjects":false,"variant_images":true}

  }
</script>

<!-- BEGIN app snippet: translations -->


  

<!-- END app snippet -->




  <link rel="modulepreload" href="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/kaching-bundles.js" crossorigin="anonymous" fetchpriority="high">
  
  <script type="module" src="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/loader.js" crossorigin="anonymous" fetchpriority="high"></script>
  <link rel="stylesheet" href="https://cdn.shopify.com/extensions/019ef6d0-ad5c-7328-ac05-a38ac17b1af3/kaching-bundles-1874/assets/kaching-bundles.css" media="print" onload="this.media='all'" fetchpriority="high">

  <style>
    .kaching-bundles__block {
      display: none;
    }

    .kaching-bundles-sticky-atc {
      display: none;
    }
  </style>



<!-- END app snippet -->

<!-- Kaching Bundles App Embed End -->


<!-- END app block --><script src="https://cdn.shopify.com/extensions/019ed4ba-5fa5-73de-9692-7b7c4c9a27fe/sea-survey-146/assets/avada-survey.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: 95276990850,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(){var wpmLoader=function(){"use strict";return function(e,d,r,n){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(!Boolean(null==(i=null==(a=window.Shopify)?void 0:a.analytics)?void 0:i.replayQueue)){var a,i;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,u,c,m,p,f,h,g,y,w,v,b,S,P=(u=(l={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+|)/}).modern,c=l.legacy,(m=navigator.userAgent).match(u)?"modern":m.match(c)?"legacy":"unknown"),C="modern"===P?"modern":"legacy",_=(null!=n?n:{modern:"",legacy:""})[C],O=[(p={baseUrl:d,hashVersion:r,buildTarget:C}).baseUrl,"/wpm","/b",p.hashVersion,"modern"===p.buildTarget?"m":"l",".js"].join(""),U=(f={version:r,bundleTarget:P,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint},h=f.version,g=f.bundleTarget,y=f.surface,w=f.pageUrl,v=f.monorailEndpoint,{emit:function(e){var d=e.status,r=e.errorMsg,n=(new Date).getTime(),o=JSON.stringify({metadata:{event_sent_at_ms:n},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:h,bundle_target:g,page_url:w,status:d,surface:y,error_msg:r},metadata:{event_created_at_ms:n}}]});if(!v)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(v,o)}catch(e){}var a=new XMLHttpRequest;try{return a.open("POST",v,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}});try{o.browserTarget=P,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,a=e.onerror,i=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,i&&(l.integrity=i,l.crossOrigin="anonymous"),s)for(var m in s)if(Object.prototype.hasOwnProperty.call(s,m))try{l.dataset[m]=s[m]}catch(e){}if(o&&l.addEventListener("load",o),a&&l.addEventListener("error",a),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:O,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null==(d=null==(e=window.Shopify)?void 0:e.analytics)?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 U.emit({status:"failed",errorMsg:"".concat(O," has failed to load")})},sri:(b=_,S=/^sha384-[A-Za-z0-9+/=]+$/,"string"==typeof b&&S.test(b)?_:""),scriptDataAttributes:o}),U.emit({status:"loading"})}catch(e){U.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}}}();wpmLoader({shopId: 95276990850,storefrontBaseUrl: "https://selira.de",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["d5bdd5d0"],webPixelsConfigList: [{"id":"3070689666","configuration":"{\"description\":\"AG Survey Analytics Pixel\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"83c5bf1aa928e57731c1a5d7aaa85f78","type":"APP","apiClientId":182609444865,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"2903507330","configuration":"{\"shopId\":\"95276990850\",\"pixelEndpoint\":\"https:\/\/wpx.svc.trueprofit.io\/api\/evt\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0c3e1c496a29e1742ccf21c8518d3164","type":"APP","apiClientId":2553263,"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"},{"id":"2751955330","configuration":"{\"accountID\":\"U769R8\",\"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":"unrestricted","enabledFlags":["9a3ed68a"]},{"id":"2746220930","configuration":"{\"shopifyDomain\":\"wejvjq-hg.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"37a769b5b668b60cb0291a05db7e9499","type":"APP","apiClientId":2935586817,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Selira","paymentSettings":{"currencyCode":"EUR"},"myshopifyDomain":"wejvjq-hg.myshopify.com","countryCode":"LV","storefrontUrl":"https:\/\/selira.de"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"products":[{"id":"15344482091394","handle":"selira-sweatbelt","title":"","vendor":"","type":null,"untranslatedTitle":null,"url":null,"remoteShopId":null,"variants":[{"id":"56681834873218","price":{"amount":0.0,"currencyCode":"EUR"},"image":null,"sku":null,"title":null,"untranslatedTitle":null}]}],"purchasingCompany":null,"page":{"pageType":"home","resourceId":null}},},"https://selira.de/cdn","6bbb0606w714c53cbpbb56e494ma9032608",{"modern":"","legacy":""},{"trekkieShim":true,"apiClientId":"580111","themeId":"188698788226","pageType":"home","shopId":"95276990850","storefrontBaseUrl":"https:\/\/selira.de","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"d5bdd5d0\"]","isMerchantRequest":"false","hashVersion":"6bbb0606w714c53cbpbb56e494ma9032608","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":"f74a043b-746b-4947-9f61-89b78d09ecd0-1782360049"}};
  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: 95276990850,
      theme_id: 188698788226,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//selira.de/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//selira.de/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//selira.de/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":95276990850,"isMerchantRequest":null,"themeId":188698788226,"themeCityHash":"5196711025242888309","contentLanguage":"de","currency":"EUR","eventMetadataId":"dca84a3e-db3b-4107-ae95-514b7fdfa310"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"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":"f74a043b-746b-4947-9f61-89b78d09ecd0-1782360049","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 = "//selira.de/cdn/shopifycloud/storefront/assets/shop_events_listener-4e26a9ce.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
  defer
  src="https://selira.de/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.6.0.min.js"
  data-application="storefront-renderer"
  data-shop-id="95276990850"
  data-render-region="gcp-us-east1"
  data-page-type="index"
  data-theme-instance-id="188698788226"
  data-theme-name="Elixir"
  data-theme-version="1.5.4"
  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://selira.de/api/collect"
></script>
</head>

  
  <body
    class="
      color-1
      animate--hover-vertical-lift
      
       h1-heading-font
       h2-heading-font
      
      
      
      
    "
    data-button-radius="40"
    data-apply-button-radius-to-all="true"
    
    data-enable-global-borders=""
  >
    
      <span class="accent-font-loader" aria-hidden="true"></span>
    

    
    

    
<section id="shopify-section-cart-drawer" class="shopify-section">

<link href="//selira.de/cdn/shop/t/13/assets/quantity-popover.css?v=108687282101593689021780232578" rel="stylesheet" type="text/css" media="all" />
<link href="//selira.de/cdn/shop/t/13/assets/component-card.css?v=155134191051117614431780232382" rel="stylesheet" type="text/css" media="all" />

<script src="//selira.de/cdn/shop/t/13/assets/cart.js?v=49597620055730706981780232367" defer="defer"></script>
<script src="//selira.de/cdn/shop/t/13/assets/cart-drawer.js?v=42671976774248908821780232365" defer="defer"></script>
<script src="//selira.de/cdn/shop/t/13/assets/quantity-popover.js?v=39533788691757820151780232579" defer="defer"></script>
















<script>
  function detectDiscountWrap() {
    const container = document.querySelector('.cart-drawer .discount_price-container');
    const discount = container?.querySelector('.discount_discount-value');
    const price = container?.querySelector('.totals__total-value');

    if (!container || !discount || !price) return;
    const discountTop = discount.getBoundingClientRect().top;
    const priceTop = price.getBoundingClientRect().top;
    console.log(discountTop, priceTop);
    if (discountTop + 5 < priceTop) {
      container.classList.add('wrap');
    } else {
      container.classList.remove('wrap');
    }
  }

  document.addEventListener('DOMContentLoaded', function () {
    detectDiscountWrap();
  });
</script>




  
  
    
    

    <script>
      const progressBarProductId = '';

      document.addEventListener('DOMContentLoaded', () => {
        // Check if there's a premium-attachment-kit block with product-specific free gifts
        const premiumKit = document.querySelector('.premium-attachment-kit');
        let freeProductId = progressBarProductId;
        
        if (premiumKit) {
          const blockFreeGiftIds = premiumKit.getAttribute('data-free-gift-product-ids');
          if (blockFreeGiftIds && blockFreeGiftIds.trim() !== '') {
            const freeGiftIds = blockFreeGiftIds.split(',').filter(id => id.trim() !== '');
            if (freeGiftIds.length > 0) {
              freeProductId = freeGiftIds[0];
              console.log('Using free gift from premium-attachment-kit block:', freeProductId);
            }
          }
        }
        
        const input = document.querySelector('.free-product-form .product-variant-id');
        if (input) {
          input.value = freeProductId;
          console.log('Free product form updated with ID:', freeProductId, 'from:', premiumKit ? 'block' : 'cart_progress_bar');
        }
      });
    </script>
  

  
  

  
    
    <script>
      const shippingProductId = '';
    </script>
  
  


<cart-drawer class="drawer is-empty">
  <div id="CartDrawer" class="gb-cart-drawer-lb cart-drawer">
    <div id="CartDrawer-Overlay" class="cart-drawer__overlay"></div>
    <div
      class="drawer__inner gradient"
      role="dialog"
      aria-modal="true"
      aria-label="Ihr Warenkorb"
      tabindex="-1"
      style="background: var(--cart-drawer-background-gradient); background-color: var(--cart-drawer-primary-background-color); color: var(--cart-drawer-primary-text-color);"
    ><div class="drawer__inner-empty">
  <div class="cart-drawer__warnings center">
    <div class="cart-drawer__empty-content">
      <h2 class="cart__empty-text">Ihr Warenkorb ist leer</h2>
      <button
        class="drawer__close"
        type="button"
        onclick="this.closest('cart-drawer').close()"
        aria-label="Schließen"
      >
        <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</span>
      </button>
      <a
        href="/products/selira-schlafmaske"
        class="button"
        style="color: var(--global_section_background_color) !important"
      >
        Weiter einkaufen
      </a><p class="cart__login-title h3">Haben Sie ein Konto?</p>
        <p class="cart__login-paragraph">
          <a href="https://selira.de/customer_authentication/redirect?locale=de&region_country=DE" class="link underlined-link">Anmelden</a> für schnelleren Checkout.
        </p></div>
  </div></div>

<div class="cart-drawer-header-blocks">
        
          
      
          
      
          
      
      </div>

      <cart-drawer-items
        
          class=" is-empty"
        
      >
        <div class="scrollable-contents ">
          <form
            action="/cart"
            id="CartDrawer-Form"
            class="cart__contents cart-drawer__form"
            method="post"
          >
            
              
                  <style>
  #CartDrawer {
  
    --cart-drawer-progress-active-color: #000000;
    --cart-drawer-progress-inactive-color: #ececec;
    --cart-drawer-progress-active-icon-fill-color: #ffffff;
  
  }

  

  .cart-drawer .free-product-progress-bar progress {
      color: var(--cart-drawer-progress-active-color);
      background-color: var(--cart-drawer-progress-inactive-color);
      
  }

  /* WebKit browsers (Chrome, Safari, Edge) */
  .cart-drawer .free-product-progress-bar progress::-webkit-progress-bar {
      background-color: var(--cart-drawer-progress-inactive-color);
      
    }

  .cart-drawer .free-product-progress-bar progress::-webkit-progress-value {
      
      background-color: var(--cart-drawer-progress-active-color);
      
      
  }

  /* Firefox */
  .cart-drawer .free-product-progress-bar progress::-moz-progress-bar {
      
      background-color: var(--cart-drawer-progress-active-color);
      
      
  }

  .free-shipping-main.free-shipping-main-color svg path,
    .free-shipping-main.free-shipping-main-color svg circle {
      fill: var(--cart-drawer-progress-active-icon-fill-color);
    }

  /* Circle icon color customization for free shipping */
  .free-shipping-main svg circle,
  .free-shipping-main svg {
    color: #000000;
  }

  /* Circle icon color customization for free gift */
  .free-gift-main svg circle,
  .free-gift-main svg {
    color: #000000;
  }

  /* Border radius customization for free shipping icon container */
  .free-shipping-main svg,
  .free-shipping-main img {
    border-radius: 50px !important;
  }

  /* Border customization for free shipping icon */
  

  /* Border radius customization for free gift icon container */
  .free-gift-main svg,
  .free-gift-main img {
    border-radius: 50px !important;
  }

  /* Border customization for free gift icon */
  

  /* Hide icons mode - reduced padding when icons are hidden */
  .cart-drawer .free-product-progress-bar.hide-icons-mode {
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0px !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress {
    height: 8px !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-webkit-progress-bar {
    height: 8px !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-webkit-progress-value {
    height: 8px !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-moz-progress-bar {
    height: 8px !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress {
    background-color: #ececec !important;
    color: #000000 !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-webkit-progress-bar {
    background-color: #ececec !important;
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-webkit-progress-value {
    
    background-color: #000000 !important;
    
  }

  .cart-drawer .free-product-progress-bar.hide-icons-mode progress::-moz-progress-bar {
    
    background-color: #000000 !important;
    
  }

  /* Container padding when icons are hidden */
  .cart-drawer .free-product-progress-bar-main:has(.hide-icons-mode) {
    padding-bottom: 12px !important;
  }

  /* Text bottom padding when icons are hidden - Multiple selectors for better compatibility */
  .cart-drawer .free-product-progress-bar-main:has(.hide-icons-mode) .free-product-progress-bar-successfull,
  .cart-drawer .free-product-progress-bar-main .free-product-progress-bar-successfull:has(+ .hide-icons-mode),
  .cart-drawer .free-product-progress-bar-successfull:has(+ .free-product-progress-bar.hide-icons-mode) {
    padding-bottom: 8px !important;
  }

  /* Typography - Font Size Customization */
  .cart-drawer .free-product-progress-bar-successfull {
    font-size: 14px !important;
  }

  .cart-drawer .reward-name {
    font-size: 10px !important;
  }
</style>

                  

<div class="free-product-progress-bar-main">
  <div
    class="free-product-progress-bar-successfull"
    data-treshold-product="10000"
  >
    
    

    
    
    

    
    
    

    

    

    
    
    
    
    
    
    

    
      
        You&#39;re €100 away from Enhanced Omega 3 Fish Oil
      
    
  </div>
  <input
    value=""
    class="free_product_progress_bar_variant"
    style="display: none !important;"
  >
  <div class="free-product-progress-bar " 
       data-free-shipping-price="4000" 
       data-free-product-price="10000"
       data-has-single-goal="false">
    
      <progress id="file" value="0" max="10000"></progress>
    
    
    
      
        <div class="free-shipping-main  first-gift">
          
              <svg
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  version="1.1"
  width="256"
  height="256"
  viewBox="0 0 256 256"
  xml:space="preserve"
>
  <g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)">
  	<path d="M 65.745 63.947 H 40.269 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 23.477 V 25.292 c 0 -0.926 -0.753 -1.679 -1.679 -1.679 H 13.093 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 48.973 c 3.131 0 5.679 2.548 5.679 5.679 v 36.655 C 67.745 63.052 66.85 63.947 65.745 63.947 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 27.389 63.947 H 13.093 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 14.295 c 1.104 0 2 0.896 2 2 S 28.493 63.947 27.389 63.947 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 83.897 63.947 H 82.74 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 1.157 c 1.159 0 2.103 -0.943 2.103 -2.103 V 39.502 c 0 -2.155 -0.967 -4.16 -2.653 -5.501 l -5.252 -4.177 c -1.238 -0.986 -2.792 -1.528 -4.375 -1.528 h -5.975 v 31.651 h 2.115 c 1.104 0 2 0.896 2 2 s -0.896 2 -2 2 h -4.115 c -1.104 0 -2 -0.896 -2 -2 V 26.296 c 0 -1.104 0.896 -2 2 -2 h 7.975 c 2.483 0 4.922 0.852 6.865 2.398 l 5.252 4.176 C 88.482 32.976 90 36.122 90 39.502 v 18.342 C 90 61.21 87.263 63.947 83.897 63.947 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 88 46.343 H 75.345 c -2.413 0 -4.376 -1.962 -4.376 -4.375 V 26.296 c 0 -1.104 0.896 -2 2 -2 s 2 0.896 2 2 v 15.671 c 0 0.207 0.169 0.375 0.376 0.375 H 88 c 1.104 0 2 0.896 2 2 S 89.104 46.343 88 46.343 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 33.829 70.387 c -4.654 0 -8.44 -3.786 -8.44 -8.439 c 0 -4.654 3.786 -8.44 8.44 -8.44 s 8.44 3.786 8.44 8.44 C 42.269 66.601 38.482 70.387 33.829 70.387 z M 33.829 57.507 c -2.448 0 -4.44 1.992 -4.44 4.44 s 1.992 4.439 4.44 4.439 s 4.44 -1.991 4.44 -4.439 S 36.277 57.507 33.829 57.507 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 76.301 70.387 c -4.654 0 -8.44 -3.786 -8.44 -8.439 c 0 -4.654 3.786 -8.44 8.44 -8.44 c 4.653 0 8.439 3.786 8.439 8.44 C 84.74 66.601 80.954 70.387 76.301 70.387 z M 76.301 57.507 c -2.448 0 -4.44 1.992 -4.44 4.44 s 1.992 4.439 4.44 4.439 s 4.439 -1.991 4.439 -4.439 S 78.749 57.507 76.301 57.507 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 65.745 51.788 H 33.829 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 31.917 c 1.104 0 2 0.896 2 2 S 66.85 51.788 65.745 51.788 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 88 51.788 h -8.641 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 H 88 c 1.104 0 2 0.896 2 2 S 89.104 51.788 88 51.788 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<circle cx="33.834" cy="61.944" r="1.634" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform="  matrix(1 0 0 1 0 0) "/>
  	<circle cx="76.304" cy="61.944" r="1.634" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform="  matrix(1 0 0 1 0 0) "/>
  	<path d="M 83.897 63.947 H 82.74 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 1.157 c 1.159 0 2.103 -0.943 2.103 -2.103 V 39.502 c 0 -2.155 -0.967 -4.16 -2.653 -5.501 l -5.252 -4.177 c -1.238 -0.986 -2.792 -1.528 -4.375 -1.528 h -5.975 v 31.651 h 2.115 c 1.104 0 2 0.896 2 2 s -0.896 2 -2 2 h -4.115 c -1.104 0 -2 -0.896 -2 -2 V 26.296 c 0 -1.104 0.896 -2 2 -2 h 7.975 c 2.483 0 4.922 0.852 6.865 2.398 l 5.252 4.176 C 88.482 32.976 90 36.122 90 39.502 v 18.342 C 90 61.21 87.263 63.947 83.897 63.947 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 24.021 51.788 H 2.165 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 21.856 c 1.104 0 2 0.896 2 2 S 25.125 51.788 24.021 51.788 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 45.165 36.186 H 2 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 43.165 c 1.104 0 2 0.896 2 2 S 46.27 36.186 45.165 36.186 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  	<path d="M 65.745 36.186 H 55.228 c -1.104 0 -2 -0.896 -2 -2 s 0.896 -2 2 -2 h 10.518 c 1.104 0 2 0.896 2 2 S 66.85 36.186 65.745 36.186 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
  </g>
</svg>

          
          <span class="reward-name">Free Shipping</span>
        </div>
      
    
    
      
        <div class="free-gift-main  second-gift">
          
              <?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.5 7.75H18.1C18.5 7.27 18.75 6.67 18.75 6C18.75 4.48 17.52 3.25 16 3.25C14.32 3.25 12.84 4.14 12 5.46C11.16 4.14 9.68 3.25 8 3.25C6.48 3.25 5.25 4.48 5.25 6C5.25 6.67 5.5 7.27 5.9 7.75H4.5C3.81 7.75 3.25 8.31 3.25 9V11.5C3.25 12.1 3.68 12.58 4.25 12.7V19.5C4.25 20.19 4.81 20.75 5.5 20.75H18.5C19.19 20.75 19.75 20.19 19.75 19.5V12.7C20.32 12.58 20.75 12.1 20.75 11.5V9C20.75 8.31 20.19 7.75 19.5 7.75ZM19.25 11.25H12.75V9.25H19.25V11.25ZM16 4.75C16.69 4.75 17.25 5.31 17.25 6C17.25 6.69 16.69 7.25 16 7.25H12.84C13.18 5.82 14.47 4.75 16 4.75ZM8 4.75C9.53 4.75 10.82 5.82 11.16 7.25H8C7.31 7.25 6.75 6.69 6.75 6C6.75 5.31 7.31 4.75 8 4.75ZM4.75 9.25H11.25V11.25H4.75V9.25ZM5.75 12.75H11.25V19.25H5.75V12.75ZM18.25 19.25H12.75V12.75H18.25V19.25Z" fill="#000000"/>
</svg>
          
          
            <span class="reward-name">Enhanced Omega 3 Fish Oil</span>
          
        </div>
      
    
  </div>
</div>
              
            
              
            
              
            
            <div id="CartDrawer-CartItems" class="drawer__contents js-contents"><p id="CartDrawer-LiveRegionText" class="visually-hidden" role="status"></p>
              <p id="CartDrawer-LineItemStatus" class="visually-hidden" aria-hidden="true" role="status">
                Wird geladen...
              </p>
            </div>

            <div id="CartDrawer-CartErrors" role="alert"></div>
          </form></div>
      </cart-drawer-items>

      <div class="drawer__footer">
        
          
        
          
        
          
              <style>
  #CartDrawer {
    
      --cart-drawer-shipping-protection-background: #f1f1f1;
      --cart-drawer-shipping-protection-border-color: #a3a3a3;
      --cart-drawer-shipping-protection-text-color: #121212;
      --cart-drawer-shipping-protection-border-size: 0px
    

  }


  .cart-drawer .gb-shipping-protection {
    background-color: var(--cart-drawer-shipping-protection-background);
    border: var(--cart-drawer-shipping-protection-border-size) solid var(--cart-drawer-shipping-protection-border-color);
    padding: 20px
      20px !important;
  }

  .cart-drawer .gb-shipping-protection-icontext h2,
  .cart-drawer .gb-shipping-protection-icontext p {
    color: var(--cart-drawer-shipping-protection-text-color) !important;
  }

  .cart-drawer .gb-shipping-protection,
  .cart-drawer .gb-shipping-protection * {
    color: var(--cart-drawer-shipping-protection-text-color) !important;
  }

  /* High-quality image rendering for shipping protection icon */
  .gb-shipping-protection-icon img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    object-fit: contain;
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Ensure container doesn't cause scaling issues */
  .gb-shipping-protection-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
  }

  /* Typography - Font Size Customization */
  /* Desktop */
  .cart-drawer .gb-shipping-protection-icontext h2 {
    font-size: 16px !important;
    
  }

  .cart-drawer .gb-shipping-protection-icontext h2 span {
    font-size: 16px !important;
  }

  .cart-drawer .gb-shipping-protection-icontext p {
    font-size: 14px !important;
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    .cart-drawer .gb-shipping-protection-icontext h2 {
      font-size: 14px !important;
      
    }

    .cart-drawer .gb-shipping-protection-icontext h2 span {
      font-size: 14px !important;
    }

    .cart-drawer .gb-shipping-protection-icontext p {
      font-size: 12px !important;
    }
  }
</style>

              
              <product-form
                style="display:none;"
                class="product-form gb-btn gbgbgb"
                data-hide-errors=""
                data-section-id="cart-drawer"
              >
                <div class="product-form__error-message-wrapper" role="alert" hidden>
                  <svg
                    aria-hidden="true"
                    focusable="false"
                    class="icon icon-error"
                    viewBox="0 0 13 13"
                  >
                    <circle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/>
                    <circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width="0.7"/>
                    <path d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/>
                    <path d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="#EB001B" stroke-width="0.7">
                  </svg>
                  <span class="product-form__error-message"></span>
                </div>

                <form
                  method="post"
                  action="/cart/add"
                  id="product-form-template--shipping-protection__main"
                  accept-charset="UTF-8"
                  class="form shipping-protection-form"
                  enctype="multipart/form-data"
                  novalidate="novalidate"
                  data-type="add-to-cart-form"
                >
                  <input
                    type="hidden"
                    name="id"
                    value=""
                    class="product-variant-id"
                  >
                  <div class="product-form__buttons"><button
                      id="ProductSubmitButton-cart_shipping_protection_fUKUqC"
                      type="submit"
                      name="add"
                      class="gb-product-shipping-protection-product-tirgger product-form__submit button button--full-width button--primary"
                      
                    >
                      <span>In den Warenkorb
</span>

<div class="loading__spinner hidden">
  <svg aria-hidden="true" focusable="false" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
    <circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
  </svg>
</div>
</button></div>
                </form>
              </product-form>
              <div class="gb-shipping-protection">
                <div class="gb-shipping-protection-icon">
                  
                    <svg
                      width="46"
                      height="46"
                      viewBox="0 0 46 46"
                      fill="none"
                      xmlns="http://www.w3.org/2000/svg"
                      xmlns:xlink="http://www.w3.org/1999/xlink"
                    >
                      <rect width="46" height="46" fill="url(#pattern0_1_81)"/>
                      <defs>
                      <pattern id="pattern0_1_81" patternContentUnits="objectBoundingBox" width="1" height="1">
                      <use xlink:href="#image0_1_81" transform="scale(0.00195312)"/>
                      </pattern>
                      <image id="image0_1_81" width="512" height="512" preserveAspectRatio="none" xlink:href="data:image/png;base64,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"/>
                      </defs>
                    </svg>
                  
                </div>
                <div class="gb-shipping-protection-icontext">
                  <h2>
                    Shipping Protection
                    <span></span>
                  </h2>
                  <p>
                    Protect your order from damage, loss, or theft during shipping
                  </p>
                </div>
                <div class="gb-shipping-protection-button">
                  <label class="switch 
              

                unchecked
              
            ">
                    <input type="checkbox" 
              

                unchecked
              
            >
                    <span class="slider round"></span>
                    <div class="spin-animation border-gray-300 h-20 w-20 animate-spin rounded-full border-8 border-t-blue-600">
                      <span></span>
                    </div>
                    <div class="complete-check">
                      <svg fill="#fff" viewBox="0 0 1920 1920" xmlns="http://www.w3.org/2000/svg">
                        <path d="M1743.858 267.012 710.747 1300.124 176.005 765.382 0 941.387l710.747 710.871 1209.24-1209.116z" fill-rule="evenodd"/>
                      </svg>
                    </div>
                  </label>
                </div>
              </div>

              <!-- CTAs -->
          
        

        <div
          class="totals gb-discounts-cart-values"
          role="status"
          style="display: flex; justify-content: space-between; align-items: end; margin-bottom: 5px; padding: 0 0px;"
        >
          <div class="totals__total">
            <span class="total_count">
              Gesamt: 0 Artikel
            </span>
          </div>
          <div class="discount_price-container">
            
<div style="display: flex; align-items: baseline;">
              

              <div class="totals__total-value">
                €0,00
              </div>
            </div>
          </div>
          <p class="gb-totals-total-value" style="display:none;">0</p>
        </div>
        <div class="cart__ctas" >
          <button
            type="submit"
            id="CartDrawer-Checkout"
            class="cart__checkout-button button"
            name="checkout"
            form="CartDrawer-Form"
            
              disabled
            
          >
            <svg
              class="icon icon-lock"
              aria-hidden="true"
              focusable="false"
              role="presentation"
              xmlns="http://www.w3.org/2000/svg"
              viewBox="0 0 24 24"
              fill="none"
              stroke="currentColor"
              stroke-width="2"
              stroke-linecap="round"
              stroke-linejoin="round"
            >
              <rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect>
              <path d="M7 11V7a5 5 0 0 1 10 0v4"></path>
            </svg>
            <span class="button-text">SECURE CHECKOUT</span>
          </button>
        </div>
        
          
        
          
        
          
        
      </div>
    </div>
  </div>
</cart-drawer>

<style>
  #CartDrawer {
    
      --global_section_background_color: #FFFFFF;
      --cart-drawer-primary-background-color: #ffffff;
      --cart-drawer-background-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%);
      --cart-drawer-primary-text-color: #121212;
      --cart-drawer-header-background: #f8f8f8;
      --cart-drawer-item-saving-color: #ef4a65;
      --cart-drawer-item-saving-background: rgba(0,0,0,0);
      --cart-drawer-checkout-button-background: #121212;
      --cart-drawer-checkout-button-text-color: #ffffff;
      --cart-drawer-fs-icon-default-color: #808080;
      --cart-drawer-fs-icon-active-color: #000000;
      --cart-drawer-icons-active-bg: #000000;
      --cart-drawer-freq-bought-background: #EDEDED;
      --cart-drawer-product-bg: #ffffff;
      --cart-drawer-footer-bg: #f8f8f8;
      --cart-drawer-secondary-text: #707070;
      --cart-drawer-accent-color: #ef4a65;
      --cart-drawer-divider-color: #e5e5e5;
      --cart-drawer-active-icon-color: #EF4A65;
      --cart-drawer-discount-bg-color: #000000;
      --cart-drawer-discount-text-color: #ffffff;
      --cart-drawer-discount-border-radius: 4px;
      --cart-drawer-discount-icon-color: #ffffff;

    
  }

    .free-shipping-main.first-gift {
      position: absolute;
      margin-left: unset;
      margin-right: unset;
      left: calc(15px + ((100% - 30px) * 40 / 100) - 15px);
    }
    .free-gift-main.first-gift {
      position: absolute;
      margin-left: unset;
      margin-right: unset;
      left: calc(15px + ((100% - 30px) * 100 / 100) - 15px);
    }
    
    /* Second gift icon: fixed at 100% (right end of progress bar) */
    .free-shipping-main.second-gift {
      position: absolute;
      margin-left: unset;
      margin-right: unset;
      left: calc(100% - 38px);
    }
    .free-gift-main.second-gift {
      position: absolute;
      margin-left: unset;
      margin-right: unset;
      left: calc(100% - 38px);
    }

  /* Free Shipping Icon Colors */
  .free-shipping-main svg path,
  .free-shipping-main svg circle {
    fill: var(--cart-drawer-fs-icon-default-color);
  }

  /* Icon container sizing for both SVG and IMG */
  .free-shipping-main svg,
  .free-shipping-main img {
    width: 30px !important;
    height: 30px !important;
    background: var(--cart-drawer-progress-inactive-color) !important;
    /* border-radius is set in cart-drawer_pgb_style.liquid based on block settings */
    padding: 4px !important;
    margin-bottom: 4px !important;
    display: block !important;
  }

  .free-gift-main svg,
  .free-gift-main img {
    width: 30px !important;
    height: 30px !important;
    background: var(--cart-drawer-progress-inactive-color) !important;
    /* border-radius is set in cart-drawer_pgb_style.liquid based on block settings */
    padding: 4px !important;
    margin-bottom: 4px !important;
    display: block !important;
  }

    /* Active state for icons */
    .free-shipping-main.free-shipping-main-color svg,
    .free-shipping-main.free-shipping-main-color img {
      background: var(--cart-drawer-progress-active-color) !important;
    }
    .free-shipping-main.free-shipping-main-color svg path,
    .free-shipping-main.free-shipping-main-color svg circle {
      fill: var(--cart-drawer-progress-active-icon-fill-color) !important;
    }

    .free-gift-main.free-gift-main-color svg,
    .free-gift-main.free-gift-main-color img {
      background: var(--cart-drawer-progress-active-color) !important;
    }
    .free-gift-main.free-gift-main-color svg path,
    .free-gift-main.free-gift-main-color svg circle {
      fill: var(--cart-drawer-progress-active-icon-fill-color) !important;
    }


  .drawer {
    visibility: hidden;
  }

  /* Apply default color to inactive gift icon */
  .free-gift-main svg path,
  .free-gift-main svg circle {
    /* Assuming gift icon also might have circles */
    fill: var(--cart-drawer-fs-icon-default-color);
  }
  .discounts {
    font-size: 1rem;
    display: flex letter-spacing: var(--letter-spacing-body);
    text-transform: uppercase;
    align-items: center;
  }

  /* Override global accent color for cart buttons */
  .cart-drawer .quantity__button,
  .cart-drawer {
    background-color: transparent !important;
    border-color: #E2E2E2 !important;
    color: currentColor !important;
  }
  .cart-drawer .cart-remove-button {
  border: none !important;
  padding: 0 !important;
  }

  .cart-drawer .quantity__button:focus,
  .cart-drawer .quantity__button:active,
  .cart-drawer .cart-remove-button:focus,
  .cart-drawer .cart-remove-button:active {
    outline: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
  }

  .cart-drawer quantity-input.quantity.cart-quantity .quantity__button:active,
  .cart-drawer quantity-input.quantity.cart-quantity .quantity__button:focus {
    background-color: #f5f5f5 !important;
  }

  .cart-drawer .cart-remove-button:hover,
  .cart-drawer .cart-remove-button:active,
  .cart-drawer .cart-remove-button:focus {
    opacity: 0.8;
    background-color: transparent !important;
  }

  /* IMPORTANT: Ensure the .gb-price-drawer-saving class always uses fixed colors regardless of theme settings */


  /*
   .gb-price-drawer-saving {
   background:rgb(255, 237, 237) !important;
   color: #FF1717 !important;
   }
*/

  /* Apply custom cart drawer colors to specific elements */.cart-drawer .drawer__header {
    background-color: var(--cart-drawer-header-background);
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    display: flex !important;
    align-items: center !important;
  }

  .cart-drawer .drawer__close {
    top: 24px !important;
  }

  .cart-drawer .drawer__contents {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .cart-drawer .cart-item {
    background-color: var(--cart-drawer-product-bg);
  }

  .cart-drawer .drawer__footer {
    background-color: var(--cart-drawer-footer-bg);
    border-top-color: var(--cart-drawer-divider-color);
    padding: 15px 15px 15px 15px !important;
  }

  .cart-drawer .drawer__cart-items-wrapper .cart-items {
    border-color: var(--cart-drawer-divider-color);
  }

  .cart-drawer .cart__checkout-button {
    background-color: var(--cart-drawer-checkout-button-background) !important;
    color: var(--cart-drawer-checkout-button-text-color) !important;
    border-radius: 4px !important;
  }

  /* Additional checkout button text color overrides */
  .cart-drawer .cart__checkout-button,
  .cart-drawer .cart__checkout-button *,
  .cart-drawer .cart__checkout-button:hover,
  .cart-drawer .cart__checkout-button:focus,
  .cart-drawer .cart__checkout-button:active,
  .cart-drawer .cart__checkout-button:visited,
  .cart-drawer button[name="add"],
  .cart-drawer input[type="submit"][name="add"] {
    color: var(--cart-drawer-checkout-button-text-color) !important;
  }

  /* Ensure checkout button text elements don't inherit other colors */
  .cart-drawer .cart__checkout-button span,
  .cart-drawer .cart__checkout-button .loading__spinner,
  .cart-drawer .cart__checkout-button .icon {
    color: var(--cart-drawer-checkout-button-text-color) !important;
  }

.cart-drawer .cart-item__price-wrapper,
.cart-drawer .totals__subtotal-value,
.cart-drawer .price--end,
.cart-drawer .product-option,
.cart-drawer .product-option *,
.cart-drawer .tax-note,
.cart-drawer .tax-note * {
  color: var(--cart-drawer-secondary-text);
}

.cart-drawer .totals__total-value {
  color: var(--cart-drawer-primary-text-color);
}

  /* Apply accent color to final price */
  .cart-drawer .cart-item__final-price.product-option,
  .cart-drawer strong.cart-item__final-price {
    color: var(--cart-drawer-accent-color) !important;
  }

  /* Apply accent color to toggle switch */
  .cart-drawer .gb-shipping-protection-button input:checked + .slider {
    background-color: var(--cart-drawer-accent-color) !important;
  }

  /* Apply accent color to toggle switch on focus */
  .cart-drawer .gb-shipping-protection-button input:focus + .slider {
    box-shadow: 0 0 1px var(--cart-drawer-accent-color) !important;
  }

  .cart-drawer .free-product-progress-bar {
    border-color: var(--cart-drawer-divider-color);
  }


  /* Removed frequently bought background color per user request */


  /*
   .cart-drawer product-info.gb-main-freq-bg-color {
   background-color: var(--cart-drawer-freq-bought-background);
   }
*/

  /* Cart item image border radius customization */
  .cart-drawer .cart-item__image,
  .cart-drawer .cart-item__image-container {
    border-radius: 8px
     !important;
  }

  cart-drawer.drawer,
  .drawer.cart-drawer,
  cart-drawer.drawer.active,
  cart-drawer .drawer {
    left: auto !important;
    right: 0 !important;
    justify-content: flex-end !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Mobile: Full width - Override component-cart-drawer.css */
  cart-drawer .drawer__inner,
  cart-drawer.is-empty .drawer__inner,
  .cart-drawer .drawer__inner,
  .drawer.active .drawer__inner {
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  /* Ensure mobile full width at smaller viewports */
  @media screen and (max-width: 749px) {
    cart-drawer .drawer__inner,
    cart-drawer.is-empty .drawer__inner,
    .cart-drawer .drawer__inner,
    .drawer.active .drawer__inner {
      max-width: 100% !important;
      width: 100% !important;
      border-radius: 0 !important;
    }
  }

  /* Desktop: Customizable width, aligned to the right */
  @media screen and (min-width: 750px) {
    cart-drawer .drawer__inner,
    cart-drawer.is-empty .drawer__inner,
    .cart-drawer .drawer__inner,
    .drawer.active .drawer__inner {
      max-width: 40rem !important;
      width: 40rem !important;
      margin-right: 0 !important;
      margin-left: auto !important;
    }
  }

  


.cart-drawer .cart-item__discounted-prices s,
.cart-drawer s.cart-item__old-price {
  color: var(--cart-drawer-secondary-text);
}


/* Cart Drawer Payment Icons */
.cart-drawer-payment-icons {
  margin-top: 4px;
  padding: 0;
}

/* Override desktop flex layout for cart drawer to stack payment icons below button */
.cart-drawer .cart__ctas {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 0px !important;
}

.cart-drawer-payment-icons .payment-icons-container {
  margin: 0;
}

.cart-drawer-payment-icons .payment-icons-wrapper {
  gap: 8px;
  justify-content: center;
}

.cart-drawer-payment-icons .payment-icon svg {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

@media screen and (max-width: 749px) {
  .cart-drawer-payment-icons {
    margin-top: 4px;
    padding: 0;
  }

  .cart-drawer-payment-icons .payment-icons-wrapper {
    gap: 6px;
  }

  .cart-drawer-payment-icons .payment-icon svg {
    height: 19.2px;
  }
}

/* Fix quantity popover to use cart drawer colors instead of global theme colors */
.cart-drawer quantity-popover .quantity {
  background: var(--cart-drawer-product-bg) !important;
  color: var(--cart-drawer-primary-text-color) !important;
}

/* Ensure quantity popover text elements inherit the cart drawer text color */
.cart-drawer quantity-popover .quantity__button,
.cart-drawer quantity-popover .quantity__input,
.cart-drawer quantity-popover .quantity__rules {
  color: var(--cart-drawer-primary-text-color);
}

/* Override quantity popover button backgrounds to match cart drawer styling */
.cart-drawer quantity-popover .quantity__button {
  background-color: transparent;
  border-color: var(--cart-drawer-divider-color);
}


/* Ensure all text elements in cart drawer use cart drawer text color */
.cart-drawer,
.cart-drawer *:not(.gb-price-drawer-saving)
:not(.cart-item__final-price)
:not(strong.cart-item__final-price)
:not(span.gb-cart-total-item)
:not(.cart__checkout-button)
:not(.cart__checkout-button *)
:not(.gb-shipping-protection)
:not(.gb-shipping-protection *)
:not(.free-shipping-main)
:not(.free-shipping-main *)
:not(.free-gift-main)
:not(.free-gift-main *)
:not(.social-proof-bar)
:not(.social-proof-bar *)
:not(.discount-banner)
:not(.discount-banner *)
:not(.upsell-button-text)
:not(.upsell-price)
:not(.upsell-add-button)
:not(.upsell-add-button *)
:not([class^="upsell-add-button-"])
:not([class^="upsell-add-button-"] *)
:not(.upsell-best-seller-tag)
:not(.upsell-best-seller-tag *)
not(.cartitem-free-product-label)
:not(.cartitem-free-product-label *)
:not(.discount_discount-value)
:not(.discount_discount-value *)
:not(.cart-discount-code-button)
:not(.cart-discount-code-button *)
:not(.cart-discount-code-input)
:not(.cart-discount-code-input *) {
  color: var(--cart-drawer-primary-text-color);
}

/* Specific overrides for common text elements */
.cart-drawer .cart-item__name,
.cart-drawer .cart-item__details,
.cart-drawer .cart-item__totals,
.cart-drawer .cart-item .product-option,
.cart-drawer .drawer__heading,
.cart-drawer .totals,
.cart-drawer .tax-note,
.cart-drawer p,
.cart-drawer span,
.cart-drawer div {
  color: var(--cart-drawer-primary-text-color);
}

/* Additional specific override for drawer heading */
.cart-drawer .drawer__heading {
  color: var(--cart-drawer-primary-text-color) !important;
  font-size: 20px !important;
}

/* Drawer Heading Font Size - Mobile */
@media only screen and (max-width: 767px) {
  .cart-drawer .drawer__heading {
    font-size: 22px !important;
  }
}

/* Make sure links respect cart drawer text color */
.cart-drawer a:not(.cart__checkout-button) {
  color: var(--cart-drawer-primary-text-color);
}

/* Specific override for cart item name link */
.cart-drawer .gb-cart-drawer-lb td.cart-item__details a.cart-item__name,
.cart-drawer .cart-item__details a.cart-item__name,
.cart-drawer a.cart-item__name {
  color: var(--cart-drawer-primary-text-color) !important;
}

/* Secondary text elements */
.cart-drawer .cart-item__price-wrapper *,
.cart-drawer .totals__subtotal-value *,
.cart-drawer .price--end * {
  color: var(--cart-drawer-secondary-text);
}

/* Cart total item badge - inverted colors for contrast */
.cart-drawer span.gb-cart-total-item {
  background-color: var(--cart-drawer-primary-text-color) !important;
  color: var(--cart-drawer-primary-background-color) !important;
}

/* Checkout button text color override */
.cart-drawer .cart__checkout-button,
.cart-drawer .cart__checkout-button * {
  color: var(--cart-drawer-checkout-button-text-color) !important;
}

/* Shipping protection text color override */


/* Free shipping icon color overrides - Default state */
.cart-drawer .free-shipping-main svg,
.cart-drawer .free-shipping-main svg path,
.cart-drawer .free-shipping-main svg circle,
.cart-drawer .free-shipping-main svg rect,
.cart-drawer .free-shipping-main svg polygon,
.cart-drawer .free-shipping-main svg g,
.cart-drawer .free-shipping-main i {
  fill: var(--cart-drawer-fs-icon-default-color) !important;
  color: var(--cart-drawer-fs-icon-default-color) !important;
}

  /* Free shipping icon color overrides - Active state */
  .cart-drawer .free-shipping-main.free-shipping-main-color svg path,
  .cart-drawer .free-shipping-main.free-shipping-main-color svg circle,
  .cart-drawer .free-shipping-main.free-shipping-main-color svg rect,
  .cart-drawer .free-shipping-main.free-shipping-main-color svg polygon,
  .cart-drawer .free-shipping-main.free-shipping-main-color svg g,
  .cart-drawer .free-shipping-main.free-shipping-main-color i {
    fill: var(--cart-drawer-progress-active-icon-fill-color) !important;
    color: var(--cart-drawer-progress-active-icon-fill-color) !important;
  }

/* Free gift icon color override - Default state */
.cart-drawer .free-gift-main svg,
.cart-drawer .free-gift-main svg path,
.cart-drawer .free-gift-main svg circle,
.cart-drawer .free-gift-main svg rect,
.cart-drawer .free-gift-main svg polygon,
.cart-drawer .free-gift-main svg g,
.cart-drawer .free-gift-main i {
  fill: var(--cart-drawer-fs-icon-default-color) !important;
  color: var(--cart-drawer-fs-icon-default-color) !important;
}

  /* Free gift icon color override - Active state */
  .cart-drawer .free-gift-main.free-gift-main-color svg path,
  .cart-drawer .free-gift-main.free-gift-main-color svg circle,
  .cart-drawer .free-gift-main.free-gift-main-color svg rect,
  .cart-drawer .free-gift-main.free-gift-main-color svg polygon,
  .cart-drawer .free-gift-main.free-gift-main-color svg g,
  .cart-drawer .free-gift-main.free-gift-main-color i {
    fill: var(--cart-drawer-progress-active-icon-fill-color) !important;
    color: var(--cart-drawer-progress-active-icon-fill-color) !important;
  }


/* Discount banner color overrides */


/* Item saving badge colors - customizable when theme colors are off */.gb-price-drawer-saving {
  
    background-color: var(--cart-drawer-item-saving-background) !important;
    color: var(--cart-drawer-item-saving-color) !important;
  
}

/* NOTE: .gb-price-drawer-saving colors are now handled conditionally near the end of the style block */

/* Apply custom cart drawer colors to specific elements */@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin-animation {
  display: none;
  position: absolute;
  height: 15px;
  width: 15px;
  border: solid;
  border-radius: calc(infinity * 1px);
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.3);
  border-top-color: #fff;
  animation: var(--animate-spin);
}

.gb-shipping-protection-button .spin-animation {
  top: 6px;
  left: 5px;
  height: 15px;
  width: 15px;
}

.cart-drawer .gb-shipping-protection .complete-check {
  display: none;
  color: white !important;
  position: absolute;
  top: 4px;
  left: 5px;
  height: 15px;
  width: 15px;
}

button.quantity__button,
button.cart-remove-button,
.gb-shipping-protection-button {
  position: relative;
}

button.cart-remove-button {
  width: 50px;
}

.quantity__button .spin-animation {
  top: 7px;
  left: 4px;
}

.cart-item__quantity .spin-animation {
  display: none;
}


.cart-drawer .bestseller-icon {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin-right: 2px;
  fill: currentColor;
}

/* Style custom SVG icons to match default icon */


.cart-drawer .placeholder-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer .placeholder-wrapper .placeholder-svg {
  width: 80%;
  height: 80%;
}


@keyframes pulse-success {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-error {
  0% {
    transform: scale(1);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: scale(1);
  }
}

/* Button spinner animation */
.button-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.is-loading {
  opacity: 0.8 !important;
}

.upsell-block-description-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  padding: 0;
  position: relative;
  z-index: 10;
  clear: both;
  overflow: visible;
}

.upsell-block-description {
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  text-align: center;
  display: block !important;
  width: 100%;
  margin: 0 auto;
  padding: 8px 16px;
  background-color: transparent;
  position: static;
  visibility: visible !important;
  opacity: 1 !important;
}

.upsell-product-container {
  margin-bottom: 4px;
  padding: 2px 13px;
  text-align: left;
  font-size: 14px;
  letter-spacing: var(--letter-spacing-body);
  font-weight: var(--font-weight-semibold) !important;
}

/* Upsell Header Styling */
.cart-drawer .upsell-header-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  padding: 0;
  position: relative;
  z-index: 10;
  clear: both;
  overflow: visible;
}

.cart-drawer .upsell-header-text {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  letter-spacing: var(--letter-spacing-body);
  /* margin and padding now controlled via inline styles in sections/cart-drawer.liquid */
  /* margin: 8px 0; */
  /* padding: 8px 16px; */
  font-weight: 500;
  background-color: transparent;
  position: static;
}

@media screen and (max-width: 749px) {
  .upsell-block-description {
    padding: 8px 15px !important;
  }
}

.upsell_slider {
  width: 100%;
  overflow-x: hidden;
}

.upsell_slider .dots-and-arrows {
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}

.upsell_slider .upsell_block_container {
  display: flex;
  text-align: center;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.upsell_block_container::-webkit-scrollbar {
  display: none;
}

.upsell_slider .upsell_block_container > div.upsell-product-container {
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-top: px;
  margin-bottom: px;
  margin-right: 0;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

.upsell_slider .slide_item {
  display: inline-flex;
  margin-left: 4px;
  margin-right: 4px;
  width: 8px;
  height: 8px;
  background: #d7d7d7;
  border-radius: 50%;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.upsell_slider .slide_item.active {
  background: #333;
}

.dots-and-arrows {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.slide-arrow {
  display: none;
  /* Hidden by default, shown on desktop */
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 8px;
}

.slide-arrow svg {
  width: 10px;
  height: 10px;
  fill: rgb(155, 155, 155);
  transition: fill 0.2s;
  background-color: white;
  border-radius: 50px;
}

.slide-arrow:hover svg {
  fill: #000;
}

@media (min-width: 768px) {
  .slide-arrow {
    display: inline-block;
  }
}

.cart-drawer,
.cart-drawer *:not(.gb-price-drawer-saving)
:not(.cart-item__final-price)
:not(strong.cart-item__final-price)
:not(span.gb-cart-total-item)
:not(.cart__checkout-button)
:not(.cart__checkout-button *)
:not(.gb-shipping-protection)
:not(.gb-shipping-protection *)
:not(.free-shipping-main)
:not(.free-shipping-main *)
:not(.free-gift-main)
:not(.free-gift-main *)
:not(.social-proof-bar)
:not(.social-proof-bar *)
:not(.discount-banner)
:not(.discount-banner *)
:not(.upsell-button-text)
:not(.upsell-price)
:not(.upsell-add-button)
:not(.upsell-add-button *)
:not([class^="upsell-add-button-"])
:not([class^="upsell-add-button-"] *)
:not(.upsell-best-seller-tag)
:not(.upsell-best-seller-tag *)
:not(.cartitem-free-product-label)
:not(.cartitem-free-product-label *)
:not(.discount_discount-value)
:not(.discount_discount-value *)
:not(.cart-discount-code-button)
:not(.cart-discount-code-button *)
:not(.cart-discount-code-input)
:not(.cart-discount-code-input *) {
  color: var(--cart-drawer-primary-text-color);
}

.is-empty .upsell_block_container,
.is-empty .upsell-block-description,
.is-empty .upsell_slider > span.slide_item,
.is-empty .dots-and-arrows {
  display: none !important;
}
</style>

</section><script>
        const show_progress_bar = document.querySelector('.free-product-progress-bar-main');
        const freeProductVariantSelected = document.querySelector('.free_product_progress_bar_variant');
      </script>
    
    
      

<script src="//selira.de/cdn/shop/t/13/assets/product-form.js?v=137741210643500055501780232571" defer="defer"></script>
<product-form
  style="display:none;"
  class="product-form gb-btn gbgbgb"
  data-hide-errors=""
  data-section-id=""
>
  <div class="product-form__error-message-wrapper" role="alert" hidden>
    <svg
      aria-hidden="true"
      focusable="false"
      class="icon icon-error"
      viewBox="0 0 13 13"
    >
      <circle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/>
      <circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width="0.7"/>
      <path d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/>
      <path d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="#EB001B" stroke-width="0.7">
    </svg>
    <span class="product-form__error-message"></span>
  </div>

  <form
    method="post"
    action="/cart/add"
    id="product-form-template--free-product__main"
    accept-charset="UTF-8"
    class="form free-product-form"
    enctype="multipart/form-data"
    novalidate="novalidate"
    data-type="add-to-cart-form"
  >
    <input
      type="hidden"
      name="id"
      value="0"
      class="product-variant-id"
    >
    <div class="product-form__buttons">
      <button
        id="ProductSubmitButton-"
        type="submit"
        name="add"
        class="gb-free-product-tirgger product-form__submit button button--full-width"
      >
        <span> </span>

<div class="loading__spinner hidden">
  <svg aria-hidden="true" focusable="false" class="spinner" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
    <circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
  </svg>
</div>
</button>
      
    </div>
  </form>
</product-form>

    
<!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--27416328241538__custom_announcement_bar_mEKTij" class="shopify-section shopify-section-group-header-group"><link href="//selira.de/cdn/shop/t/13/assets/custom-announcement-bar.css?v=117804855658554012731780232424" rel="stylesheet" type="text/css" media="all" />

<style>
  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij {
    
      background: #ffffff !important;
    
    background-image: none !important;
    overflow: hidden;
    position: relative;
  }

  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij,
  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij * {
    color: #e7cfcf !important;
    font-size: 12px;
  }

  
  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij strong,
  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij b,
  .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij .announcement-highlight {
    font-weight: 700 !important;
  }
  

  @media screen and (min-width: 750px) {
    .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij,
    .announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij * {
      font-size: 16px;
    }
  }

  /* Slider Container - fixed height from settings */
  .announcement-slider-sections--27416328241538__custom_announcement_bar_mEKTij {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    height: 40px;
  }

  @media screen and (min-width: 750px) {
    .announcement-slider-sections--27416328241538__custom_announcement_bar_mEKTij {
      height: 45px;
    }
  }

  /* All slides are absolute and fill full height */
  .announcement-slider-sections--27416328241538__custom_announcement_bar_mEKTij .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij {
    position: absolute;
    height: 100%;
  }

  .announcement-slider-sections--27416328241538__custom_announcement_bar_mEKTij .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij.active {
    position: absolute;
    height: 100%;
  }

  /* Individual Slides - active slide is relative to set container height */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    transition: transform 500ms ease;
    pointer-events: none;
    z-index: 1;
    padding: 12px 15px;
    box-sizing: border-box;
    visibility: hidden;
  }

  /* Entering slide - positioned for animation start */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij.entering {
    transform: translateY(100%);
    visibility: visible;
  }

  /* Active slide is position relative so it determines container height */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij.active {
    position: relative;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 3;
    visibility: visible;
  }

  /* Exiting slide stays fully visible while sliding out */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij.exiting {
    transform: translateY(-100%);
    z-index: 2;
    visibility: visible;
  }

  @media screen and (max-width: 749px) {
    .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij {
      padding: 13px 15px;
    }
  }

  /* Per-slide highlight text styling */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="0"] .announcement-highlight {
    color: #ffd700 !important;
    
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="1"] .announcement-highlight {
    color: #ffd700 !important;
    
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="2"] .announcement-highlight {
    color: #ffd700 !important;
    
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="3"] .announcement-highlight {
    color: #ffd700 !important;
    
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="4"] .announcement-highlight {
    color: #ffd700 !important;
    
  }

  /* Static mode (no slider) */
  .announcement-static-sections--27416328241538__custom_announcement_bar_mEKTij {
    text-align: center;
    padding: 12px 15px;
  }

  @media screen and (max-width: 749px) {
    .announcement-static-sections--27416328241538__custom_announcement_bar_mEKTij {
      padding: 13px 15px;
    }
  }

  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij p,
  .announcement-static-sections--27416328241538__custom_announcement_bar_mEKTij p {
    margin: 0;
    padding: 0;
  }

  /* Slide content wrapper with icon - applies to ALL slides */
  .announcement-slide-content-sections--27416328241538__custom_announcement_bar_mEKTij,
  .announcement-slider-sections--27416328241538__custom_announcement_bar_mEKTij .announcement-slide-content-sections--27416328241538__custom_announcement_bar_mEKTij,
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij .announcement-slide-content-sections--27416328241538__custom_announcement_bar_mEKTij {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Padding is now on the slide itself, not the content wrapper */
    padding: 0 !important;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .announcement-slide-icon-sections--27416328241538__custom_announcement_bar_mEKTij {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .announcement-slide-icon-sections--27416328241538__custom_announcement_bar_mEKTij img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij {
    display: inline;
  }

  .announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij p {
    display: inline;
    margin: 0;
    padding: 0;
  }

  @media screen and (max-width: 749px) {
    .announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij,
    .announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij p {
      display: block;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .announcement-slide-content-sections--27416328241538__custom_announcement_bar_mEKTij {
      flex-direction: row;
      gap: 8px;
      width: 100%;
    }
  }

  /* Button styling */
  .announcement-slide-button-sections--27416328241538__custom_announcement_bar_mEKTij {
    display: inline-block;
    background-color: #ffffff;
    color: #000000 !important;
    font-size: 12px !important;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    letter-spacing: var(--letter-spacing-body);
  }

  .announcement-slide-button-sections--27416328241538__custom_announcement_bar_mEKTij:hover {
    opacity: 0.85;
  }

  /* Per-slide background colors */
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="0"][data-custom-bg="true"] {
    background-color: #000000;
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="1"][data-custom-bg="true"] {
    background-color: #000000;
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="2"][data-custom-bg="true"] {
    background-color: #000000;
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="3"][data-custom-bg="true"] {
    background-color: #000000;
  }
  .announcement-slide-sections--27416328241538__custom_announcement_bar_mEKTij[data-slide-index="4"][data-custom-bg="true"] {
    background-color: #000000;
  }

  /* Navigation Arrows */
  .announcement-nav-sections--27416328241538__custom_announcement_bar_mEKTij {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .announcement-nav-sections--27416328241538__custom_announcement_bar_mEKTij:hover {
    opacity: 1;
  }

  .announcement-nav-sections--27416328241538__custom_announcement_bar_mEKTij svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #e7cfcf;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .announcement-nav-prev-sections--27416328241538__custom_announcement_bar_mEKTij {
    left: 10px;
  }

  .announcement-nav-next-sections--27416328241538__custom_announcement_bar_mEKTij {
    right: 10px;
  }

  @media screen and (min-width: 750px) {
    .announcement-nav-sections--27416328241538__custom_announcement_bar_mEKTij {
      padding: 10px;
    }

    .announcement-nav-sections--27416328241538__custom_announcement_bar_mEKTij svg {
      width: 18px;
      height: 18px;
    }

    .announcement-nav-prev-sections--27416328241538__custom_announcement_bar_mEKTij {
      left: 20px;
    }

    .announcement-nav-next-sections--27416328241538__custom_announcement_bar_mEKTij {
      right: 20px;
    }
  }

  /* Per-slide text colors - need higher specificity to override global */
  
  
  
  
  
</style>

<div class="announcement-bar-section announcement-bar-section-sections--27416328241538__custom_announcement_bar_mEKTij">
  
<div class="announcement-static-sections--27416328241538__custom_announcement_bar_mEKTij">
      <div class="announcement-slide-content announcement-slide-content-sections--27416328241538__custom_announcement_bar_mEKTij">
        <span class="announcement-slide-text announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij"><p>📦<strong> Gratis Öko Express Versand</strong></p></span>
      </div>
    </div>
  
</div>

<script>
  (function() {
    // Highlight text function
    function highlightText(container, textToHighlight) {
      if (!container || !textToHighlight || textToHighlight.trim() === '') return;
      
      const textSpan = container.querySelector('.announcement-slide-text-sections--27416328241538__custom_announcement_bar_mEKTij');
      if (!textSpan) return;
      
      const html = textSpan.innerHTML;
      const escapedText = textToHighlight.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
      const regex = new RegExp('(' + escapedText + ')', 'gi');
      
      if (regex.test(html)) {
        textSpan.innerHTML = html.replace(regex, '<span class="announcement-highlight">$1</span>');
      }
    }
    
    // Apply highlights to each slide
    
    
    
    
    
    
    
    
    
    
    // Also handle static single slide
    
  })();
</script>


</div><section id="shopify-section-sections--27416328241538__header" class="shopify-section shopify-section-group-header-group section-header"><link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/component-list-menu.css?v=155421453002808859151780232393" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/component-search.css?v=46050134216027495161780232412" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/component-menu-drawer.css?v=24282645808089425521780232399" media="print" onload="this.media='all'">
<link
  rel="stylesheet"
  href="//selira.de/cdn/shop/t/13/assets/component-cart-notification.css?v=142746375210118570841780232386"
  media="print"
  onload="this.media='all'"
><link rel="stylesheet" href="//selira.de/cdn/shop/t/13/assets/component-price.css?v=115697393100663570171780232406" media="print" onload="this.media='all'"><style>
  header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }/* Header Top Border Styling *//* Full Width Header Styling */@media screen and (min-width: 990px) {
      header-drawer {
        display: none;
      }
    }

    @media screen and (max-width: 989px) {
      .header__inline-menu {
        display: none;
      }
    }.menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  summary.list-menu__item {
    padding-right: 3rem;
    padding-right: 3rem;
  }

  .list-menu__item {
    display: flex;
    font-weight: var(--font-weight-regular);
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
  }

  .list-menu__item--link {
    text-decoration: none;
    font-weight: var(--font-weight-regular);
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  /* Header menu item spacing and styling fixes */
  .header__inline-menu .list-menu--inline > li {
    margin-right: 2rem;
  }

  .header__inline-menu .list-menu--inline > li:last-child {
    margin-right: 0;
  }

  .header__menu-item {
    text-decoration: none !important;
  }

  .header__menu-item:hover {
    text-decoration: none !important;
  }

  /* Header menu hover functionality */
  @media screen and (min-width: 990px) {
    header-menu:hover details[open] .header__submenu,
    header-menu:hover details[open] .mega-menu__content {
      opacity: 1;
      width: 150px;
      visibility: visible;
      transform: translateY(0);
    }

    .header__submenu,
    .mega-menu__content {
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    details:not([open]) .header__submenu,
    details:not([open]) .mega-menu__content {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
    }
  }

  /* Header submenu spacing and styling */
  .header__submenu {
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(var(--color-header));
    z-index: 100;
    width: auto;
    min-width: 16rem;
    max-width: 20rem;
    top: calc(80% + 5px);
  }

  .header__submenu .list-menu__item {
    padding: 0.8rem 1.5rem;
    margin: 0;
    border-bottom: none;
  }

  .header__submenu .header__menu-item {
    display: block;
    padding: 0.8rem 1.5rem;
    margin: 0;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 0;
  }

  .header__submenu .header__menu-item:hover {
    background-color: rgba(var(--color-foreground), 0.05);
    text-decoration: none;
  }

  .header__submenu li:first-child .header__menu-item {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .header__submenu li:last-child .header__menu-item {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  /* Mega menu spacing and styling */
  .mega-menu__content {
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(var(--color-header));
    z-index: 100;
    top: calc(100% + 5px);
  }

  .mega-menu__list {
    gap: 2rem;
  }

  .mega-menu__link {
    padding: 0.6rem 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mega-menu__link:hover {
    color: rgba(var(--color-foreground), 0.7);
    text-decoration: none;
  }

  .mega-menu__link--level-2 {
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
  }

  .mega-menu__list .list-unstyled {
    margin-top: 0.5rem;
  }

  .mega-menu__list .list-unstyled a {
    padding: 0.4rem 0;
    font-size: 0.9em;
    opacity: 0.8;
  }

  .mega-menu__list .list-unstyled a:hover {
    opacity: 1;
  }

  .header__menu-item.link {
    text-decoration: none !important;
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }

  
  details[open] > .header__menu-item,
  details[open]:hover > .header__menu-item {
    color: #000000 !important;
    text-decoration-color: #000000 !important;
  }
  

  /* Header menu hover functionality */
  @media screen and (min-width: 990px) {
    header-menu:hover details .header__submenu.list-menu--disclosure,
    header-menu:hover details .mega-menu__content,
    header-menu details[open] .header__submenu.list-menu--disclosure,
    header-menu details[open] .mega-menu__content {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateX(-50%) translateY(0) !important;
      display: block !important;
    }
    
    .header__submenu,
    .mega-menu__content {
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(-10px);
    }
    
    /* Ensure submenus are hidden by default */
    header-menu:not(:hover) details:not([open]) .header__submenu,
    header-menu:not(:hover) details:not([open]) .mega-menu__content {
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(-10px);
    }
  }
  
  /* Header submenu spacing and styling */
  .header__submenu {
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(var(--color-header));
    z-index: 100;
    width: auto;
    min-width: 16rem;
    max-width: 20rem;
    top: calc(100% + 5px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Ensure the parent header-menu has relative positioning */
  header-menu {
    position: relative;
  }
  
  /* Ensure submenus are initially hidden */
  .header__submenu.list-menu--disclosure {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }
  
  .header__submenu .list-menu__item {
    padding: 0.8rem 1.5rem;
    margin: 0;
    border-bottom: none;
  }
  
  .header__submenu .header__menu-item {
    display: block;
    padding: 0.8rem 1.5rem;
    margin: 0;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 0;
  }
  
  .header__submenu .header__menu-item:hover {
    background-color: rgba(var(--color-foreground), 0.05);
    text-decoration: none;
  }
  
  .header__submenu li:first-child .header__menu-item {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .header__submenu li:last-child .header__menu-item {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  /* Mega menu spacing and styling */
  .mega-menu__content {
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(var(--color-header));
    z-index: 100;
    top: calc(100% + 5px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mega-menu__list {
    gap: 2rem;
  }
  
  .mega-menu__link {
    padding: 0.6rem 0;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .mega-menu__link:hover {
    color: rgba(var(--color-foreground), 0.7);
    text-decoration: none;
  }
  
  .mega-menu__link--level-2 {
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
  }
  
  .mega-menu__list .list-unstyled {
    margin-top: 0.5rem;
  }
  
  .mega-menu__list .list-unstyled a {
    padding: 0.4rem 0;
    font-size: 0.9em;
    opacity: 0.8;
  }
  
  .mega-menu__list .list-unstyled a:hover {
    opacity: 1;
  }
</style><style data-shopify>.header-wrapper { /* Targeting .header-wrapper directly */
        /* Fallback or default background if nothing is set and you want one */color: #000000;
        /* Set CSS variable for child elements if needed */
        --color-header-foreground: #000000;
        border-bottom: 1px solid #e7cfcf;
      

      
    }

    /* Apply text color to links and icons within the header when use_theme_colors is true */
    
    .header-wrapper .header__heading-link,
    .header-wrapper .header__icon,
    .header-wrapper .list-menu__item,
    .header-wrapper .list-menu__item--link,
    .header-wrapper summary.list-menu__item,
    .header-wrapper .header__active-menu-item {
      color: rgb(var(--color-drawer-text)) !important;
    }

    .header-wrapper .header__icon svg,
    .header-wrapper .list-menu__item svg {
      fill: #000000;
    }
    

    /* Specific styling for cart bag icon */
    .cart-bag-icon {
      fill: none !important;
      height: 27px !important;
      width: 27px !important;
      stroke: rgb(var(--color-drawer-text)) !important;
    }

    .cart-bag-icon path,
    .cart-bag-icon line {
      fill: none !important;
      stroke: rgb(var(--color-drawer-text)) !important;
    }

    /* Override any icon classes that might interfere */
    svg.cart-bag-icon.icon,
    svg.cart-bag-icon.icon-cart-empty,
    svg.cart-bag-icon.icon-cart-empty-custom {
      fill: none !important;
      height: 27px !important;
      width: 27px !important;
      stroke: rgb(var(--color-drawer-text)) !important;
    }

    svg.cart-bag-icon.icon path,
    svg.cart-bag-icon.icon-cart-empty path,
    svg.cart-bag-icon.icon-cart-empty-custom path,
    svg.cart-bag-icon.icon line,
    svg.cart-bag-icon.icon-cart-empty line,
    svg.cart-bag-icon.icon-cart-empty-custom line {
      fill: none !important;
      stroke: rgb(var(--color-drawer-text)) !important;
    }

    /* Account icon sizing */
    .header__icon--account .svg-wrapper svg,
    .header__icon--account account-icon svg,
    .menu-drawer__account .svg-wrapper svg,
    .menu-drawer__account account-icon svg {
      width: 40px !important;
      height: 40px !important;
      fill: currentColor !important;
    }

    .header__icon--account .svg-wrapper,
    .header__icon--account account-icon,
    .menu-drawer__account .svg-wrapper,
    .menu-drawer__account account-icon {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

  .header {
    padding: 3px 3rem 3px 3rem;
  }


    .section-header {
      position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
      margin-bottom: 0px;
    }

    @media screen and (min-width: 750px) {
      .section-header {
        margin-bottom: 0px;
      }
    }

    @media screen and (min-width: 990px) {
      .header {
        padding-top: 6px;
        padding-bottom: 6px;
      }
    }</style><script src="//selira.de/cdn/shop/t/13/assets/cart-notification.js?v=109111075674120158271780232366" defer="defer"></script>

<sticky-header
  
    data-sticky-type="on-scroll-up"
  
  class="header-wrapper header-wrapper--border-bottom"
><header class="header header--middle-left header--mobile-center page-width header--has-menu header--has-account header--has-localizations">

<style>
  
  #menu-drawer.gradient,
  .menu-drawer__submenu.gradient,
  .menu-drawer__menu-item,
  .menu-drawer__menu-item--active,
  .menu-drawer__close-button,
  .menu-drawer__utility-links a,
  .menu-drawer__account,
  .list-social__link {
    color: rgb(var(--color-drawer-text)) !important;
  }

  .list-social__link:hover,
  .menu-drawer__menu-item:hover {
    color: rgb(var(--color-drawer-text)) !important;
  }

  .menu-drawer svg,
  .menu-drawer .svg-wrapper svg {
    fill: #000000;
  }
  
</style>

<header-drawer data-breakpoint="tablet">
  <details id="Details-menu-drawer-container" class="menu-drawer-container">
    <summary
      class="header__icon header__icon--menu header__icon--summary link focus-inset"
      aria-label="Menü"
      style="color: #000000;"
    >
      <span><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-hamburger icon-menu-custom" viewBox="0 0 100 100">
  <path fill="currentColor" d="M92.5,25 L7.5,25 C6.11928813,25 5,23.8807119 5,22.5 L5,17.5 C5,16.1192881 6.11928813,15 7.5,15 L92.5,15 C93.8807119,15 95,16.1192881 95,17.5 L95,22.5 C95,23.8807119 93.8807119,25 92.5,25 Z M95,52.5 L95,47.5 C95,46.1192881 93.8807119,45 92.5,45 L7.5,45 C6.11928813,45 5,46.1192881 5,47.5 L5,52.5 C5,53.8807119 6.11928813,55 7.5,55 L92.5,55 C93.8807119,55 95,53.8807119 95,52.5 Z M95,82.5 L95,77.5 C95,76.1192881 93.8807119,75 92.5,75 L7.5,75 C6.11928813,75 5,76.1192881 5,77.5 L5,82.5 C5,83.8807119 6.11928813,85 7.5,85 L92.5,85 C93.8807119,85 95,83.8807119 95,82.5 Z" fill-rule="nonzero"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</span>
    </summary>
    <div
      id="menu-drawer"
      class="gradient menu-drawer motion-reduce"
      style="background-color: #faf7f5;"
    >
      <div class="menu-drawer__inner-container">
        <div class="menu-drawer__navigation-container">
          <nav class="menu-drawer__navigation">
            <ul class="menu-drawer__menu has-submenu list-menu" role="list"><li><a
                      id="HeaderDrawer-home"
                      href="/"
                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
                      style="color: #000000;"
                      
                    >
                      Home 
                    </a></li><li><a
                      id="HeaderDrawer-schwitzgurtel"
                      href="/products/selira-sweatbelt"
                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
                      style="color: #000000;"
                      
                    >
                      Schwitzgürtel
                    </a></li><li><a
                      id="HeaderDrawer-uber-uns"
                      href="/pages/uber-uns"
                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
                      style="color: #000000;"
                      
                    >
                      Über uns
                    </a></li><li><a
                      id="HeaderDrawer-kontakt"
                      href="/pages/contact"
                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
                      style="color: #000000;"
                      
                    >
                      Kontakt
                    </a></li></ul>
          </nav>
          <div class="menu-drawer__utility-links"><a
                href="https://selira.de/customer_authentication/redirect?locale=de&region_country=DE"
                class="menu-drawer__account link focus-inset h5 medium-hide large-up-hide"
                style="color: #000000;"
                rel="nofollow"
              ><account-icon><span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-account icon-profile" width="24" height="24" viewBox="0 0 100 100">
  <path fill="currentColor" d="m50 24c-6.604 0-12 5.396-12 12s5.396 12 12 12 12-5.396 12-12-5.396-12-12-12zm0 4c4.442 0 8 3.558 8 8s-3.558 8-8 8-8-3.558-8-8 3.558-8 8-8zm0 23c-6.109 0-11.657 1.298-15.844 3.656-4.186 2.358-7.156 5.991-7.156 10.344v9c0 1.104 0.896 2 2 2h42c1.104 0 2-0.896 2-2v-9c0-4.353-2.969-7.985-7.156-10.344s-9.734-3.656-15.844-3.656zm0 4c5.525 0 10.47 1.238 13.875 3.156s5.125 4.302 5.125 6.844v7h-38v-7c0-2.541 1.72-4.926 5.125-6.844 3.405-1.918 8.35-3.156 13.875-3.156z" fill-rule="evenodd"/>
</svg>
</span></account-icon>Anmelden</a><div class="menu-drawer__localization header-localization"><localization-form><form method="post" action="/localization" id="HeaderCountryMobileForm" accept-charset="UTF-8" class="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" /><div>
                        <h2 class="visually-hidden" id="HeaderCountryMobileLabel">
                          Land/Region
                        </h2>

<div class="disclosure">
  <button
    type="button"
    class="disclosure__button localization-form__select localization-selector link link--text caption-large"
    aria-expanded="false"
    aria-controls="HeaderCountryMobile-country-results"
    aria-describedby="HeaderCountryMobileLabel"
  >
    <span>Deutschland |
      EUR
      €</span>
    <svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>

  </button>
  <div class="disclosure__list-wrapper country-selector" hidden>
    <div class="country-filter country-filter--no-padding">
      
      <button
        class="country-selector__close-button button--small link"
        type="button"
        aria-label="Schließen"
      ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>
    </div>
    <div id="sr-country-search-results" class="visually-hidden" aria-live="polite"></div>
    <div
      class="disclosure__list country-selector__list country-selector__list--with-multiple-currencies"
      id="HeaderCountryMobile-country-results"
    >
      
      <ul role="list" class="list-unstyled countries"><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
                aria-current="true"
              
              data-value="DE"
              id="Deutschland"
            >
              <span
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Deutschland</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="AT"
              id="Österreich"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Österreich</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="CH"
              id="Schweiz"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Schweiz</span>
              <span class="localization-form__currency motion-reduce">
                CHF
                CHF</span>
            </a>
          </li></ul>
    </div>
  </div>
  <div class="country-selector__overlay"></div>
</div>
<input type="hidden" name="country_code" value="DE">
</div></form></localization-form>
                
</div><ul class="list list-social list-unstyled" role="list"></ul>
          </div>
        </div>
      </div>
    </div>
  </details>
</header-drawer>
<h1 class="header__heading"><a href="/" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper">
            
            <img src="//selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&amp;width=1200" alt="Selira" srcset="//selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&amp;width=70 70w, //selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&amp;width=105 105w, //selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&amp;width=140 140w, //selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&amp;width=210 210w" width="70" height="70.0" loading="eager" class="header__heading-logo motion-reduce" sizes="(max-width: 767px) 50vw, (max-width: 1199px) 70px, 70px">
          </div></a></h1>

<style>
  
  .header__menu-item:hover,
  .header__active-menu-item,
  .list-menu__item--active,
  .header__menu-item:hover span {
    color: rgb(var(--color-drawer-text)) !important;
  }
  
</style>

<nav class="header__inline-menu">
  <ul
    class="list-menu list-menu--inline"
    role="list"
    style="color: #000000;"
  ><li><a
            id="HeaderMenu-home"
            href="/"
            class="header__menu-item list-menu__item link link--text focus-inset"
            style="color: #000000;"
            
          >
            <span
            >Home </span>
          </a></li><li><a
            id="HeaderMenu-schwitzgurtel"
            href="/products/selira-sweatbelt"
            class="header__menu-item list-menu__item link link--text focus-inset"
            style="color: #000000;"
            
          >
            <span
            >Schwitzgürtel</span>
          </a></li><li><a
            id="HeaderMenu-uber-uns"
            href="/pages/uber-uns"
            class="header__menu-item list-menu__item link link--text focus-inset"
            style="color: #000000;"
            
          >
            <span
            >Über uns</span>
          </a></li><li><a
            id="HeaderMenu-kontakt"
            href="/pages/contact"
            class="header__menu-item list-menu__item link link--text focus-inset"
            style="color: #000000;"
            
          >
            <span
            >Kontakt</span>
          </a></li></ul>
</nav>

<div class="header__icons header__icons--localization header-localization">
      <div class="desktop-localization-wrapper"><localization-form class="small-hide medium-hide" data-prevent-hide><form method="post" action="/localization" id="HeaderCountryForm" accept-charset="UTF-8" class="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" /><div>
                <h2 class="visually-hidden" id="HeaderCountryLabel">Land/Region</h2>

<div class="disclosure">
  <button
    type="button"
    class="disclosure__button localization-form__select localization-selector link link--text caption-large"
    aria-expanded="false"
    aria-controls="HeaderCountry-country-results"
    aria-describedby="HeaderCountryLabel"
  >
    <span>Deutschland |
      EUR
      €</span>
    <svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>

  </button>
  <div class="disclosure__list-wrapper country-selector" hidden>
    <div class="country-filter country-filter--no-padding">
      
      <button
        class="country-selector__close-button button--small link"
        type="button"
        aria-label="Schließen"
      ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>
    </div>
    <div id="sr-country-search-results" class="visually-hidden" aria-live="polite"></div>
    <div
      class="disclosure__list country-selector__list country-selector__list--with-multiple-currencies"
      id="HeaderCountry-country-results"
    >
      
      <ul role="list" class="list-unstyled countries"><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
                aria-current="true"
              
              data-value="DE"
              id="Deutschland"
            >
              <span
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Deutschland</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="AT"
              id="Österreich"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Österreich</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="CH"
              id="Schweiz"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Schweiz</span>
              <span class="localization-form__currency motion-reduce">
                CHF
                CHF</span>
            </a>
          </li></ul>
    </div>
  </div>
  <div class="country-selector__overlay"></div>
</div>
<input type="hidden" name="country_code" value="DE">
</div></form></localization-form>
        
</div>
      
<a
          href="https://selira.de/customer_authentication/redirect?locale=de&region_country=DE"
          class="header__icon header__icon--account link focus-inset small-hide"
          rel="nofollow"
          style="color: #000000;"
        ><account-icon><span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-account icon-profile" width="24" height="24" viewBox="0 0 100 100">
  <path fill="currentColor" d="m50 24c-6.604 0-12 5.396-12 12s5.396 12 12 12 12-5.396 12-12-5.396-12-12-12zm0 4c4.442 0 8 3.558 8 8s-3.558 8-8 8-8-3.558-8-8 3.558-8 8-8zm0 23c-6.109 0-11.657 1.298-15.844 3.656-4.186 2.358-7.156 5.991-7.156 10.344v9c0 1.104 0.896 2 2 2h42c1.104 0 2-0.896 2-2v-9c0-4.353-2.969-7.985-7.156-10.344s-9.734-3.656-15.844-3.656zm0 4c5.525 0 10.47 1.238 13.875 3.156s5.125 4.302 5.125 6.844v7h-38v-7c0-2.541 1.72-4.926 5.125-6.844 3.405-1.918 8.35-3.156 13.875-3.156z" fill-rule="evenodd"/>
</svg>
</span></account-icon><span class="visually-hidden">Anmelden</span>
        </a><a
        href="/cart"
        class="header__icon header__icon--cart link focus-inset"
        id="cart-icon-bubble"
        data-cart-icon-type="bag"
        style="color: #000000;"
      >
        
          <span class="svg-wrapper">
            <svg
              class="cart-bag-icon"
              xmlns="http://www.w3.org/2000/svg"
              width="20"
              height="20"
              viewBox="0 0 24 24"
              fill="none"
              stroke="rgb(var(--color-drawer-text))"
              stroke-width="1.5"
              stroke-linecap="round"
              stroke-linejoin="round"
            >
              <path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path>
              <line x1="3" y1="6" x2="21" y2="6"></line>
              <path d="M16 10a4 4 0 0 1-8 0"></path>
            </svg>
          </span>
        
        <span class="visually-hidden">Warenkorb</span></a>
    </div>
  </header>
</sticky-header>

<script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "Organization",
    "name": "Selira",
    
      "logo": "https:\/\/selira.de\/cdn\/shop\/files\/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783\u0026width=500",
    
    "sameAs": [
      "",
      "",
      "",
      "",
      "",
      "",
      "",
      "",
      ""
    ],
    "url": "https:\/\/selira.de"
  }
</script>
  <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "WebSite",
      "name": "Selira",
      "potentialAction": {
        "@type": "SearchAction",
        "target": "https:\/\/selira.de\/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
      },
      "url": "https:\/\/selira.de"
    }
  </script>
</section>
<!-- END sections: header-group -->
<main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">
      <section id="shopify-section-template--27416327684482__new_hero_tq9qtW" class="shopify-section">
  


<link href="//selira.de/cdn/shop/t/13/assets/hero.css?v=3492003946606232001780232454" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>
    /* Rating block container background styles */
    
      
    
      
    
      
    
      
    

    /* Rating text margin fix */
    .custom-hero__rating-text p {
      margin: 0;
    }

  /* Badge container background */
  
    
  
    
  
    
  
    
  

  /* Block margin customization */
  
    
  .custom-hero__rating-wrapper[data-block-id="rating_h6Jnew"] {
    margin-top: 0px !important;
    margin-bottom: 2px !important;
  }
  
  .custom-hero__rating-wrapper[data-block-id="rating_h6Jnew"] .custom-hero__rating-text {
    color: #000000 !important;
    font-size: 13px !important;
  }
  
  .custom-hero__rating-wrapper[data-block-id="rating_h6Jnew"] .custom-hero__rating-stars {
    color: #ffc107 !important;
    font-size: 16px !important;
  }
  
  .custom-hero__rating-wrapper[data-block-id="rating_h6Jnew"] .hero-star-icon {
    color: #ffc107 !important;
    fill: #ffc107 !important;
    width: 16px !important;
    height: 16px !important;
  }
  
  .custom-hero__rating-wrapper[data-block-id="rating_h6Jnew"] .custom-hero__rating-stars svg {
    width: 16px !important;
    height: 16px !important;
  }


    
.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title[data-block-id="heading_iJERnU"],
.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title.section-heading[data-block-id="heading_iJERnU"],
.custom-hero__content-wrapper .custom-hero__title[data-block-id="heading_iJERnU"] {
  margin-top: 0px !important;
  margin-bottom: 16px !important;
  color: #000000

 !important;
  font-size: 42px !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

@media (max-width: 768px) {
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title[data-block-id="heading_iJERnU"],
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title.section-heading[data-block-id="heading_iJERnU"],
  .custom-hero__content-wrapper .custom-hero__title[data-block-id="heading_iJERnU"] {
    font-size: 32px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }
}

/* Accent text styling for this heading block */
.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title[data-block-id="heading_iJERnU"] .section-accent-text {
  
    /* Theme colors OFF - use block settings */
    
      background: linear-gradient(45deg, rgba(231, 207, 207, 1), rgba(255, 107, 157, 1) 100%) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      text-fill-color: transparent !important;
    
  
}



    
.custom-hero__button-wrapper[data-block-id="button_Dig7fG"] {
  margin-top: 0px !important;
  margin-bottom: 24px !important;
  
    width: 100% !important;
  
}

  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__button-wrapper[data-block-id="button_Dig7fG"],
  .custom-hero__content-wrapper .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] {
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
    max-width: 100% !important;
  }
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .custom-hero__button,
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .theme-button,
  .custom-hero__content-wrapper .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .custom-hero__button,
  .custom-hero__content-wrapper .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .theme-button {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }




    
.custom-hero__guarantee[data-block-id="guarantee_WfjRED"] {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  text-align: left !important;
  justify-content: flex-start
   !important;
}

@media screen and (max-width: 768px) {
  .custom-hero__guarantee[data-block-id="guarantee_WfjRED"] {
    text-align: left !important;
    justify-content: flex-start
     !important;
  }
}

.custom-hero__guarantee[data-block-id="guarantee_WfjRED"] .custom-hero__guarantee-text {
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.custom-hero__guarantee[data-block-id="guarantee_WfjRED"] .custom-hero__guarantee-icon {
  
    color: #000000 !important;
  
  
    width: 16px !important;
    height: 16px !important;
  
}

.custom-hero__guarantee[data-block-id="guarantee_WfjRED"] .custom-hero__guarantee-icon svg {
  
    fill: #000000 !important;
    stroke: #000000 !important;
  
  
    width: 16px !important;
    height: 16px !important;
  
}

.custom-hero__guarantee[data-block-id="guarantee_WfjRED"] .custom-hero__guarantee-icon-image {
  
    width: 16px !important;
    height: 16px !important;
  
  object-fit: contain !important;
  display: block !important;
}



/* Desktop Background Image Styles */
@media screen and (min-width: 769px) {
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero {
    
  }
}

/* Base Hero Section Styles */
.section-template--27416327684482__new_hero_tq9qtW.custom-hero {
  
    
      
        background-color: #faf7f5;
      
    
  
  padding: 0px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
  
  
}


  
    /* Full width mode WITHOUT container: no section padding, padding on content */
    .section-template--27416327684482__new_hero_tq9qtW.custom-hero {
      padding: 0 !important;
    }
    
    .section-template--27416327684482__new_hero_tq9qtW .custom-hero__content {
      padding: 0px 0px;
    }
    
    @media screen and (max-width: 768px) {
      .section-template--27416327684482__new_hero_tq9qtW .custom-hero__content {
        padding: 0px 0px;
      }
    }
  





@media screen and (max-width: 768px) {
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero {
    padding: 0px 0px;
  }
}


  .custom-hero__container {
    
  }
  
  
  
  

  @media screen and (max-width: 768px) {
    .custom-hero__container {
      
    }
  }

  .custom-hero__flex {
    align-items: stretch;
    gap: 0;
    min-height: 300px;
  }

  @media screen and (max-width: 768px) {
    .custom-hero__flex {
      
        flex-direction: column;
      
    }
  }

  
    .custom-hero__image-wrapper {
      padding: 0;
      overflow: hidden;
      height: 100%;
      min-height: 300px;
      
        /* Full width mode without container */
        width: 50%;
      
    }

    @media screen and (max-width: 768px) {
      .custom-hero__image-wrapper {
        min-height: 350px;
        
          width: 100%;
        
      }
    }
  

  .custom-hero__image {
    border-radius: 0;
  
    height: 100%;
    object-fit: cover;
    width: 100%;
  
  }

  .custom-hero__video {
    
      /* Full width mode: video behaves like image */
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
    
    background-color: transparent;
    z-index: 2;
  }

  /* Force hide video controls immediately, even during page load */
  .custom-hero__video {
    /* Remove any browser default controls */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-hero__video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .custom-hero__video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .custom-hero__video::-webkit-media-controls-play-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .custom-hero__video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .custom-hero__video::-webkit-media-controls-enclosure {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-timeline {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-current-time-display {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-time-remaining-display {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-mute-button {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-toggle-closed-captions-button {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-volume-slider {
    display: none !important;
  }

  .custom-hero__video::-webkit-media-controls-fullscreen-button {
    display: none !important;
  }

  .custom-hero__video::-moz-media-controls {
    display: none !important;
  }

  .custom-hero__video::-ms-media-controls {
    display: none !important;
  }

  /* Additional fallback to ensure no controls show */
  .custom-hero__video[controls] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
  }

  /* Video visibility - show by default, JS will handle transitions if needed */
  .custom-hero__video {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }

  .custom-hero__video.loaded {
    opacity: 1;
  }

  /* Video container to handle video and fallback positioning */
  .custom-hero__video-container {
    position: relative;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    
      /* Full width mode: video fills the entire height like images */
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    
  }
  
  
    /* Make image wrapper position relative for absolute video container */
    .custom-hero__image-wrapper {
      position: relative;
    }
  
  
  @media screen and (min-width: 769px) {
    .custom-hero__video-container {
      
    }
  }
  
  @media screen and (max-width: 768px) {
    .custom-hero__video-container {
      
    }
  }

  /* Loading indicator for video */
  .custom-hero__video-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: videoLoadingSpin 1s linear infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* Hide loading indicator when video loads or errors */
  .custom-hero__video-container.video-loaded::before,
  .custom-hero__video-container.video-error::before {
    opacity: 0;
  }

  @keyframes videoLoadingSpin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Fallback image - hidden by default, only shows if video fails */
  .custom-hero__video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
  }

  /* Show fallback image only when video fails to load */
  .custom-hero__video-container.video-error .custom-hero__video-fallback {
    opacity: 1;
  }

  /* Hide video when it fails to load */
  .custom-hero__video-container.video-error .custom-hero__video {
    opacity: 0;
  }

/* Custom SVG styling for benefit icons - now handled at block level */

  /* Custom SVG styling for guarantee icon */
  .custom-hero__guarantee-icon svg {
    width: 
    px !important;
    height: 
    px !important;
    fill: #faf7f5
  ;
  }

  

  .custom-hero__content {
    
      padding: 65px 60px !important;
    
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .custom-hero__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    width: 100%;
    gap: 0;
  }

  /* Prevent flexbox from interfering with natural margins and spacing */
  .custom-hero__content-wrapper > * {
    flex-shrink: 0;
  }

  /* Ensure all spacing elements work properly in flexbox */
  .custom-hero__content-wrapper .custom-hero__badge-wrapper,
  .custom-hero__content-wrapper .custom-hero__rating-wrapper,
  .custom-hero__content-wrapper .custom-hero__benefits,
  .custom-hero__content-wrapper .custom-hero__button,
  .custom-hero__content-wrapper .custom-hero__guarantee {
    flex-shrink: 0;
  }

  /* Old section-level margin removed - now using block-level margins */

  /* Old section-level subtitle margin removed - now using block-level margins */

  /* Reset paragraph margins in content wrapper subtitle */.custom-hero__content-wrapper .custom-hero__subtitle p {
    margin: 0 !important;
    padding: 0 !important;
  }

  @media screen and (max-width: 768px) {
    .custom-hero__content {
      padding: 10px !important;
      text-align: left;
      
        min-height: 300px;
      
    }

    .custom-hero__content-wrapper {
      align-items: flex-start;
      justify-content: center;
  }

  /* Old mobile section-level margin removed - now using block-level margins */

  /* Old mobile section-level subtitle margin removed - now using block-level margins */

  /* Reset paragraph margins in content wrapper subtitle on mobile */.custom-hero__content-wrapper .custom-hero__subtitle p {
    margin: 0 !important;
    padding: 0 !important;
  }
  }

  

  .section-template--27416327684482__new_hero_tq9qtW
  .custom-hero .custom-hero__badge
  , section.section-template--27416327684482__new_hero_tq9qtW
  .custom-hero .custom-hero__badge
  , .section-template--27416327684482__new_hero_tq9qtW
  .custom-hero .custom-hero__badge-wrapper .custom-hero__badge {
    color: #000000
  ;
    background-color: #1a2827;
    font-size: px !important;
    letter-spacing: var(--letter-spacing-body) !important;
  }

  .custom-hero .custom-hero__rating-stars {
    color: #faf7f5
  ;
    font-size: 
    px !important;
    --hero-star-size: px;
  }

  .custom-hero .hero-star-icon {
    color: #faf7f5
  ;
    fill: #faf7f5
  ;
    width: 
    px !important;
    height: 
    px !important;
  }

  .custom-hero .custom-hero__rating-stars svg {
    width: 
    px !important;
    height: 
    px !important;
    display: inline-block;
  }

  .custom-hero .custom-hero__rating-text {
    color: #000000
  ;
    font-size: 14px !important;
    display: inline-block;
    letter-spacing: var(--letter-spacing-body);
    margin: 0 2px;
    vertical-align: middle;
  }

  .custom-hero .custom-hero__star {
    color: #faf7f5
  ;
  }

  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title {
    font-family: var(--font-heading-family);
    font-weight: var(--font-weight-bold);
    color: #000000
  ;
    font-size: px;
    line-height: ;
    letter-spacing: var(--letter-spacing-heading);
    /* Ensure proper text flow and prevent cutoff */
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 15px;
  }

  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__subtitle,
  section.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__subtitle,
  .custom-hero .custom-hero__content .custom-hero__subtitle,
  .custom-hero__container .custom-hero__content .custom-hero__subtitle {
    color: #000000
  
   !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    letter-spacing: var(--letter-spacing-body) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Reset paragraph margins within subtitle to prevent double margins from rich text */
  .custom-hero .custom-hero__subtitle p,
  section.custom-hero .custom-hero__subtitle p,
  .custom-hero .custom-hero__content .custom-hero__subtitle p,
  .custom-hero__container .custom-hero__content .custom-hero__subtitle p {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Enhanced accent text styling - New Hero Section */
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .section-accent-text {
    /* Always apply basic styling first */
    margin-left: 0px !important;
    padding-right: 4px !important;
    display: inline !important;
    line-height: inherit !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;

    
    /* Use Section-Specific Accent Typography */
    
      font-family: var(--font-body-family) !important;
    

    
      font-style: normal !important;
    

    
      font-weight: 300
       !important;
    
  

  /* Color and Gradient Application */
    background: linear-gradient(270deg, rgba(128, 123, 123, 1) 2%, rgba(23, 67, 60, 1) 100%)
     !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
  
}

  /* Fallback solid color for accent text when gradient is not used */
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .section-accent-text.no-gradient
  , .section-template--27416327684482__new_hero_tq9qtW.new-hero-accent-text.no-gradient {
    color: #17433e
     !important;
  }

  /* High specificity override for custom-hero accent text */
  .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title .section-accent-text.custom-hero-accent
  , section.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title .section-accent-text.custom-hero-accent {
    
    

    

    
      font-weight: 300
       !important;
    
  

  /* Always apply color */
  
    color: #17433e
     !important;
  
  }

  .custom-hero__benefits {
    text-align: left;
    
  }

  /* Flex layout for benefits blocks */
  
    
  
    
  
    
  
    
  

/* Button Block Styling - Now at Block Level */

  

  

  
    .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .custom-hero__button {
      display: inline-block;
      width: 100% !important;
      padding: var(--global-button-padding-y, 12px) 20px !important;
      letter-spacing: var(--global-button-letter-spacing, 1px) !important;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none !important;
      text-align: center;
      box-shadow: none !important;

      
        /* Use Global Button Styling */
        font-size: var(--global-button-font-size, 14px) !important;
        font-weight: var(--global-button-font-weight, 700) !important;
        text-transform: var(--global-button-text-transform, none) !important;
        border-radius: var(--global-button-radius, 8px) !important;
        
        background: linear-gradient(to top, #e7cfcf, #e7cfcf) !important;
        
        color: var(--global-button-text-color, #FFFFFF) !important;
        border-left: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-right: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-top: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-bottom: var(--global-button-bottom-border-width, 4px) solid var(--global-button-bottom-border-color, #000000) !important;
        border-bottom-style: solid !important;
      
    }

    .custom-hero__button-wrapper[data-block-id="button_Dig7fG"] .custom-hero__button:hover {
      
        /* Global Button Hover State */
        
        background: linear-gradient(to top, #ffffff, #f5f5f5) !important;
        
        color: var(--global-button-hover-text-color, #FFFFFF) !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        border-left: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-right: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-top: var(--global-button-border-width, 2px) solid var(--global-button-border-color, #EF4A65) !important;
        border-bottom: var(--global-button-bottom-border-width, 4px) solid var(--global-button-bottom-border-color, #000000) !important;
        border-bottom-style: solid !important;
      
    }
  

  


  .custom-hero .custom-hero__review-count {
    color: #000000
  ;
  }

  .custom-hero .custom-hero__guarantee-icon {
    color: #faf7f5
  ;
    font-size: 
    px !important;
  }

  .custom-hero .custom-hero__guarantee-text {
    color: #000000
  ;
    font-size: 12px !important;
  }

  .custom-hero .custom-hero__guarantee {
    width: 100% !important;
    text-align: center;
  }

  @media (max-width: 768px) {
    .custom-hero__flex {
      gap: 0;
      
    }

    /* Control mobile layout order without affecting desktop */
    
        /* Center and space-between use default order */
        .custom-hero__image-wrapper {
          order: 1;
        }
        .custom-hero__content {
          order: 2;
        }
    
  }

  
    .custom-hero__image-wrapper {
      aspect-ratio: 1;
      height: auto;
    }

    .custom-hero__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  

  @media screen and (max-width: 768px) {
    .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__title {
      font-family: var(--font-heading-family) !important;
      font-weight: var(--font-weight-bold) !important;
      font-size: px !important;
      line-height: ;
      /* Ensure proper text flow and prevent cutoff on mobile */
      overflow: visible !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      margin-bottom: 15px !important;
    }
  }

  .custom-hero .custom-hero__badge,
  section.custom-hero .custom-hero__badge,
  .custom-hero .custom-hero__badge-wrapper .custom-hero__badge {
    font-size: px !important;
    letter-spacing: var(--letter-spacing-body) !important;
    font-weight: var(--font-weight-bold) !important;
  }

  .custom-hero__benefits {
    text-align: left;
    
  }

.custom-hero .custom-hero__benefit-item {
  font-size: 
  px !important;
  
    justify-content: flex-start;
  
}

  /* Mobile custom SVG styling */
  .custom-hero__guarantee-icon svg {
    width: 
    px !important;
    height: 
    px !important;
    fill: #faf7f5
  ;
  }

  .section-template--27416327684482__new_hero_tq9qtW
  .custom-hero .custom-hero__button {
    
      font-size: 14
      px !important;
    
  }

  .custom-hero .custom-hero__guarantee-text {
    font-size: 12px !important;
  }
  }

  @media screen and (max-width: 768px) {
    .section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__subtitle,
    section.section-template--27416327684482__new_hero_tq9qtW.custom-hero .custom-hero__subtitle,
    .custom-hero .custom-hero__content .custom-hero__subtitle,
    .custom-hero__container .custom-hero__content .custom-hero__subtitle {
      font-size: 16px !important;
      line-height: 1.4 !important;
    }
  }

  .custom-hero .custom-hero__badge,
  .custom-hero .custom-hero__badge-wrapper {
    
      text-align: left;
    
  }

  .custom-hero__benefits {
    
      text-align: left;
    
  }

  /* Badge alignment based on mobile content alignment */
  @media screen and (max-width: 768px) {
    .custom-hero .custom-hero__badge-wrapper {
      text-align: left;
    }
  }


  /* Reset paragraph margins within subtitle on mobile */
  .custom-hero .custom-hero__subtitle p {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Load-in animation */
  .page-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add slight delay for staggered effect on multiple sections */
  .page-fade-in:nth-child(2) {
    animation-delay: 0.1s;
  }
  .page-fade-in:nth-child(3) {
    animation-delay: 0.2s;
  }
  .page-fade-in:nth-child(4) {
    animation-delay: 0.3s;
  }
</style>








<section class="custom-hero section-template--27416327684482__new_hero_tq9qtW page-fade-in">
  <div class="custom-hero__container">
      <div class="custom-hero__flex custom-hero__flex--image-right">
        <!-- Product Image -->
        <div class="custom-hero__image-wrapper">
        
          
            <img src="//selira.de/cdn/shop/files/SS_PDP_OGTrimmer_7604f90e-928f-4900-a6d1-93a911cbe278.webp?v=1775058662&amp;width=800" srcset="//selira.de/cdn/shop/files/SS_PDP_OGTrimmer_7604f90e-928f-4900-a6d1-93a911cbe278.webp?v=1775058662&amp;width=352 352w, //selira.de/cdn/shop/files/SS_PDP_OGTrimmer_7604f90e-928f-4900-a6d1-93a911cbe278.webp?v=1775058662&amp;width=800 800w" width="800" height="800" loading="lazy" class="custom-hero__image">
          
         
       </div>

      <!-- Product Content -->
      <div class="custom-hero__content">
        <div class="custom-hero__content-wrapper">
          
            
                <div
                  class="custom-hero__rating-wrapper"
                  data-block-id="rating_h6Jnew"
                  
                >
                  <div class="custom-hero__rating-container">
                    
                    <div class="custom-hero__rating-stars">
                      
                        
                        
                          <svg
      class="hero-star-icon"
      width="18"
      height="18"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M11.5245 3.46353C11.6741 3.00287 12.3259 3.00287 12.4755 3.46353L14.1329 8.56434C14.1998 8.77035 14.3918 8.90983 14.6084 8.90983H19.9717C20.4561 8.90983 20.6575 9.52964 20.2656 9.81434L15.9266 12.9668C15.7514 13.0941 15.678 13.3198 15.745 13.5258L17.4023 18.6266C17.552 19.0873 17.0248 19.4704 16.6329 19.1857L12.2939 16.0332C12.1186 15.9059 11.8814 15.9059 11.7061 16.0332L7.3671 19.1857C6.97524 19.4704 6.448 19.0873 6.59768 18.6266L8.25503 13.5258C8.32197 13.3198 8.24864 13.0941 8.07339 12.9668L3.73438 9.81434C3.34253 9.52964 3.54392 8.90983 4.02828 8.90983H9.39159C9.6082 8.90983 9.80018 8.77035 9.86712 8.56434L11.5245 3.46353Z" fill="currentColor"/>
    </svg>
                        
                          <svg
      class="hero-star-icon"
      width="18"
      height="18"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M11.5245 3.46353C11.6741 3.00287 12.3259 3.00287 12.4755 3.46353L14.1329 8.56434C14.1998 8.77035 14.3918 8.90983 14.6084 8.90983H19.9717C20.4561 8.90983 20.6575 9.52964 20.2656 9.81434L15.9266 12.9668C15.7514 13.0941 15.678 13.3198 15.745 13.5258L17.4023 18.6266C17.552 19.0873 17.0248 19.4704 16.6329 19.1857L12.2939 16.0332C12.1186 15.9059 11.8814 15.9059 11.7061 16.0332L7.3671 19.1857C6.97524 19.4704 6.448 19.0873 6.59768 18.6266L8.25503 13.5258C8.32197 13.3198 8.24864 13.0941 8.07339 12.9668L3.73438 9.81434C3.34253 9.52964 3.54392 8.90983 4.02828 8.90983H9.39159C9.6082 8.90983 9.80018 8.77035 9.86712 8.56434L11.5245 3.46353Z" fill="currentColor"/>
    </svg>
                        
                          <svg
      class="hero-star-icon"
      width="18"
      height="18"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M11.5245 3.46353C11.6741 3.00287 12.3259 3.00287 12.4755 3.46353L14.1329 8.56434C14.1998 8.77035 14.3918 8.90983 14.6084 8.90983H19.9717C20.4561 8.90983 20.6575 9.52964 20.2656 9.81434L15.9266 12.9668C15.7514 13.0941 15.678 13.3198 15.745 13.5258L17.4023 18.6266C17.552 19.0873 17.0248 19.4704 16.6329 19.1857L12.2939 16.0332C12.1186 15.9059 11.8814 15.9059 11.7061 16.0332L7.3671 19.1857C6.97524 19.4704 6.448 19.0873 6.59768 18.6266L8.25503 13.5258C8.32197 13.3198 8.24864 13.0941 8.07339 12.9668L3.73438 9.81434C3.34253 9.52964 3.54392 8.90983 4.02828 8.90983H9.39159C9.6082 8.90983 9.80018 8.77035 9.86712 8.56434L11.5245 3.46353Z" fill="currentColor"/>
    </svg>
                        
                          <svg
      class="hero-star-icon"
      width="18"
      height="18"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M11.5245 3.46353C11.6741 3.00287 12.3259 3.00287 12.4755 3.46353L14.1329 8.56434C14.1998 8.77035 14.3918 8.90983 14.6084 8.90983H19.9717C20.4561 8.90983 20.6575 9.52964 20.2656 9.81434L15.9266 12.9668C15.7514 13.0941 15.678 13.3198 15.745 13.5258L17.4023 18.6266C17.552 19.0873 17.0248 19.4704 16.6329 19.1857L12.2939 16.0332C12.1186 15.9059 11.8814 15.9059 11.7061 16.0332L7.3671 19.1857C6.97524 19.4704 6.448 19.0873 6.59768 18.6266L8.25503 13.5258C8.32197 13.3198 8.24864 13.0941 8.07339 12.9668L3.73438 9.81434C3.34253 9.52964 3.54392 8.90983 4.02828 8.90983H9.39159C9.6082 8.90983 9.80018 8.77035 9.86712 8.56434L11.5245 3.46353Z" fill="currentColor"/>
    </svg>
                        
                          <svg
      class="hero-star-icon"
      width="18"
      height="18"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path d="M11.5245 3.46353C11.6741 3.00287 12.3259 3.00287 12.4755 3.46353L14.1329 8.56434C14.1998 8.77035 14.3918 8.90983 14.6084 8.90983H19.9717C20.4561 8.90983 20.6575 9.52964 20.2656 9.81434L15.9266 12.9668C15.7514 13.0941 15.678 13.3198 15.745 13.5258L17.4023 18.6266C17.552 19.0873 17.0248 19.4704 16.6329 19.1857L12.2939 16.0332C12.1186 15.9059 11.8814 15.9059 11.7061 16.0332L7.3671 19.1857C6.97524 19.4704 6.448 19.0873 6.59768 18.6266L8.25503 13.5258C8.32197 13.3198 8.24864 13.0941 8.07339 12.9668L3.73438 9.81434C3.34253 9.52964 3.54392 8.90983 4.02828 8.90983H9.39159C9.6082 8.90983 9.80018 8.77035 9.86712 8.56434L11.5245 3.46353Z" fill="currentColor"/>
    </svg>
                        
                      
                    </div>
                    <div class="custom-hero__rating-text"><p>4,8/5 basierend auf über 1.300 Bewertungen</p></div>
                  </div>
                </div>

              
          
            
                <h2
                  class="custom-hero__title section-heading"
                  data-block-id="heading_iJERnU"
                  
                >Schau in den Spiegel und erkenne
<span class="section-accent-text custom-hero-accent accent-gradient-enabled">dich selbst.</span></h2>

              
          
            
                
                  <div
                    class="custom-hero__button-wrapper"
                    data-block-id="button_Dig7fG"
                    
                  >
                    <a href="/products/selira-sweatbelt" class="theme-button custom-hero__button">Jetzt entdecken</a>
                  </div>
                

              
          
            
                <div
                  class="custom-hero__guarantee"
                  data-block-id="guarantee_WfjRED"
                  
                >
                  <span class="custom-hero__guarantee-icon">
                    
                      
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none">
      <path fill-rule="evenodd" clip-rule="evenodd" d="M8 16L4.35009 13.3929C2.24773 11.8912 1 9.46667 1 6.88306V3L8 0L15 3V6.88306C15 9.46667 13.7523 11.8912 11.6499 13.3929L8 16ZM12.2071 5.70711L10.7929 4.29289L7 8.08579L5.20711 6.29289L3.79289 7.70711L7 10.9142L12.2071 5.70711Z"/>
    </svg>

                    
                  </span>
                  <span class="custom-hero__guarantee-text">14-Tage-Geld-zurück-Garantie</span>
                </div>
            
          
        </div>
      </div>
    </div>
  </div>
</section>

<script>
  document.addEventListener('DOMContentLoaded', function() {
    document.querySelectorAll('.custom-hero__button[data-scroll-to-section]').forEach(function(btn) {
      btn.addEventListener('click', function(e) {
        e.preventDefault();
        const index = parseInt(this.dataset.scrollToSection) - 1;
        const sections = document.querySelectorAll('.shopify-section');
        if (sections[index]) {
          sections[index].scrollIntoView({ behavior: 'smooth' });
        }
      });
    });
  });
</script>




  <script>
    document.addEventListener('DOMContentLoaded', function () {
      const setSquareImageHeight = () => {
        const heroSection = document.querySelector('.custom-hero');
        if (!heroSection) return;

        const contentElement = heroSection.querySelector('.custom-hero__content');
        const imageWrapper = heroSection.querySelector('.custom-hero__image-wrapper');

        if (window.innerWidth > 768) {
          // On desktop: Make image wrapper same height as content
          const contentHeight = contentElement.offsetHeight;
          imageWrapper.style.height = `${contentHeight}px`;

          // Adjust aspect ratio
          if (contentHeight > 0) {
            imageWrapper.style.aspectRatio = 'auto';
          }
        } else {
          // On mobile: Set to a square aspect ratio
          imageWrapper.style.height = 'auto';
          imageWrapper.style.aspectRatio = '1';
        }
      };

      // Run on load and resize
      setSquareImageHeight();
      window.addEventListener('resize', setSquareImageHeight);

      // Also run after a short delay to handle any dynamic content loading
      setTimeout(setSquareImageHeight, 500);
    });
  </script>


<!-- Immediately hide video controls to prevent flash during page load -->
<script>
  // Run immediately to prevent any flash of video controls
  (function () {
    function hideVideoControls() {
      const videos = document.querySelectorAll('.custom-hero__video');
      videos.forEach(function (video) {
        video.removeAttribute('controls');
        video.controls = false;
        // Additional properties to ensure controls stay hidden
        video.style.setProperty('-webkit-appearance', 'none', 'important');
        video.style.setProperty('-moz-appearance', 'none', 'important');
        video.style.setProperty('appearance', 'none', 'important');
      });
    }

    // Run immediately if elements exist
    hideVideoControls();

    // Also run on DOM ready as backup
    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', hideVideoControls);
    } else {
      hideVideoControls();
    }
  })();
</script>

<script>
  document.addEventListener('DOMContentLoaded', function () {
    const videos = document.querySelectorAll('.custom-hero__video');

    // Immediately remove any controls attribute to prevent flash of controls
    videos.forEach(function (video) {
      video.removeAttribute('controls');
      video.controls = false;
    });

    videos.forEach(function (video) {
      const container = video.closest('.custom-hero__video-container');
      let hasLoaded = false;

      // Set a timeout to show fallback if video takes too long to load (2 seconds)
      const loadTimeout = setTimeout(function () {
        if (!hasLoaded && container) {
          console.log('Video loading timeout - showing fallback image');
          container.classList.add('video-error');
        }
      }, 2000);

      // Handle successful video loading
      function handleVideoLoaded() {
        if (!hasLoaded) {
          hasLoaded = true;
          clearTimeout(loadTimeout);
          video.classList.add('loaded');
          if (container) {
            container.classList.add('video-loaded');
          }
          console.log('Video loaded successfully');
        }
      }

      // Handle video loading error
      function handleVideoError() {
        console.log('Video failed to load - showing fallback image');
        clearTimeout(loadTimeout);
        if (container) {
          container.classList.add('video-error');
        }
      }

      // Add event listeners
      video.addEventListener('loadeddata', handleVideoLoaded);
      video.addEventListener('canplay', handleVideoLoaded);
      video.addEventListener('canplaythrough', handleVideoLoaded);
      video.addEventListener('error', handleVideoError);

      // Check if video is already loaded (in case events fired before we attached listeners)
      if (video.readyState >= 3) {
        // HAVE_FUTURE_DATA or higher
        handleVideoLoaded();
      }

      // Handle autoplay failure (some browsers block autoplay)
      video.addEventListener('loadedmetadata', function () {
        const playPromise = video.play();
        if (playPromise !== undefined) {
          playPromise.catch(function (error) {
            console.log('Autoplay failed, but video loaded successfully');
            // Don't show error state if autoplay fails but video loaded
            handleVideoLoaded();
          });
        }
      });

      // Additional fallback: If video doesn't start playing within 4 seconds, show fallback
      setTimeout(function () {
        if (!hasLoaded && video.currentTime === 0 && container) {
          console.log('Video failed to start playing - showing fallback image');
          container.classList.add('video-error');
        }
      }, 4000);
    });
  });
</script>

</section><section id="shopify-section-template--27416327684482__scrolling_features_bar_dR9edF" class="shopify-section section"><link href="//selira.de/cdn/shop/t/13/assets/scrolling-features-bar.css?v=112724044729450329911780232588" rel="stylesheet" type="text/css" media="all" />
<script src="//selira.de/cdn/shop/t/13/assets/scrolling-features-bar.js?v=81799221736613260541780232589" defer></script>

<style>
  @keyframes marquee-horizontal-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }

  @keyframes marquee-horizontal-right {
    0% {
      transform: translateX(-25%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .section-template--27416327684482__scrolling_features_bar_dR9edF {
    --vertical-padding: 15px;
    --item-gap: 60px;
    --mobile-item-gap: 30px;
    --font-size: 14px;
    --mobile-font-size: 12px;
    --letter-spacing: 0.5px !important;
    --text-transform: uppercase;
    --icon-size: 20px;
    --mobile-icon-size: 16px;
    --icon-spacing: 10px;
    
    
        --text-color: #ffffff;
        --icon-color: #ffffff;
        
          --background-color: #e7cfcf;
        
    
    
    
    
    
    
    
  }

  .section-template--27416327684482__scrolling_features_bar_dR9edF .features-track {
    animation: marquee-horizontal-left 15000ms linear infinite;
  }
  
  
</style>

<div class="scrolling-features-bar section-template--27416327684482__scrolling_features_bar_dR9edF pause-on-hover">
  <div class="features-track-container">
    <div class="features-track">
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
                </div>
              
              <span>Es wirkt schon ab der ersten Sitzung.</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M240 64C213.5 64 192 85.5 192 112L192 320C192 346.5 213.5 368 240 368L304 368C330.5 368 352 346.5 352 320L352 256L384 256C454.7 256 512 313.3 512 384C512 454.7 454.7 512 384 512L96 512C78.3 512 64 526.3 64 544C64 561.7 78.3 576 96 576L544 576C561.7 576 576 561.7 576 544C576 526.3 561.7 512 544 512L527.1 512C557.5 478 576 433.2 576 384C576 278 490 192 384 192L352 192L352 112C352 85.5 330.5 64 304 64L240 64zM184 416C170.7 416 160 426.7 160 440C160 453.3 170.7 464 184 464L360 464C373.3 464 384 453.3 384 440C384 426.7 373.3 416 360 416L184 416z"></path></svg>
                </div>
              
              <span>Über 1.000 Frauen tragen es täglich</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M333.4 66.9C329.2 65 324.7 64 320 64C315.3 64 310.8 65 306.6 66.9L118.3 146.8C96.3 156.1 79.9 177.8 80 204C80.5 303.2 121.3 484.7 293.6 567.2C310.3 575.2 329.7 575.2 346.4 567.2C518.8 484.7 559.6 303.2 560 204C560.1 177.8 543.7 156.1 521.7 146.8L333.4 66.9zM224.9 350.2C229.7 351.4 234.8 352 240 352C275.3 352 304 323.3 304 288L304 224L348.2 224C360.3 224 371.4 230.8 376.8 241.7L384 256L448 256C456.8 256 464 263.2 464 272L464 304C464 348.2 428.2 384 384 384L336 384L336 434.7C336 442 330.1 448 322.7 448C320.9 448 319.1 447.6 317.5 446.9L218.8 404.6C212.2 401.8 208 395.3 208 388.2C208 385.4 208.6 382.7 209.9 380.2L224.9 350.2zM224 224L272 224L272 288C272 305.7 257.7 320 240 320C222.3 320 208 305.7 208 288L208 240C208 231.2 215.2 224 224 224zM352 272C352 263.2 344.8 256 336 256C327.2 256 320 263.2 320 272C320 280.8 327.2 288 336 288C344.8 288 352 280.8 352 272z"></path></svg>
                </div>
              
              <span>Empfohlen von Frauen, die schon alles ausprobiert haben</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
                </div>
              
              <span>Es wirkt schon ab der ersten Sitzung.</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M240 64C213.5 64 192 85.5 192 112L192 320C192 346.5 213.5 368 240 368L304 368C330.5 368 352 346.5 352 320L352 256L384 256C454.7 256 512 313.3 512 384C512 454.7 454.7 512 384 512L96 512C78.3 512 64 526.3 64 544C64 561.7 78.3 576 96 576L544 576C561.7 576 576 561.7 576 544C576 526.3 561.7 512 544 512L527.1 512C557.5 478 576 433.2 576 384C576 278 490 192 384 192L352 192L352 112C352 85.5 330.5 64 304 64L240 64zM184 416C170.7 416 160 426.7 160 440C160 453.3 170.7 464 184 464L360 464C373.3 464 384 453.3 384 440C384 426.7 373.3 416 360 416L184 416z"></path></svg>
                </div>
              
              <span>Über 1.000 Frauen tragen es täglich</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M333.4 66.9C329.2 65 324.7 64 320 64C315.3 64 310.8 65 306.6 66.9L118.3 146.8C96.3 156.1 79.9 177.8 80 204C80.5 303.2 121.3 484.7 293.6 567.2C310.3 575.2 329.7 575.2 346.4 567.2C518.8 484.7 559.6 303.2 560 204C560.1 177.8 543.7 156.1 521.7 146.8L333.4 66.9zM224.9 350.2C229.7 351.4 234.8 352 240 352C275.3 352 304 323.3 304 288L304 224L348.2 224C360.3 224 371.4 230.8 376.8 241.7L384 256L448 256C456.8 256 464 263.2 464 272L464 304C464 348.2 428.2 384 384 384L336 384L336 434.7C336 442 330.1 448 322.7 448C320.9 448 319.1 447.6 317.5 446.9L218.8 404.6C212.2 401.8 208 395.3 208 388.2C208 385.4 208.6 382.7 209.9 380.2L224.9 350.2zM224 224L272 224L272 288C272 305.7 257.7 320 240 320C222.3 320 208 305.7 208 288L208 240C208 231.2 215.2 224 224 224zM352 272C352 263.2 344.8 256 336 256C327.2 256 320 263.2 320 272C320 280.8 327.2 288 336 288C344.8 288 352 280.8 352 272z"></path></svg>
                </div>
              
              <span>Empfohlen von Frauen, die schon alles ausprobiert haben</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
                </div>
              
              <span>Es wirkt schon ab der ersten Sitzung.</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M240 64C213.5 64 192 85.5 192 112L192 320C192 346.5 213.5 368 240 368L304 368C330.5 368 352 346.5 352 320L352 256L384 256C454.7 256 512 313.3 512 384C512 454.7 454.7 512 384 512L96 512C78.3 512 64 526.3 64 544C64 561.7 78.3 576 96 576L544 576C561.7 576 576 561.7 576 544C576 526.3 561.7 512 544 512L527.1 512C557.5 478 576 433.2 576 384C576 278 490 192 384 192L352 192L352 112C352 85.5 330.5 64 304 64L240 64zM184 416C170.7 416 160 426.7 160 440C160 453.3 170.7 464 184 464L360 464C373.3 464 384 453.3 384 440C384 426.7 373.3 416 360 416L184 416z"></path></svg>
                </div>
              
              <span>Über 1.000 Frauen tragen es täglich</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M333.4 66.9C329.2 65 324.7 64 320 64C315.3 64 310.8 65 306.6 66.9L118.3 146.8C96.3 156.1 79.9 177.8 80 204C80.5 303.2 121.3 484.7 293.6 567.2C310.3 575.2 329.7 575.2 346.4 567.2C518.8 484.7 559.6 303.2 560 204C560.1 177.8 543.7 156.1 521.7 146.8L333.4 66.9zM224.9 350.2C229.7 351.4 234.8 352 240 352C275.3 352 304 323.3 304 288L304 224L348.2 224C360.3 224 371.4 230.8 376.8 241.7L384 256L448 256C456.8 256 464 263.2 464 272L464 304C464 348.2 428.2 384 384 384L336 384L336 434.7C336 442 330.1 448 322.7 448C320.9 448 319.1 447.6 317.5 446.9L218.8 404.6C212.2 401.8 208 395.3 208 388.2C208 385.4 208.6 382.7 209.9 380.2L224.9 350.2zM224 224L272 224L272 288C272 305.7 257.7 320 240 320C222.3 320 208 305.7 208 288L208 240C208 231.2 215.2 224 224 224zM352 272C352 263.2 344.8 256 336 256C327.2 256 320 263.2 320 272C320 280.8 327.2 288 336 288C344.8 288 352 280.8 352 272z"></path></svg>
                </div>
              
              <span>Empfohlen von Frauen, die schon alles ausprobiert haben</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
                </div>
              
              <span>Es wirkt schon ab der ersten Sitzung.</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M240 64C213.5 64 192 85.5 192 112L192 320C192 346.5 213.5 368 240 368L304 368C330.5 368 352 346.5 352 320L352 256L384 256C454.7 256 512 313.3 512 384C512 454.7 454.7 512 384 512L96 512C78.3 512 64 526.3 64 544C64 561.7 78.3 576 96 576L544 576C561.7 576 576 561.7 576 544C576 526.3 561.7 512 544 512L527.1 512C557.5 478 576 433.2 576 384C576 278 490 192 384 192L352 192L352 112C352 85.5 330.5 64 304 64L240 64zM184 416C170.7 416 160 426.7 160 440C160 453.3 170.7 464 184 464L360 464C373.3 464 384 453.3 384 440C384 426.7 373.3 416 360 416L184 416z"></path></svg>
                </div>
              
              <span>Über 1.000 Frauen tragen es täglich</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M333.4 66.9C329.2 65 324.7 64 320 64C315.3 64 310.8 65 306.6 66.9L118.3 146.8C96.3 156.1 79.9 177.8 80 204C80.5 303.2 121.3 484.7 293.6 567.2C310.3 575.2 329.7 575.2 346.4 567.2C518.8 484.7 559.6 303.2 560 204C560.1 177.8 543.7 156.1 521.7 146.8L333.4 66.9zM224.9 350.2C229.7 351.4 234.8 352 240 352C275.3 352 304 323.3 304 288L304 224L348.2 224C360.3 224 371.4 230.8 376.8 241.7L384 256L448 256C456.8 256 464 263.2 464 272L464 304C464 348.2 428.2 384 384 384L336 384L336 434.7C336 442 330.1 448 322.7 448C320.9 448 319.1 447.6 317.5 446.9L218.8 404.6C212.2 401.8 208 395.3 208 388.2C208 385.4 208.6 382.7 209.9 380.2L224.9 350.2zM224 224L272 224L272 288C272 305.7 257.7 320 240 320C222.3 320 208 305.7 208 288L208 240C208 231.2 215.2 224 224 224zM352 272C352 263.2 344.8 256 336 256C327.2 256 320 263.2 320 272C320 280.8 327.2 288 336 288C344.8 288 352 280.8 352 272z"></path></svg>
                </div>
              
              <span>Empfohlen von Frauen, die schon alles ausprobiert haben</span>
            </div>
            
          
        </div>
      
    </div>
  </div>
</div>


</section><section id="shopify-section-template--27416327684482__content_tabs_NfhgRf" class="shopify-section section">


<style>
  .content-tabs-template--27416327684482__content_tabs_NfhgRf {
    padding: 60px 20px 60px;
    background-color: #fffaf7;
    color: #000000;
    font-family: var(--font-body-family);
    letter-spacing: var(--letter-spacing-body);
  }

  .content-tabs-container-template--27416327684482__content_tabs_NfhgRf {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
  }

  .content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf {
    display: flex;
    flex-direction: column;
  }

  .content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf.has-shared-image {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .tabs-content-section-template--27416327684482__content_tabs_NfhgRf {
    flex: 1;
    width: 100%;
  }

  .content-tabs-heading-wrapper-template--27416327684482__content_tabs_NfhgRf {
    text-align: center;
    margin-bottom: 40px;
  }

  .content-tabs-heading-template--27416327684482__content_tabs_NfhgRf {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: #000000 !important;
    margin: 0;
    font-family: var(--font-heading-family);
    letter-spacing: var(--letter-spacing-heading);
    line-height: 1.2;
  }

  .content-tabs-heading-template--27416327684482__content_tabs_NfhgRf .accent {
    color: #e7cfcf;
  }

  /* Enhanced accent text styling with global and local customization options */
  .content-tabs-template--27416327684482__content_tabs_NfhgRf .accent,
  .content-tabs-template--27416327684482__content_tabs_NfhgRf .global-accent-text,
  .content-tabs-template--27416327684482__content_tabs_NfhgRf .custom-accent-text {
    
    padding-right: 0px !important;
    display: inline-block !important;

    
    
      
      color: #e7cfcf !important;
    

    
      
      font-family: var(--font-accent-family, var(--font-body-family)) !important;
      font-style: var(--font-accent-style, normal) !important;
      font-weight: var(--font-accent-weight, inherit) !important;
      letter-spacing: var(--font-accent-letter-spacing, inherit) !important;
      text-transform: var(--font-accent-text-transform, none) !important;
    
  }

  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf {
    font-size: 16.2px;
    margin: 8px 0 0 0;
    color: #666666;
  }

  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf p {
    font-size: 16.2px !important;
    margin: 0 !important;
    color: #666666 !important;
    letter-spacing: var(--letter-spacing-body);
  }

  /* Force the bold and italic in the subheading */
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf strong,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf b,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf p strong,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf p b {
    font-weight: 700 !important;
  }

  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf em,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf i,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf p em,
  .content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf p i {
    font-style: italic !important;
  }

  .shared-image-template--27416327684482__content_tabs_NfhgRf {
    text-align: center;
    margin-bottom: 30px;
  }

  .content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf.has-shared-image .shared-image-template--27416327684482__content_tabs_NfhgRf {
    flex: 0 0 500px;
    margin-bottom: 0;
    text-align: left;
  }

  .shared-image-template--27416327684482__content_tabs_NfhgRf img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .tabs-navigation-template--27416327684482__content_tabs_NfhgRf {
    display: grid;
    
      grid-template-columns: 1fr 1fr;
    
    gap: 12px;
    margin-bottom: 50px;
    width: 100%;
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf {
    background: transparent !important;
    border: 1px solid #e5e5e5 !important;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px !important;
    
    font-family: var(--font-body-family);
    letter-spacing: var(--letter-spacing-body);
    white-space: normal;
    position: relative;
    text-align: center;
    
      width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf:hover {
    color: #e7cfcf !important;
    
    border-color: #e7cfcf !important;
    background-color: rgba(231, 207, 207, 0.1) !important;
    
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf.active {
    color: #ffffff !important;
    
    background-color: #e7cfcf !important;
    border-color: #e7cfcf !important;
    
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf.has-icon {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tab-icon-template--27416327684482__content_tabs_NfhgRf {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .tab-icon-template--27416327684482__content_tabs_NfhgRf svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
  }

  .tab-title-template--27416327684482__content_tabs_NfhgRf {
    display: inline-block;
    font-family: var(--font-body-family);
    letter-spacing: var(--letter-spacing-body);
    color: inherit !important;
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf .tab-title-template--27416327684482__content_tabs_NfhgRf {
    color: #000000 !important;
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf:hover .tab-title-template--27416327684482__content_tabs_NfhgRf {
    color: #e7cfcf !important;
  }

  .tab-button-template--27416327684482__content_tabs_NfhgRf.active .tab-title-template--27416327684482__content_tabs_NfhgRf {
    color: #ffffff !important;
  }

  .tab-content-template--27416327684482__content_tabs_NfhgRf {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
  }

  .tab-content-template--27416327684482__content_tabs_NfhgRf.active {
    display: block;
  }

  .tab-content-inner-template--27416327684482__content_tabs_NfhgRf {
    display: grid;
    gap: 40px;
  }

  .tab-content-inner-template--27416327684482__content_tabs_NfhgRf.layout-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .tab-content-inner-template--27416327684482__content_tabs_NfhgRf.layout-single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .content-block-template--27416327684482__content_tabs_NfhgRf {
    padding: 0;
  }

  .content-block-title-template--27416327684482__content_tabs_NfhgRf {
    color: #333333 !important;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: var(--font-weight-bold) !important;
    line-height: 1.3;
    font-family: var(--font-body-family);
    letter-spacing: var(--letter-spacing-body);
  }

  .content-block-content-template--27416327684482__content_tabs_NfhgRf {
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
  }

  .content-block-content-template--27416327684482__content_tabs_NfhgRf p {
    margin-bottom: 16px;
  }

  /* Force le bold et italic dans le contenu des blocks */
  .content-block-content-template--27416327684482__content_tabs_NfhgRf strong,
  .content-block-content-template--27416327684482__content_tabs_NfhgRf b {
    font-weight: 700 !important;
  }

  .content-block-content-template--27416327684482__content_tabs_NfhgRf em,
  .content-block-content-template--27416327684482__content_tabs_NfhgRf i {
    font-style: italic !important;
  }

  .content-image-template--27416327684482__content_tabs_NfhgRf {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 4px;
  }

  .image-with-text-template--27416327684482__content_tabs_NfhgRf {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .image-with-text-template--27416327684482__content_tabs_NfhgRf .image-wrapper {
    flex: 0 0 200px;
  }

  .image-with-text-template--27416327684482__content_tabs_NfhgRf .text-wrapper {
    flex: 1;
  }

  .bullet-list-template--27416327684482__content_tabs_NfhgRf {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bullet-item-template--27416327684482__content_tabs_NfhgRf {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    gap: 12px;
  }

  .bullet-icon-template--27416327684482__content_tabs_NfhgRf {
    width: calc(16px * 1.25);
    height: calc(16px * 1.25);
    margin-top: 2px;
    color: #e7cfcf;
    flex-shrink: 0;
  }

  .bullet-text-template--27416327684482__content_tabs_NfhgRf {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
  }

  .benefit-list-template--27416327684482__content_tabs_NfhgRf {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .benefit-item-template--27416327684482__content_tabs_NfhgRf {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .benefit-item-template--27416327684482__content_tabs_NfhgRf:last-child {
    border-bottom: none;
  }

  .benefit-icon-template--27416327684482__content_tabs_NfhgRf {
    width: calc(16px * 1.25);
    height: calc(16px * 1.25);
    margin-right: 16px;
    color: #e7cfcf;
    flex-shrink: 0;
  }

  .benefit-text-template--27416327684482__content_tabs_NfhgRf {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: #333333;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .content-tabs-template--27416327684482__content_tabs_NfhgRf {
      padding: 40.0px 16px 40.0px;
    }

    .content-tabs-heading-template--27416327684482__content_tabs_NfhgRf {
      font-size: 36px;
    }

    .tabs-navigation-template--27416327684482__content_tabs_NfhgRf {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 8px;
    }

    .tab-button-template--27416327684482__content_tabs_NfhgRf {
      padding: 10px 12px;
      font-size: 12.6px;
      min-height: 44px;
      width: 100% !important;
      flex: none !important;
    }

    .tab-button-template--27416327684482__content_tabs_NfhgRf.has-icon {
      gap: 6px;
    }

    .tab-content-inner-template--27416327684482__content_tabs_NfhgRf.layout-two-column {
      grid-template-columns: 1fr;
      gap: 4px;
    }

    .content-block-title-template--27416327684482__content_tabs_NfhgRf {
      font-size: 17.0px;
      margin-bottom: 16px;
    }

    .content-block-content-template--27416327684482__content_tabs_NfhgRf {
      font-size: 11.05px;
    }

    .benefit-text-template--27416327684482__content_tabs_NfhgRf {
      font-size: 13.6px;
    }

    .bullet-text-template--27416327684482__content_tabs_NfhgRf {
      font-size: 13.6px;
    }

    .benefit-icon-template--27416327684482__content_tabs_NfhgRf {
      width: calc(13.6px * 1.25);
      height: calc(13.6px * 1.25);
    }

    .bullet-icon-template--27416327684482__content_tabs_NfhgRf {
      width: calc(13.6px * 1.25);
      height: calc(13.6px * 1.25);
    }

    .benefit-item-template--27416327684482__content_tabs_NfhgRf, .bullet-item-template--27416327684482__content_tabs_NfhgRf {
      padding: 10px 0;
    }

    .image-with-text-template--27416327684482__content_tabs_NfhgRf {
      flex-direction: column;
      gap: 20px;
    }

    .image-with-text-template--27416327684482__content_tabs_NfhgRf .image-wrapper {
      flex: none;
    }

    /* Keep images at full size on mobile */
    .content-image-template--27416327684482__content_tabs_NfhgRf {
      width: 100%;
      height: auto;
    }
  }

  /* Mobile Styles */
  @media (max-width: 767px) {
    .container-template--27416327684482__content_tabs_NfhgRf {
      padding: 40px 20px;
    }

    .content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf.has-shared-image {
      flex-direction: column;
      gap: 0;
    }

    .shared-image-template--27416327684482__content_tabs_NfhgRf {
      order: -1;
      margin-bottom: 20px;
    }

    .content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf.has-shared-image .shared-image-template--27416327684482__content_tabs_NfhgRf {
      flex: none;
      margin-bottom: 20px;
      text-align: center;
    }

    .shared-image-template--27416327684482__content_tabs_NfhgRf img {
      max-width: 100%;
      border-radius: 8px;
    }

    .tab-button-template--27416327684482__content_tabs_NfhgRf {
      padding: 8px 12px;
      font-size: 11.9px;
      line-height: 1.2;
      min-height: 40px;
    }

    .tab-button-template--27416327684482__content_tabs_NfhgRf.has-icon {
      gap: 5px;
      justify-content: center;
    }
  }

  /* Keep images at full size on mobile */
  .content-image-template--27416327684482__content_tabs_NfhgRf {
    width: 100%;
    height: auto;
  }

  

  /* Load-in animation */
  .page-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add slight delay for staggered effect on multiple sections */
  .page-fade-in:nth-child(2) { animation-delay: 0.1s; }
  .page-fade-in:nth-child(3) { animation-delay: 0.2s; }
  .page-fade-in:nth-child(4) { animation-delay: 0.3s; }
</style>

<section class="content-tabs-template--27416327684482__content_tabs_NfhgRf page-fade-in">
  <div class="content-tabs-container-template--27416327684482__content_tabs_NfhgRf">
    
      <div class="content-tabs-heading-wrapper-template--27416327684482__content_tabs_NfhgRf">
        
          <h2 class="content-tabs-heading-template--27416327684482__content_tabs_NfhgRf">
            Die 4 Vorteile des
              <span class="accent global-accent-text">Selira-Schwitzgürtels</span>
          </h2>
        
        
          <div class="content-tabs-subheading-template--27416327684482__content_tabs_NfhgRf"><p>Du hast trainiert, auf deine Ernährung geachtet. Aber dein Bauch wollte einfach nicht mitmachen. Das ist nicht deine Schuld, dein Bauch schwitzt von Natur aus weniger als der Rest deines Körpers. Wir ändern das.</p></div>
        
      </div>
    

    <div class="content-tabs-wrapper-template--27416327684482__content_tabs_NfhgRf">
      

      <div class="tabs-content-section-template--27416327684482__content_tabs_NfhgRf">
        <div class="tabs-navigation-template--27416327684482__content_tabs_NfhgRf">
          
            <button
              class="tab-button-template--27416327684482__content_tabs_NfhgRf active has-icon"
              data-tab="tab-template--27416327684482__content_tabs_NfhgRf-1"
            >
              
                <span
                  class="tab-icon-template--27416327684482__content_tabs_NfhgRf"
                  style="width: 19px; height: 19px;"
                >
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M333.4 66.9C329.2 65 324.7 64 320 64C315.3 64 310.8 65 306.6 66.9L118.3 146.8C96.3 156.1 79.9 177.8 80 204C80.5 303.2 121.3 484.7 293.6 567.2C310.3 575.2 329.7 575.2 346.4 567.2C518.8 484.7 559.6 303.2 560 204C560.1 177.8 543.7 156.1 521.7 146.8L333.4 66.9zM313.6 247.5L320 256L326.4 247.5C337.5 232.7 354.9 224 373.3 224C405.7 224 432 250.3 432 282.7L432 288C432 337.1 366.2 386.1 335.5 406.3C326 412.5 314 412.5 304.6 406.3C273.9 386.1 208.1 337 208.1 288L208.1 282.7C208.1 250.3 234.4 224 266.8 224C285.3 224 302.7 232.7 313.7 247.5z"></path></svg>
                </span>
              
              <span class="tab-title-template--27416327684482__content_tabs_NfhgRf">
                
                  Endlich schwitzt auch dein Bauch
                
              </span>
            </button>
          
            <button
              class="tab-button-template--27416327684482__content_tabs_NfhgRf  has-icon"
              data-tab="tab-template--27416327684482__content_tabs_NfhgRf-2"
            >
              
                <span
                  class="tab-icon-template--27416327684482__content_tabs_NfhgRf"
                  style="width: 19px; height: 19px;"
                >
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M434.8 54.1C446.7 62.7 451.1 78.3 445.7 91.9L367.3 288L512 288C525.5 288 537.5 296.4 542.1 309.1C546.7 321.8 542.8 336 532.5 344.6L244.5 584.6C233.2 594 217.1 594.5 205.2 585.9C193.3 577.3 188.9 561.7 194.3 548.1L272.7 352L128 352C114.5 352 102.5 343.6 97.9 330.9C93.3 318.2 97.2 304 107.5 295.4L395.5 55.4C406.8 46 422.9 45.5 434.8 54.1z"></path></svg>
                </span>
              
              <span class="tab-title-template--27416327684482__content_tabs_NfhgRf">
                
                  Stützt Ihren unteren Rücken
                
              </span>
            </button>
          
            <button
              class="tab-button-template--27416327684482__content_tabs_NfhgRf  has-icon"
              data-tab="tab-template--27416327684482__content_tabs_NfhgRf-3"
            >
              
                <span
                  class="tab-icon-template--27416327684482__content_tabs_NfhgRf"
                  style="width: 19px; height: 19px;"
                >
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M560 128C573.2 128 580.7 143.1 572.8 153.6L544 192L544 368C544 447.5 479.5 512 400 512L288 512L241.7 558.3C231.3 568.7 215.2 570.7 202.6 563.1L105.5 504.9C88.5 494.7 90.5 469.4 108.9 462L224 416C87.8 375.1 71.5 233.8 86 159.7C89.6 141.9 109.3 135.4 125.3 144.2L384 288L384 208C384 163.8 419.8 128 464 128L560 128zM464 184C450.7 184 440 194.7 440 208C440 221.3 450.7 232 464 232C477.3 232 488 221.3 488 208C488 194.7 477.3 184 464 184zM246.5 54.4C258.9 40.7 279.8 45.5 289 61.5L345.4 159.8C339.6 174.2 336.2 189.9 336 206.3L202.1 132C212.2 100.4 229.1 73.6 246.5 54.4z"></path></svg>
                </span>
              
              <span class="tab-title-template--27416327684482__content_tabs_NfhgRf">
                
                  Passt zum jeden Alltag
                
              </span>
            </button>
          
            <button
              class="tab-button-template--27416327684482__content_tabs_NfhgRf  has-icon"
              data-tab="tab-template--27416327684482__content_tabs_NfhgRf-4"
            >
              
                <span
                  class="tab-icon-template--27416327684482__content_tabs_NfhgRf"
                  style="width: 19px; height: 19px;"
                >
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 640"><!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M272.5 96C272.5 78.3 286.8 64 304.5 64L336.5 64C354.2 64 368.5 78.3 368.5 96L368.5 236.9L490.5 166.5C505.8 157.7 525.4 162.9 534.2 178.2L550.2 205.9C559 221.2 553.8 240.8 538.5 249.6L416.5 320L538.5 390.4C553.8 399.2 559.1 418.8 550.2 434.1L534.2 461.8C525.4 477.1 505.8 482.4 490.5 473.5L368.5 403.1L368.5 544C368.5 561.7 354.2 576 336.5 576L304.5 576C286.8 576 272.5 561.7 272.5 544L272.5 403.1L150.5 473.5C135.2 482.3 115.6 477.1 106.8 461.8L90.8 434.1C82 418.8 87.2 399.2 102.5 390.4L224.5 320L102.5 249.6C87.2 240.8 82 221.2 90.8 205.9L106.8 178.2C115.6 162.9 135.2 157.7 150.5 166.5L272.5 236.9L272.5 96z"></path></svg>
                </span>
              
              <span class="tab-title-template--27416327684482__content_tabs_NfhgRf">
                
                  Spüre es schon ab der ersten Sitzung
                
              </span>
            </button>
          
        </div>

        <div class="tabs-content-template--27416327684482__content_tabs_NfhgRf">
          
            
            

            <div
              id="tab-template--27416327684482__content_tabs_NfhgRf-1"
              class="tab-content-template--27416327684482__content_tabs_NfhgRf active"
            >
              <div class="tab-content-inner-template--27416327684482__content_tabs_NfhgRf layout-two-column">
                
                

                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                
              </div>
            </div>
          
            
            

            <div
              id="tab-template--27416327684482__content_tabs_NfhgRf-2"
              class="tab-content-template--27416327684482__content_tabs_NfhgRf "
            >
              <div class="tab-content-inner-template--27416327684482__content_tabs_NfhgRf layout-two-column">
                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                

                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                
              </div>
            </div>
          
            
            

            <div
              id="tab-template--27416327684482__content_tabs_NfhgRf-3"
              class="tab-content-template--27416327684482__content_tabs_NfhgRf "
            >
              <div class="tab-content-inner-template--27416327684482__content_tabs_NfhgRf layout-two-column">
                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                

                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                
              </div>
            </div>
          
            
            

            <div
              id="tab-template--27416327684482__content_tabs_NfhgRf-4"
              class="tab-content-template--27416327684482__content_tabs_NfhgRf "
            >
              <div class="tab-content-inner-template--27416327684482__content_tabs_NfhgRf layout-two-column">
                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

                        
                    </div>
                  </div>
                

                
                
                  <div class="content-block-template--27416327684482__content_tabs_NfhgRf">
                    

                    <div class="content-block-content-template--27416327684482__content_tabs_NfhgRf">
                      
                          

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

<script>
  document.addEventListener('DOMContentLoaded', function () {
    // Find all tab buttons in this section
    const sectionElement = document.querySelector('.content-tabs-template--27416327684482__content_tabs_NfhgRf');
    if (!sectionElement) return;

    const tabButtons = sectionElement.querySelectorAll('.tab-button-template--27416327684482__content_tabs_NfhgRf');
    const tabContents = sectionElement.querySelectorAll('.tab-content-template--27416327684482__content_tabs_NfhgRf');

    // Add click event listeners to all tab buttons
    tabButtons.forEach(function (button, index) {
      button.addEventListener('click', function (event) {
        event.preventDefault();

        // Remove active class from all tabs and content
        tabButtons.forEach(function (btn) {
          btn.classList.remove('active');
        });
        tabContents.forEach(function (content) {
          content.classList.remove('active');
        });

        // Add active class to clicked tab and corresponding content
        button.classList.add('active');
        if (tabContents[index]) {
          tabContents[index].classList.add('active');
        }
      });
    });
  });
</script>


</section><section id="shopify-section-template--27416327684482__scrolling_features_bar_PyXUpz" class="shopify-section section"><link href="//selira.de/cdn/shop/t/13/assets/scrolling-features-bar.css?v=112724044729450329911780232588" rel="stylesheet" type="text/css" media="all" />
<script src="//selira.de/cdn/shop/t/13/assets/scrolling-features-bar.js?v=81799221736613260541780232589" defer></script>

<style>
  @keyframes marquee-horizontal-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }

  @keyframes marquee-horizontal-right {
    0% {
      transform: translateX(-25%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .section-template--27416327684482__scrolling_features_bar_PyXUpz {
    --vertical-padding: 15px;
    --item-gap: 60px;
    --mobile-item-gap: 30px;
    --font-size: 14px;
    --mobile-font-size: 12px;
    --letter-spacing: 0.5px !important;
    --text-transform: uppercase;
    --icon-size: 20px;
    --mobile-icon-size: 16px;
    --icon-spacing: 10px;
    
    
        --text-color: #ffffff;
        --icon-color: #ffffff;
        
          --background-color: #e7cfcf;
        
    
    
    
    
    
    
    
  }

  .section-template--27416327684482__scrolling_features_bar_PyXUpz .features-track {
    animation: marquee-horizontal-left 15000ms linear infinite;
  }
  
  
</style>

<div class="scrolling-features-bar section-template--27416327684482__scrolling_features_bar_PyXUpz pause-on-hover">
  <div class="features-track-container">
    <div class="features-track">
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"></path></svg>
                </div>
              
              <span>Für jede Routine</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-6 0H5V6h9v2zm-9 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm12 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path></svg>
                </div>
              
              <span>Sicherer Versand</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>
                </div>
              
              <span>Bequem und sanft</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"></path></svg>
                </div>
              
              <span>Für jede Routine</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-6 0H5V6h9v2zm-9 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm12 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path></svg>
                </div>
              
              <span>Sicherer Versand</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>
                </div>
              
              <span>Bequem und sanft</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"></path></svg>
                </div>
              
              <span>Für jede Routine</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-6 0H5V6h9v2zm-9 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm12 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path></svg>
                </div>
              
              <span>Sicherer Versand</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>
                </div>
              
              <span>Bequem und sanft</span>
            </div>
            
          
        </div>
      
        <div class="feature-items">
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"></path></svg>
                </div>
              
              <span>Für jede Routine</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-6 0H5V6h9v2zm-9 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm12 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path></svg>
                </div>
              
              <span>Sicherer Versand</span>
            </div>
            
              <div class="feature-item-separator"></div>
            
          
            <div class="feature-item">
              
                <div class="feature-icon">
                  <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg>
                </div>
              
              <span>Bequem und sanft</span>
            </div>
            
          
        </div>
      
    </div>
  </div>
</div>


</section><section id="shopify-section-template--27416327684482__satisfaction_guarantee_bExRNX" class="shopify-section guarantee-section"><link href="//selira.de/cdn/shop/t/13/assets/satisfaction-guarantee.css?v=97628621641278039211780232586" rel="stylesheet" type="text/css" media="all" />


  


<script src="//selira.de/cdn/shop/t/13/assets/satisfaction-guarantee.js?v=109004693899870395661780232587" defer></script>

<style>
  .guarantee-section {
    --section-background: linear-gradient(90deg, rgba(255, 250, 247, 1), rgba(247, 235, 225, 1) 97%);
    --padding-top-mobile: 40px;
    --padding-bottom-mobile: 40px;
    --padding-top: 60px;
    --padding-bottom: 60px;
    --overflow-setting: hidden;
    --padding-top-no-photos-mobile: 15px;
    --padding-top-no-photos-desktop: 15px;

    --polaroid-size-mobile: 100px;
    --polaroid-size-desktop: 180px;
    --polaroid-z-index: auto;

    
    
    --mobile-photos-margin-top: -8px;

    
    
    
    
    --photos-margin-top: 12px;
    --photos-margin-bottom: -12px;
    --photos-z-index: 1;

    --content-padding-mobile: 5px;
    --content-padding-desktop: 70px;
    --content-width: 50%;
    --content-max-width: 600px;
    --content-max-width-no-photos: 450px;

    --icon-color: #e7cfcf;
    --icon-margin-bottom: 10px;

    --heading-size-mobile: 36px;
    --heading-size-desktop: 38px;
    --heading-line-height: 1.3;

    --risk-free-color: ;
    --beauty-revolution-color: ;
    --accent-text-margin-right: 4px;
    --accent-font-family: , ;
    --accent-font-weight: ;
    --accent-font-style: ;

    --description-size-mobile: 14px;
    --description-size-desktop: 14px;
    --description-color: #000000;
    --description-line-height: 1.5;

    --button-background: #211a28;
    --button-background-hover: #070609;
    --button-text-color: #ffffff;

    --benefit-size-mobile: 14px;
    --benefit-size-desktop: 14px;
    --benefit-text-color: #000000;
    --checkmark-color: #000000;
  }

  /* Fix for double background issue */
  .guarantee-section .guarantee-section {
    background: transparent !important;
  }

  /* Button Styling with Global Support */
  /* Higher specificity selector to override global-button-fix */
  .guarantee-section__cta,
  .theme-button.guarantee-section__cta {
    /* Always use global spacing and consistency */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    padding: var(--global-button-padding-y, 12px) 20px !important;
    letter-spacing: var(--global-button-letter-spacing, 1px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    
      /* Use Section Custom Colors (but keep global spacing) */
      background-color: var(--button-background) !important;
      color: var(--button-text-color) !important;
      border: none !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      border-radius: 8px !important;
    
  }

  /* Higher specificity for hover state */
  .guarantee-section__cta:hover,
  .theme-button.guarantee-section__cta:hover {
    
      /* Custom Section Hover State */
      background-color: var(--button-background-hover) !important;
      color: var(--button-text-color) !important;
      border: none !important;
    
  }

  .guarantee-section {
    background: var(--section-background);
  }

  .guarantee-section__wrapper {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-body-family-override);
    font-weight: var(--font-weight-regular);
    box-sizing: border-box;
    letter-spacing: var(--letter-spacing-body);
    padding: 35px 5px;
    margin-top: var(--margin-top-mobile);
    margin-bottom: var(--margin-bottom-mobile);
    overflow: var(--overflow-setting);
    position: relative;
    
    
    
  }

  .guarantee-section__container {
    
  }

  @media screen and (max-width: 768px) {
    .guarantee-section__wrapper {
      padding: 5px 5px;
      
      
      
    }
  }

  /* Global heading typography */
  .guarantee-section__heading {
    color: #ef4a65 !important;
    line-height: var(--heading-line-height) !important;
  }

  /* Enhanced accent text styling */
  .guarantee-section .accent-text {
    
      /* Use Section-Specific Accent Typography */
      
      
      
        font-weight: 300 !important;
      
    

    /* Apply spacing between accent text and regular text */
    margin-right: var(--accent-text-margin-right) !important;

    /* Color and Gradient Application */color: #ef4a65 !important;padding-right: 0px !important;
    display: inline-block !important;
  }

  /* Load-in animation */
  .page-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add slight delay for staggered effect on multiple sections */
  .page-fade-in:nth-child(2) { animation-delay: 0.1s; }
  .page-fade-in:nth-child(3) { animation-delay: 0.2s; }
  .page-fade-in:nth-child(4) { animation-delay: 0.3s; }
</style>

<div class="guarantee-section__wrapper page-fade-in">
  <div class="guarantee-section__container">
    <!-- Mobile View -->
    <div class="guarantee-section__mobile ">
      <!-- Polaroid Photos moved above content -->
      
        <div class="guarantee-section__photos-mobile">
          

          

          

          
        </div>
      

      <div class="guarantee-section__content">
        <div class="shield-icon">
          
              <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="80" height="80">
                <path fill-rule="evenodd" clip-rule="evenodd" d="M8 16L4.35009 13.3929C2.24773 11.8912 1 9.46667 1 6.88306V3L8 0L15 3V6.88306C15 9.46667 13.7523 11.8912 11.6499 13.3929L8 16ZM12.2071 5.70711L10.7929 4.29289L7 8.08579L5.20711 6.29289L3.79289 7.70711L7 10.9142L12.2071 5.70711Z" fill="currentColor"/>
              </svg>
          
        </div>

        <h2 class="guarantee-section__heading heading-text">
          <span class="accent-text">Geld-zurück</span>
          Garantie
        </h2>

        <p class="guarantee-section__description">
          Wir sind von der Qualität unseres Produkts so überzeugt, dass wir eine Zufriedenheitsgarantie anbieten. Sollten Sie mit Ihrem Kauf nicht vollkommen zufrieden sein, senden Sie ihn einfach innerhalb von 14 Tagen zurück, und Sie erhalten den vollen Kaufpreis zurück.
        </p>

        
        

        

        <a href="#" class="guarantee-section__cta" data-scroll-to-first-section="true">
          Jetzt Bestellen
        </a>

        <div class="guarantee-section__benefits">
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              100 % Zufriedenheit
            </div>
          
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              Sicherer Versand
            </div>
          
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              Einfache Rücksendungen
            </div>
          
        </div>
      </div>
    </div>

    <!-- Desktop View -->
    <div class="guarantee-section__desktop ">
      
        <div class="guarantee-section__photos-left">
          

          
        </div>
      

      <div class="guarantee-section__content">
        <div class="shield-icon">
          
              <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="80" height="80">
                <path fill-rule="evenodd" clip-rule="evenodd" d="M8 16L4.35009 13.3929C2.24773 11.8912 1 9.46667 1 6.88306V3L8 0L15 3V6.88306C15 9.46667 13.7523 11.8912 11.6499 13.3929L8 16ZM12.2071 5.70711L10.7929 4.29289L7 8.08579L5.20711 6.29289L3.79289 7.70711L7 10.9142L12.2071 5.70711Z" fill="currentColor"/>
              </svg>
          
        </div>

        <h2 class="guarantee-section__heading heading-text">
          <span class="accent-text">Geld-zurück</span>
          Garantie
        </h2>

        <p class="guarantee-section__description">
          Wir sind von der Qualität unseres Produkts so überzeugt, dass wir eine Zufriedenheitsgarantie anbieten. Sollten Sie mit Ihrem Kauf nicht vollkommen zufrieden sein, senden Sie ihn einfach innerhalb von 14 Tagen zurück, und Sie erhalten den vollen Kaufpreis zurück.
        </p>

        <a href="#" class="guarantee-section__cta" data-scroll-to-first-section="true">
          Jetzt Bestellen
        </a>

        <div class="guarantee-section__benefits">
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              100 % Zufriedenheit
            </div>
          
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              Sicherer Versand
            </div>
          
          
            <div class="benefit">
              <svg class="checkmark-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
                <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" fill="currentColor"/>
              </svg>
              Einfache Rücksendungen
            </div>
          
        </div>
      </div>

      
        <div class="guarantee-section__photos-right">
          

          

          
        </div>
      
    </div>
  </div>
</div>

<script>
  document.addEventListener('DOMContentLoaded', function () {
    // Handle scroll-to-first-section functionality
    const guaranteeButtons = document.querySelectorAll('.guarantee-section__cta[data-scroll-to-first-section]');

    guaranteeButtons.forEach((button) => {
      button.addEventListener('click', function (e) {
        e.preventDefault();

        console.log('🎯 Scrolling to first section...');

        // Find the product details section or first section on the page (excluding header/navigation)
        const selectors = [
          // Product details section (highest priority)
          '[data-section-type="product"]',
          '.shopify-section[data-section-type="product"]',
          '.product-section',
          '.shop-product-section',
          '.product-details',
          '.product-template',
          '#ProductSection',
          '#shopify-section-product-template',

          // Most common first section patterns
          'main section:first-of-type',
          '.main-content section:first-of-type',
          '.page-content section:first-of-type',

          // Shopify section patterns
          '.shopify-section:not([data-section-type="header"]):not([data-section-type="announcement-bar"])',
          'section.shopify-section:not([data-section-type="header"])',

          // General section patterns
          'main > *:first-child',
          '.content section:first-of-type',
          'section:not(header):not([role="banner"])',

          // Fallback to any section
          'section:first-of-type',
          '[data-section-type]:not([data-section-type="header"])',

          // Last resort - any content element
          'main > div:first-child',
          '.main > *:first-child',
        ];

        let targetElement = null;
        let usedSelector = '';

        for (let selector of selectors) {
          try {
            const elements = document.querySelectorAll(selector);
            if (elements.length > 0) {
              // Get the first element that's not a header/nav
              for (let element of elements) {
                const tagName = element.tagName.toLowerCase();
                const sectionType = element.getAttribute('data-section-type');

                // Skip header/navigation elements
                if (
                  tagName === 'header' ||
                  tagName === 'nav' ||
                  sectionType === 'header' ||
                  sectionType === 'announcement-bar' ||
                  element.getAttribute('role') === 'banner'
                ) {
                  continue;
                }

                targetElement = element;
                usedSelector = selector;
                break;
              }

              if (targetElement) {
                console.log(`✅ Found first section with selector: ${selector}`);
                break;
              }
            }
          } catch (e) {
            // Skip invalid selectors
            continue;
          }
        }

        if (targetElement) {
          // Calculate offset for fixed headers
          const headerHeight = document.querySelector('header')?.offsetHeight || 0;
          const stickyHeader =
            document.querySelector('.sticky-header, .header-sticky, [style*="position: fixed"]')?.offsetHeight || 0;
          const adminBarHeight = document.querySelector('#admin_bar_iframe, .admin-bar')?.offsetHeight || 0;
          const announcementBar = document.querySelector('.announcement-bar, .promo-bar')?.offsetHeight || 0;

          const offset = Math.max(headerHeight, stickyHeader) + adminBarHeight + announcementBar + 20;

          const elementPosition = targetElement.offsetTop;
          const offsetPosition = elementPosition - offset;

          window.scrollTo({
            top: Math.max(0, offsetPosition),
            behavior: 'smooth',
          });

          console.log(`✅ Scrolled to first section using selector: ${usedSelector}`);

          // Optional: Add visual highlight to show successful targeting
          targetElement.style.transition = 'all 0.3s ease';
          targetElement.style.transform = 'scale(1.01)';
          setTimeout(() => {
            targetElement.style.transform = 'scale(1)';
          }, 300);
        } else {
          console.warn('❌ Could not find any suitable first section to scroll to');
          console.log('🔍 Available sections on page:');

          // Debug: Show available sections
          const allSections = document.querySelectorAll('section, .shopify-section, main > *, .main > *');
          allSections.forEach((section, index) => {
            const tagName = section.tagName.toLowerCase();
            const id = section.id || 'no-id';
            const sectionType = section.getAttribute('data-section-type') || 'no-section-type';
            const className = section.className || 'no-class';

            console.log(
              `   ${index + 1}. <${tagName}> id="${id}" data-section-type="${sectionType}" class="${className}"`
            );
          });
        }
      });
    });
  });
</script>


</section><section id="shopify-section-template--27416327684482__divider_QGgnxa" class="shopify-section section section-divider">
<style data-shopify>.divider-section-template--27416327684482__divider_QGgnxa {
    --divider-color: #ffffff;
    --divider-height: 50px;
    --padding-top: 8px;
    --padding-bottom: 0px;
    --svg-transform: none;

    background-color: #fffaf7;
    padding: var(--padding-top) 0 var(--padding-bottom) 0;
  }

  /* Only the SVG wrapper needs line-height reset */
  .divider-section-template--27416327684482__divider_QGgnxa .divider-svg-wrap {
    line-height: 0;
  }

  .divider-section-template--27416327684482__divider_QGgnxa svg {
    width: 100%;
    height: var(--divider-height);
    transform: var(--svg-transform);
    display: block;
    
  }

  /* Apply gradient to wrapper, SVG becomes the mask */
  

  .divider-section-template--27416327684482__divider_QGgnxa svg path {
    
      fill: var(--divider-color);
    
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .divider-section-template--27416327684482__divider_QGgnxa svg rect {
    
      fill: var(--divider-color);
    
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  
</style><div class="divider-section-template--27416327684482__divider_QGgnxa">
  <div class="divider-svg-wrap"><svg
          viewBox="0 0 1200 120"
          
            preserveAspectRatio="none"
          
          role="presentation"
          aria-hidden="true"
          focusable="false"
        >
          <path d="M0,60 Q300,120 600,60 T1200,60 V120 H0 Z"></path></svg></div>
</div>


</section>
    </main><!-- BEGIN sections: footer-group -->
<section id="shopify-section-sections--27416328208770__footer" class="shopify-section shopify-section-group-footer-group section-custom-footer"><link href="//selira.de/cdn/shop/t/13/assets/component-newsletter.css?v=154014373058243267561780232402" rel="stylesheet" type="text/css" media="all" />
<link href="//selira.de/cdn/shop/t/13/assets/component-list-social.css?v=160587014728711800601780232395" rel="stylesheet" type="text/css" media="all" />
<link href="//selira.de/cdn/shop/t/13/assets/component-localization-form.css?v=66557587062367005011780232396" rel="stylesheet" type="text/css" media="all" />
<link href="//selira.de/cdn/shop/t/13/assets/section-custom-footer.css?v=89606321808826208201780232596" rel="stylesheet" type="text/css" media="all" />
<style>
  .custom-footer {
    --newsletter-bg-color: #faf7f5;
    --newsletter-text-color: #000000;
    --newsletter-button-color: #faf7f5;
    --footer-bg-color: #e7cfcf;
    --footer-text-color: #faf7f5;
    --footer-heading-color: #faf7f5;
    --footer-border-color: #faf7f5;
    --footer-menu-color: #faf7f5;
    --footer-menu-hover-color: #ffffff;
    --footer-divider-color: #faf7f5;
    --localization-label-color: #faf7f5;
    --footer-link-color: #faf7f5;
    --footer-link-hover-color: #ffffff;
    --footer-heading-size: 22px;
    --footer-text-size: 14px;
    --newsletter-title-size: 32px;
    --newsletter-subtitle-size: 16px;
    --copyright-text-size: 11px;
    --localization-label-size: 14px;
    --newsletter-section-padding-top: 80px;
    --newsletter-section-padding-bottom: 80px;
    --newsletter-form-max-width: 580px;
    --newsletter-form-margin-top: 32px;
    --newsletter-input-padding-vertical: 24px;
    --newsletter-input-padding-horizontal: 24px;
    --newsletter-input-border-radius: 8px;
    --newsletter-input-border-width: 1px;
    --newsletter-input-border-color: #e0e0e0;
    --newsletter-input-font-size: 14px;
    --newsletter-input-height: 48px;
    --newsletter-input-bg-color: #ffffff;
    --newsletter-input-text-color: #000000;
  }
  
  
  /* Use global footer color when theme colors are enabled */
  .custom-footer .footer-main {
    background-color: rgb(var(--color-footer)) !important;
  }
  

  /* Hyperlink/underlined text styling */
  .custom-footer .footer-text a,
  .custom-footer .footer-column .footer-text a,
  .custom-footer .footer-bottom a,
  .custom-footer .newsletter-section a,
  .custom-footer p a,
  .custom-footer .rte a,
  .custom-footer .footer-description a {
    color: var(--footer-link-color) !important;
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
    transition: color 0.3s ease;
  }

  .custom-footer .footer-text a:hover,
  .custom-footer .footer-column .footer-text a:hover,
  .custom-footer .footer-bottom a:hover,
  .custom-footer .newsletter-section a:hover,
  .custom-footer p a:hover,
  .custom-footer .rte a:hover,
  .custom-footer .footer-description a:hover {
    color: var(--footer-link-hover-color) !important;
  }

  /* Footer top border */
  

  /* Newsletter Form Customization */
  .custom-footer .newsletter-section {
    padding-top: var(--newsletter-section-padding-top) !important;
    padding-bottom: var(--newsletter-section-padding-bottom) !important;
  }

  .custom-footer .newsletter-form {
    max-width: var(--newsletter-form-max-width) !important;
    margin-top: var(--newsletter-form-margin-top) !important;
  }

  /* Ensure field container is positioned for absolute button */
  .custom-footer .newsletter-form__field-wrapper .field {
    position: relative !important;
  }

  .custom-footer .newsletter-form__field-wrapper .field__input {
    padding: var(--newsletter-input-padding-vertical) var(--newsletter-input-padding-horizontal) !important;
    /* Space for button: button width + border spacing + right position + small gap */
    padding-right: calc(var(--newsletter-input-height) - 10px + var(--newsletter-input-border-width) + 5px + 8px) !important;
    border-radius: var(--newsletter-input-border-radius) !important;
    border-width: var(--newsletter-input-border-width) !important;
    border-color: var(--newsletter-input-border-color) !important;
    border-style: solid !important;
    font-size: var(--newsletter-input-font-size) !important;
    height: var(--newsletter-input-height) !important;
    min-height: calc(var(--newsletter-input-height) + var(--newsletter-input-border-width) * 2) !important;
    background-color: var(--newsletter-input-bg-color) !important;
    color: var(--newsletter-input-text-color) !important;
  }

  .custom-footer .newsletter-form__field-wrapper .field__input:focus,
  .custom-footer .newsletter-form__field-wrapper .field__input:focus-visible {
    border-radius: var(--newsletter-input-border-radius) !important;
  }

  .custom-footer .newsletter-form__button,
  .custom-footer button.newsletter-form__button,
  .custom-footer .newsletter-form__button.field__button,
  .custom-footer button.newsletter-form__button.field__button {
    /* Button size: input height minus top/bottom spacing (5px each = 10px total) */
    width: calc(var(--newsletter-input-height) - 10px) !important;
    height: calc(var(--newsletter-input-height) - 10px) !important;
    border-radius: calc(var(--newsletter-input-border-radius) - 4px) !important;
    /* Position: account for border width + 5px spacing from edge */
    position: absolute !important;
    top: calc(var(--newsletter-input-border-width) + 5px) !important;
    right: calc(var(--newsletter-input-border-width) + 5px) !important;
    z-index: 2 !important;
    
    /* Display for icon centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Override global button styling - single color, no gradient, no border */
    background: var(--newsletter-button-color) !important;
    background-color: var(--newsletter-button-color) !important;
    background-image: none !important;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #ffffff !important;
    
    /* Remove transforms and transitions from global button effects */
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }

  .custom-footer .newsletter-form__button:hover,
  .custom-footer button.newsletter-form__button:hover,
  .custom-footer .newsletter-form__button.field__button:hover,
  .custom-footer button.newsletter-form__button.field__button:hover {
    background: var(--newsletter-button-color) !important;
    background-color: var(--newsletter-button-color) !important;
    background-image: none !important;
    opacity: 0.85 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
  }

  /* Remove gradient and border pseudo-elements */
  .custom-footer .newsletter-form__button:before,
  .custom-footer .newsletter-form__button:after,
  .custom-footer button.newsletter-form__button:before,
  .custom-footer button.newsletter-form__button:after {
    display: none !important;
    content: none !important;
  }
 
  /* RTL button positioning */
  [dir="rtl"] .custom-footer .newsletter-form__button,
  [dir="rtl"] .custom-footer button.newsletter-form__button,
  [dir="rtl"] .custom-footer .newsletter-form__button.field__button,
  [dir="rtl"] .custom-footer button.newsletter-form__button.field__button {
    left: calc(var(--newsletter-input-border-width) + 5px) !important;
    right: auto !important;
  }

  /* Button icon styling */
  .custom-footer .newsletter-form__button svg,
  .custom-footer .newsletter-form__button .svg-wrapper {
    width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .custom-footer .newsletter-form__button svg {
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }

  /* RTL input padding - space for button on left side */
  [dir="rtl"] .custom-footer .newsletter-form__field-wrapper .field__input {
    padding-left: calc(var(--newsletter-input-height) - 10px + var(--newsletter-input-border-width) + 5px + 8px) !important;
    padding-right: var(--newsletter-input-padding-horizontal) !important;
  }

  /* Hide label - using placeholder instead */
  .custom-footer .newsletter-form__field-wrapper .field__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Remove pseudo-element that creates duplicate input appearance */
  .custom-footer .newsletter-form__field-wrapper .field:after {
    display: none !important;
    content: none !important;
  }

  /* Mobile newsletter section padding */
  @media screen and (max-width: 749px) {
    .custom-footer .newsletter-section {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }
  }

  /* Load-in animation */
  .page-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add slight delay for staggered effect on multiple sections */
  .page-fade-in:nth-child(2) { animation-delay: 0.1s; }
  .page-fade-in:nth-child(3) { animation-delay: 0.2s; }
  .page-fade-in:nth-child(4) { animation-delay: 0.3s; }

  /* Mobile column customization */
  @media screen and (max-width: 749px) {
    
      .footer-content--4-col,
      .footer-content--5-col {
        grid-template-columns: 1fr !important;
      }
      
      .footer-column:first-child {
        grid-column: 1 !important;
        margin-bottom: 2rem;
      }
    
  }
</style>

<div class="custom-footer page-fade-in"><!-- Main Footer -->
  <footer class="footer-main">
    <div class="footer-container">
      <div class="footer-content footer-content--4-col"><!-- Brand Column -->
          <div class="footer-brand"><img
                src="//selira.de/cdn/shop/files/Verhindert_das_Schlafen_auf_dem_Ruecken-12_fd0771b7-e2d7-43af-b7d0-0ef01851736f.png?v=1778158783&width=200"
                alt="Selira"
                class="footer-logo-image"
                width="150"
                height="auto"
              ></div><div class="footer-column" ><h3>Shop</h3><ul><li>
                        <a href="/">Home </a>
                      </li><li>
                        <a href="/products/selira-sweatbelt">Schwitzgürtel</a>
                      </li><li>
                        <a href="/pages/uber-uns">Über uns</a>
                      </li><li>
                        <a href="/pages/contact">Kontakt</a>
                      </li></ul></div><div class="footer-column" ><h3>Hilfe</h3><ul><li>
                      <a href="/pages/contact">Kontakt</a>
                    </li><li>
                      <a href="/apps/retractly/withdraw">Vertrag widerrufen</a>
                    </li><li>
                      <a href="/policies/legal-notice">Impressum</a>
                    </li><li>
                      <a href="/policies/privacy-policy">Datenschutzerklärung</a>
                    </li><li>
                      <a href="/policies/terms-of-service">Allgemeine Geschäftsbedingungen</a>
                    </li><li>
                      <a href="/policies/refund-policy">Rückerstattungsrichtlinie</a>
                    </li></ul>
              </div></div><!-- Footer Bottom -->
        <div class="footer-bottom"><div class="footer-copyright">© 2026
                Selira
</div><div class="footer-payment-icons-wrapper">
              <div
  class="footer-payment-icons-container"
  style="
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  "
><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" 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><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><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"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-mastercard"><title id="pi-mastercard">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><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><circle fill="#EB001B" cx="15" cy="12" r="7"></circle><circle fill="#F79E1B" cx="23" cy="12" r="7"></circle><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.2-3 3.3-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" 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><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><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><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><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><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><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><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"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" 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><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"></path><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><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"></path></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><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><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"></path></g></g></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" 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><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><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><path d="M13.986 11.284c0-.308-.024-.616-.073-.920h-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><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><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><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"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 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><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><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"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" 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><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><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><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><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"></path></svg></div><div class="footer-payment-icon" style="height: 24px;"><svg class="icon icon--full-color" viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-discover"><title id="pi-discover">Discover</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><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><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.38 1-2.12 0-.75-.34-1.58-1-2.12-.53-.4-1.11-.63-1.96-.63zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.32.59.78.59 1.37 0 .6-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"></path><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-discover_paint0_linear)"></path><defs><linearGradient id="pi-discover_paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"></stop><stop offset=".25" stop-color="#F79A20"></stop><stop offset=".533" stop-color="#F68D20"></stop><stop offset=".62" stop-color="#F58720"></stop><stop offset=".723" stop-color="#F48120"></stop><stop offset="1" stop-color="#F37521"></stop></linearGradient></defs></svg></div></div>

<style>
  .footer-payment-icons-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .footer-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .footer-payment-icon svg {
    max-height: 100%;
    width: auto;
    min-width: 30px;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
  }

  @media screen and (max-width: 749px) {
    .footer-payment-icons-container {
      gap: 4px !important;
    }

    .footer-payment-icon {
      height: 19.2px !important;
    }
  }
</style>

            </div><div class="footer__localization isolate"><localization-form><form method="post" action="/localization" id="FooterCountryForm" accept-charset="UTF-8" class="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" /><div>
                      <h2 class="caption-large text-body" id="FooterCountryLabel">
                        Land/Region
                      </h2>

<div class="disclosure">
  <button
    type="button"
    class="disclosure__button localization-form__select localization-selector link link--text caption-large"
    aria-expanded="false"
    aria-controls="FooterCountry-country-results"
    aria-describedby="FooterCountryLabel"
  >
    <span>Deutschland |
      EUR
      €</span>
    <svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>

  </button>
  <div class="disclosure__list-wrapper country-selector" hidden>
    <div class="country-filter country-filter--no-padding">
      
      <button
        class="country-selector__close-button button--small link"
        type="button"
        aria-label="Schließen"
      ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>
    </div>
    <div id="sr-country-search-results" class="visually-hidden" aria-live="polite"></div>
    <div
      class="disclosure__list country-selector__list country-selector__list--with-multiple-currencies"
      id="FooterCountry-country-results"
    >
      
      <ul role="list" class="list-unstyled countries"><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
                aria-current="true"
              
              data-value="DE"
              id="Deutschland"
            >
              <span
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Deutschland</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="AT"
              id="Österreich"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Österreich</span>
              <span class="localization-form__currency motion-reduce">
                EUR
                €</span>
            </a>
          </li><li class="disclosure__item" tabindex="-1">
            <a
              class="link link--text disclosure__link caption-large focus-inset"
              href="#"
              
              data-value="CH"
              id="Schweiz"
            >
              <span
                
                  class="visibility-hidden"
                
              ><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
              <span class="country">Schweiz</span>
              <span class="localization-form__currency motion-reduce">
                CHF
                CHF</span>
            </a>
          </li></ul>
    </div>
  </div>
  <div class="country-selector__overlay"></div>
</div>
<input type="hidden" name="country_code" value="DE">
</div></form></localization-form></div></div></div>
  </footer>
</div>


</section>
<!-- END sections: footer-group -->
<ul hidden>
      <li id="a11y-refresh-page-message">Eine Auswahl führt zu einer vollständigen Seitenaktualisierung.</li>
      <li id="a11y-new-window-message">Öffnet in einem neuen Fenster.</li>
    </ul>

    
    

<!-- jQuery (required for custom.js) -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" defer></script>

<!-- Modern Carousel -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js" defer></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">

<!-- Custom Scripts -->
<script src="//selira.de/cdn/shop/t/13/assets/custom.js?v=122527552017893091991780232428" defer></script>

<!-- Vite Build System -->




  <link href="//selira.de/cdn/shop/t/13/assets/elxr-styles.css?v=46559865512992900091780232443" rel="stylesheet" type="text/css" media="all" />




  <script src="//selira.de/cdn/shop/t/13/assets/elxr-core.js?v=159921944420282264731780232442" type="module" crossorigin="anonymous"></script>





    <script>
      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
      if (Shopify.designMode) {
        document.documentElement.classList.add('shopify-design-mode');
      }
    </script>

    
    

    
  <style> .cart-drawer .cart__checkout-button span,.cart-drawer .cart__checkout-button .loading__spinner,.cart-drawer .cart__checkout-button .icon {color: #000000 !important;} </style>
<div id="shopify-block-AWU9qK05LWVIrYm9vV__14876220180117712452" class="shopify-block shopify-app-block">
  <!-- BEGIN app snippet: app-data --><script>
    window.AVADA_SURVEY = {
      _disabled: true,
      settings: {"shopId":"rUpC4Sso7xY4AYyWspy9","shopLogo":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0952\/7699\/0850\/files\/logo_shop.png?v=1779197044","sideLogoUrl":"https:\/\/cdn.shopify.com\/s\/files\/1\/0952\/7699\/0850\/files\/logo_shop.png?v=1779197044"},"translationSettings":{"de":{"enabled":true,"updatedAt":{"_seconds":1781028352,"_nanoseconds":860000000}}},"detectLanguage":"store-language"} || {},
      page: "index"
    };
  </script><!-- END app snippet -->



</div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">




<link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/019ecd9a-322b-7e21-a752-bc29e136cb8c/upcart-2-401/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">



  
    <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/019ecd9a-322b-7e21-a752-bc29e136cb8c/upcart-2-401/assets/upcart-bundle.js"></script>
   


<script>
  
  function b64DecodeUnicode(str) {
    try {
        return decodeURIComponent(
        atob(str)
            .split('')
            .map(function (c) {
            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
            })
            .join(''),
        );
    } catch {
        return str;
    }
  }
</script>


<script>
(function() {
    window.upcartSettings = {};
    window.upcartSettings.upcartSettings = {};
    window.upcartSettings.upcartEditorSettings = {};
    window.upcartSettings.stickyCartButtonEditorSettings = {};

    
    
    
    let val;

    val = b64DecodeUnicode("cmlnaHQ=");
    if (val === '') {
        val = b64DecodeUnicode("cmlnaHQ=");
    }
    window.upcartSettings.upcartSettings.cartPosition = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.disableSticky = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("dHJ1ZQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.openOnAddToCart = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.redirectToCart = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.enableCartSkeletons = val;

    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJJaHIgV2FyZW5rb3JiIiwiY2hlY2tvdXQiOiJDaGVja291dCB7e3RvdGFsX3ByaWNlfX0iLCJhZGRUZXh0IjoiKyBIw6R1ZmlnIHp1c2FtbWVuIGdla2F1ZnQg4q2QIiwiZW1wdHlDYXJ0IjoiV2FyZW5rb3JiIGxlZXIiLCJkaXNjb3VudFNhdmluZ3MiOiIiLCJjb250aW51ZVNob3BwaW5nIjoiV2VpdGVyIGVpbmthdWZlbiIsInRvdGFsU2F2aW5ncyI6Ikdlc2FtdHJhYmF0dCIsInN1YnRvdGFsIjoiU3VtbWUiLCJidW5kbGVIaWRlU2luZ3VsYXJJdGVtVGV4dCI6IjEgUHJvZHVrdCBhdXNibGVuZGVuIiwiYnVuZGxlU2hvd1Npbmd1bGFySXRlbVRleHQiOiIxIFByb2R1a3QgYW56ZWlnZW4iLCJidW5kbGVIaWRlTXVsdGlwbGVJdGVtc1RleHQiOiJBdXNibGVuZGVuIHtOVU1CRVJfT0ZfSVRFTVN9IFByb2R1a3RlIiwiYnVuZGxlU2hvd011bHRpcGxlSXRlbXNUZXh0IjoiU2hvdyB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyJ9");
    if (val === '') {
        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.translations = val;

    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
    if (val === '') {
        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYmVsb3dDYXJ0SXRlbXMiOiIiLCJhYm92ZUNoZWNrb3V0QnV0dG9uIjoiIiwiYmVsb3dDaGVja291dEJ1dHRvbiI6IiIsImJvdHRvbU9mQ2FydCI6IiIsIm9uRW1wdHlDYXJ0IjoiIiwic2NyaXB0c0JlZm9yZUxvYWQiOiIifQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.htmlFields = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("dHJ1ZQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.automaticDiscount = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.basePriceForDiscount = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.skipGoogleFonts = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.overrideScrollLocking = val;

    val = b64DecodeUnicode("MTAw");
    if (val === '') {
        val = b64DecodeUnicode("MTAw");
    }
    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.cartEventTracking = val;

    val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
    if (val === '') {
        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.openCartButtonSelection = val;

    val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
    if (val === '') {
        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;

    val = b64DecodeUnicode("bGluZQ==");
    if (val === '') {
        val = b64DecodeUnicode("bGluZQ==");
    }
    window.upcartSettings.upcartSettings.updateItemIdentifier = val;

    val = b64DecodeUnicode("Knt9");
    if (val === '') {
        val = b64DecodeUnicode("Knt9");
    }
    window.upcartSettings.upcartSettings.customCSS = val;

    val = b64DecodeUnicode("Knt9");
    if (val === '') {
        val = b64DecodeUnicode("Knt9");
    }
    window.upcartSettings.upcartSettings.customStickyCartCSS = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;

    val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
    if (val === '') {
        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.customCartBundleInfo = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZGlzY291bnRfb25seQ==");
    }
    window.upcartSettings.upcartSettings.savingsRowBehaviour = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("W10=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartSettings.activeCartIds = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("dHJ1ZQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("");
    }
    window.upcartSettings.upcartEditorSettings.cartId = val;

    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.settingsModule = val;

    val = b64DecodeUnicode("I2ZmZmZmZg==");
    if (val === '') {
        val = b64DecodeUnicode("IzJlYTgxOA==");
    }
    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.cartSummaryModuleVersion = val;

    val = b64DecodeUnicode("Mi4wLjAtY29udHJvbGxlcl90ZW1wbGF0ZV9zZXBhcmF0aW9u");
    if (val === '') {
        val = b64DecodeUnicode("MS4wLjA=");
    }
    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.customJsxTemplatesEnabled = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
    if (val === '') {
        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.triggeredRewardsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.cartSummaryModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    if (val === '') {
        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
    if (val === '') {
        val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.betweenAnnouncementsAndTieredRewardsCustomTemplate = val;

    val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
    if (val === '') {
        val = b64DecodeUnicode("eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.betweenTieredRewardsAndTriggeredRewardsCustomTemplate = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("eyJhYm92ZUNoZWNrb3V0Q3VzdG9tSnN4VGVtcGxhdGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.checkoutModuleCustomJsxTemplates = val;

    val = b64DecodeUnicode("YmFzZQ==");
    if (val === '') {
        val = b64DecodeUnicode("YmFzZQ==");
    }
    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;

    val = b64DecodeUnicode("YmFzZQ==");
    if (val === '') {
        val = b64DecodeUnicode("YmFzZQ==");
    }
    window.upcartSettings.upcartEditorSettings.headerHeight = val;

    val = b64DecodeUnicode("I2ZmZmZmZjAw");
    if (val === '') {
        val = b64DecodeUnicode("I2ZmZmZmZjAw");
    }
    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;

    val = b64DecodeUnicode("eyJ0eXBlIjoiY3VzdG9tVGV4dCIsImZvbnRTaXplUHgiOjI0LCJmb250V2VpZ2h0IjoiNjAwIn0=");
    if (val === '') {
        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;

    val = b64DecodeUnicode("Y2VudGVy");
    if (val === '') {
        val = b64DecodeUnicode("c2lkZQ==");
    }
    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;

    val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
    if (val === '') {
        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
    }
    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;

    val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
    if (val === '') {
        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;

    val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
    if (val === '') {
        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;

    val = b64DecodeUnicode("c21hbGw=");
    if (val === '') {
        val = b64DecodeUnicode("c21hbGw=");
    }
    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;

    val = b64DecodeUnicode("YmFzZQ==");
    if (val === '') {
        val = b64DecodeUnicode("YmFzZQ==");
    }
    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;

    val = b64DecodeUnicode("bm9uZQ==");
    if (val === '') {
        val = b64DecodeUnicode("bm9uZQ==");
    }
    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;

    val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
    if (val === '') {
        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.announcementModule = val;

    val = b64DecodeUnicode("PHA+SWhyZSBQcm9kdWt0ZSBzaW5kIHJlc2VydmllcnQgZsO8ciB7VElNRVJ9ITwvcD4K");
    if (val === '') {
        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+ITwvcD4=");
    }
    window.upcartSettings.upcartEditorSettings.announcementEditor = val;

    val = b64DecodeUnicode("I2ZmYjBiMA==");
    if (val === '') {
        val = b64DecodeUnicode("I0NERTBFMA==");
    }
    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;

    val = b64DecodeUnicode("dG9w");
    if (val === '') {
        val = b64DecodeUnicode("dG9w");
    }
    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;

    val = b64DecodeUnicode("IzAwMDAwMA==");
    if (val === '') {
        val = b64DecodeUnicode("I0M1RTZGRA==");
    }
    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;

    val = b64DecodeUnicode("MzAw");
    if (val === '') {
        val = b64DecodeUnicode("MDA6MDA=");
    }
    window.upcartSettings.upcartEditorSettings.announcementTimer = val;

    val = b64DecodeUnicode("c21hbGw=");
    if (val === '') {
        val = b64DecodeUnicode("YmFzZQ==");
    }
    window.upcartSettings.upcartEditorSettings.announcementHeight = val;

    val = b64DecodeUnicode("MTU=");
    if (val === '') {
        val = b64DecodeUnicode("MTU=");
    }
    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsModule = val;

    val = b64DecodeUnicode("I0UyRTJFMg==");
    if (val === '') {
        val = b64DecodeUnicode("I0UyRTJFMg==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;

    val = b64DecodeUnicode("IzkzRDNGRg==");
    if (val === '') {
        val = b64DecodeUnicode("IzkzRDNGRg==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;

    val = b64DecodeUnicode("IzRENDk0OQ==");
    if (val === '') {
        val = b64DecodeUnicode("IzRENDk0OQ==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsTierIconColorComplete = val;

    val = b64DecodeUnicode("IzRENDk0OQ==");
    if (val === '') {
        val = b64DecodeUnicode("IzRENDk0OQ==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsTierIconColorIncomplete = val;

    val = b64DecodeUnicode("Y2FydFRvdGFs");
    if (val === '') {
        val = b64DecodeUnicode("Y2FydFRvdGFs");
    }
    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;

    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
    if (val === '') {
        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
    }
    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;

    val = b64DecodeUnicode("MTI1");
    if (val === '') {
        val = b64DecodeUnicode("MTI1");
    }
    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;

    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
    if (val === '') {
        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
    }
    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;

    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
    if (val === '') {
        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
    }
    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;

    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
    if (val === '') {
        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;

    val = b64DecodeUnicode("NQ==");
    if (val === '') {
        val = b64DecodeUnicode("NQ==");
    }
    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;

    val = b64DecodeUnicode("eyJ0aWVycyI6W3sidGFyZ2V0VHlwZSI6InByb2R1Y3RzT3JPcmRlciIsIm1pbkFtb3VudCI6IjEyNSIsIml0ZW1Db3VudCI6IjUiLCJ0ZXh0QmVmb3JlUmVhY2hpbmdGb3JDYXJ0VG90YWwiOiI8cD5Zb3XigJlyZSA8Yj57QU1PVU5UfTwvYj4gYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPiIsInRleHRCZWZvcmVSZWFjaGluZ0Zvckl0ZW1Db3VudCI6IjxwPllvdeKAmXJlIDxiPntDT1VOVH08L2I+IHByb2R1Y3RzIGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4iLCJyZXdhcmREZXNjcmlwdGlvbiI6IkZyZWUgU2hpcHBpbmciLCJwcm9kdWN0cyI6W119XSwiZ2VvTG9jYXRpb25QcmljaW5nIjpbXSwicmV3YXJkc0F1dG9Db252ZXJ0Q3VycmVuY3kiOmZhbHNlLCJyZXdhcmRzR2VvTG9jYXRpb25FbmFibGVkIjpmYWxzZSwidXNlUHJlRGlzY291bnRlZFRvdGFsIjpmYWxzZX0=");
    if (val === '') {
        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;

    val = b64DecodeUnicode("W10=");
    if (val === '') {
        val = b64DecodeUnicode("W10=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;

    val = b64DecodeUnicode("W10=");
    if (val === '') {
        val = b64DecodeUnicode("W10=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsFiltering = val;

    val = b64DecodeUnicode("W10=");
    if (val === '') {
        val = b64DecodeUnicode("W10=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsTriggeredRules = val;

    val = b64DecodeUnicode("eyJwcm9kdWN0RGlzY291bnRzIjpmYWxzZSwib3JkZXJEaXNjb3VudHMiOmZhbHNlLCJzaGlwcGluZ0Rpc2NvdW50cyI6ZmFsc2V9");
    if (val === '') {
        val = b64DecodeUnicode("eyJwcm9kdWN0RGlzY291bnRzIjpmYWxzZSwib3JkZXJEaXNjb3VudHMiOmZhbHNlLCJzaGlwcGluZ0Rpc2NvdW50cyI6ZmFsc2V9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.rewardsTriggeredCombinations = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;

    val = b64DecodeUnicode("PHA+QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC48L3A+Cg==");
    if (val === '') {
        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;

    val = b64DecodeUnicode("U2hvcCBOb3c=");
    if (val === '') {
        val = b64DecodeUnicode("U2hvcCBOb3c=");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;

    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
    if (val === '') {
        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;

    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
    if (val === '') {
        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.recommendationItems = val;

    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
    if (val === '') {
        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;

    val = b64DecodeUnicode("Mw==");
    if (val === '') {
        val = b64DecodeUnicode("Mw==");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;

    val = b64DecodeUnicode("dmVydGljYWw=");
    if (val === '') {
        val = b64DecodeUnicode("dmVydGljYWw=");
    }
    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellsModule = val;

    val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
    if (val === '') {
        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
    }
    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;

    val = b64DecodeUnicode("PHA+PC9wPgo=");
    if (val === '') {
        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
    }
    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;

    val = b64DecodeUnicode("MTA=");
    if (val === '') {
        val = b64DecodeUnicode("MTA=");
    }
    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;

    val = b64DecodeUnicode("W3siaWQiOiIyMDAzNCIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE1MzQ4NTUyOTkxMTA2Iiwic2hvcnRJZCI6IjE1MzQ4NTUyOTkxMTA2IiwidmFyaWFudHMiOlsiNTY3MDA1NTI1Nzc0MTAiXSwiaGFuZGxlIjoiZ3VtbWliYW5kZXIiLCJ0aXRsZSI6Ikd1bW1pYsOkbmRlciIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzA5NTIvNzY5OS8wODUwL2ZpbGVzLzE3NzQ4NjI4NjYyMjAtM3U0dDZlb3p5dzIucG5nP3Y9MTc4MTAyNzA3NiJ9XX19LHsiaWQiOiIyNTU5MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJzcGVjaWZpYyIsInNlbGVjdGlvbiI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xNTMwNDQ1MzU1NDU2MiIsInNob3J0SWQiOiIxNTMwNDQ1MzU1NDU2MiIsInZhcmlhbnRzIjpbIjU2NTE5Mzc4MTc0MzM4IiwiNTY1MTkzNzgyMDcxMDYiLCI1NjUxOTM3ODIzOTg3NCIsIjU2NTE5Mzc4MjcyNjQyIiwiNTY1MTkzNzgzMDU0MTAiXSwiaGFuZGxlIjoidHJhdW1rb3JvcGVyLXBha2V0IiwidGl0bGUiOiJUcmF1bWvDtnJwZXIgUGFrZXQifSx7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE1MzA0MzA3MzQzNzQ2Iiwic2hvcnRJZCI6IjE1MzA0MzA3MzQzNzQ2IiwidmFyaWFudHMiOlsiNTY1MTkzNzczMjIzNzAiLCI1NjUxOTM3NzM1NTEzOCIsIjU2NTE5Mzc3Mzg3OTA2IiwiNTY1MTkzNzc0MjA2NzQiLCI1NjUxOTM3NzQ1MzQ0MiJdLCJoYW5kbGUiOiJzZWxpcmEtc2Nod2l0emd1cnRlbCIsInRpdGxlIjoiU2VsaXJhIC0gU2Nod2l0emfDvHJ0ZWwiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8wOTUyLzc2OTkvMDg1MC9maWxlcy8xNzc0ODc3NTAyNDcyLXQxN3dzazlxZmNtLnBuZz92PTE3NzQ4Nzc1NzQifV19fSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE1Mjk0MDg2NDQ3NDkwIiwic2hvcnRJZCI6IjE1Mjk0MDg2NDQ3NDkwIiwidmFyaWFudHMiOlsiNTY0NjkwMTQ1Nzc1MzgiXSwiaGFuZGxlIjoiMS1rYXR6ZW4tc3BpZWx6ZXVnIiwidGl0bGUiOiJBdWZiZXdhaHJ1bmdzYm94In0seyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC8xNTMwNDMxMDY4NjA4MiIsInNob3J0SWQiOiIxNTMwNDMxMDY4NjA4MiIsInZhcmlhbnRzIjpbIjU2NTE4OTAyNTc5NTg2Il0sImhhbmRsZSI6ImZpdG5lc3NiYW5kIiwidGl0bGUiOiJGaXRuZXNzYmFuZCJ9XX19XQ==");
    if (val === '') {
        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellsItems = val;

    val = b64DecodeUnicode("Ym90dG9t");
    if (val === '') {
        val = b64DecodeUnicode("Ym90dG9t");
    }
    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;

    val = b64DecodeUnicode("cmVsYXRlZA==");
    if (val === '') {
        val = b64DecodeUnicode("cmVsYXRlZA==");
    }
    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;

    val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
    if (val === '') {
        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
    }
    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;

    val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
    if (val === '') {
        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
    }
    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("");
    }
    window.upcartSettings.upcartEditorSettings.upsellStrategyId = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.upsellStrategyEnabled = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.addonsModule = val;

    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoicHJpb3JpdGF0c2JlYXJiZWl0dW5nIiwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
    if (val === '') {
        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.addonsField = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("dHJ1ZQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.enableAddonAttributeKey = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.notesModule = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
    }
    window.upcartSettings.upcartEditorSettings.notesTitle = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
    }
    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
    }
    window.upcartSettings.upcartEditorSettings.notesPlacement = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;

    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL3N0b3JhZ2UuZ29vZ2xlYXBpcy5jb20vdXBjYXJ0LXB1YmxpYy9wYXltZW50LWljb25zLndlYnAiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
    if (val === '') {
        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.trustBadges = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;

    val = b64DecodeUnicode("UmFiYXR0Y29kZQ==");
    if (val === '') {
        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
    }
    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;

    val = b64DecodeUnicode("UmFiYXR0IGFud2VuZGVu");
    if (val === '') {
        val = b64DecodeUnicode("QXBwbHk=");
    }
    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
    }
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
    }
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
    }
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("RnVsbCBwcmljZQ==");
    }
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesFullPriceText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("U3Vic2NyaXB0aW9uIHBsYW5z");
    }
    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesSubscriptionPlansText = val;

    val = b64DecodeUnicode("");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.expressPayModule = val;

    val = b64DecodeUnicode("W10=");
    if (val === '') {
        val = b64DecodeUnicode("W10=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;

    val = b64DecodeUnicode("MQ==");
    if (val === '') {
        val = b64DecodeUnicode("MQ==");
    }
    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;

    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
    if (val === '') {
        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;

    val = b64DecodeUnicode("dHJ1ZQ==");
    if (val === '') {
        val = b64DecodeUnicode("dHJ1ZQ==");
    }
    val = JSON.parse(val);
    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;

    val = b64DecodeUnicode("ZmFsc2U=");
    if (val === '') {
        val = b64DecodeUnicode("ZmFsc2U=");
    }
    val = JSON.parse(val);
    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;

    val = b64DecodeUnicode("IzAwMDAwMA==");
    if (val === '') {
        val = b64DecodeUnicode("IzAwMDAwMA==");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;

    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
    if (val === '') {
        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;

    val = b64DecodeUnicode("I2ZmZmZmZg==");
    if (val === '') {
        val = b64DecodeUnicode("I2ZmZmZmZg==");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;

    val = b64DecodeUnicode("c3F1YXJlQmFn");
    if (val === '') {
        val = b64DecodeUnicode("c3F1YXJlQmFn");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;

    val = b64DecodeUnicode("I2U0MjYyNg==");
    if (val === '') {
        val = b64DecodeUnicode("I2U0MjYyNg==");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;

    val = b64DecodeUnicode("I2ZmZmZmZg==");
    if (val === '') {
        val = b64DecodeUnicode("I2ZmZmZmZg==");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;

    val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
    if (val === '') {
        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
    }
    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;


})();
</script>






<script>
  window.upcartPreloadedCart = {"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};
  window.upcartMoneyFormat = "€{{amount_with_comma_separator}}";
  window.upcartStorefrontPublicAccessToken = '898e193b342556f1da07d839ca6874e2' || undefined;
  window.upcartClientLocalizationCountry = {
    isoCode: 'DE',
    currency: 'CurrencyDrop',
    name: 'Deutschland'
  };
  window.upcartMyShopifyDomain = 'wejvjq-hg.myshopify.com';
</script>


<script>
    window.upcart = window.upcart || {};
    window.upcart.customer = { isLoggedIn: false };
  </script><script>
  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
    

    return line;
  });
</script>

<div id="upCart"></div>
<div id="upCartStickyButton"></div>

<style id="upCart-customCSS">
  
    *{}
  
</style>


</div><script src="https://cdn.shopify.com/storefront/standard-actions.js" type="module" data-source-attribution="shopify.standard_actions"></script>
</body>
</html>