/** Shopify CDN: Minification failed

Line 1631:18 Unexpected "{"
Line 1631:25 Expected ":"
Line 1638:18 Unexpected "{"
Line 1638:25 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
.announcement-bar {
    width: 100%;
  }
  .announcement-bar .container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
  }

  .announcement-bar .animated-content {
    display: inline-flex;
    animation: marquee 180s linear infinite;
    align-items: center;
    gap: 2rem;
  }
  .announcement-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .announcement-bar__inner.animated-content {
    height: 35px;
  }

  p.announcement-bar__content {
    padding: 0;
    white-space: nowrap;
    color: rgba(var(--color-text), 1);
  }

  .animated-content .announcement-bar__content {
    margin: 0;
  }

  @keyframes marquee {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:back-to-top-button (INDEX:6) */
.back-to-top-button {
    z-index: 2;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: black;
    border-top: 1px solid rgba(var(--color-text), 0.2);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
  }
  .back-to-top-button:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .back-to-top-button.hidden {
    opacity: 0;
    bottom: -100px;
  }
/* END_SECTION:back-to-top-button */

/* START_SECTION:blackweek_banner_lbrgt (INDEX:7) */
/* BASE */
.hero-section {
  min-height: 200px;
  max-height: var(--max-height);
  position: relative;
  overflow: hidden;
}

/* 🔥 BADGE */
.hero-section .hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;

  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: #fff;
  text-transform: uppercase;

  background: linear-gradient(135deg,#ff2d8d,#e11d74);
  border-radius: 6px;
}

/* VIDEO FIX */
.hero-section .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-section .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMAGE */
.hero-section .hero_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .mobile_image {
  display: none;
}

/* LAYOUT */
.hero-section .section-layout {
  position: relative;
  height: 100%;
}

.hero-section .layout-inner {
  display: flex;
  flex-direction: column;
}

/* DESKTOP */
@media (min-width: 800px) {
  .hero-section {
    height: var(--hero-desktop-height);
  }

  .hero-section .layout-inner {
    width: 50%;
    justify-content: center;
    align-items: flex-start;
  }
}

/* MOBILE */
@media (max-width: 799px) {
  .hero-section {
    height: var(--hero-mobile-height);
  }

  .hero-section .layout-inner {
    align-items: center;
  }

  .hero-section .mobile_image {
    display: block;
  }
}

/* DEVICE SWITCH */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 799px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
/* END_SECTION:blackweek_banner_lbrgt */

/* START_SECTION:blackweek_promotion (INDEX:9) */
.hero-section {
    min-height: 200px;
    max-height: var(--max-height);
  }

  .hero-section .section-layout {
    position: relative;
    height: 100%;
  }

  .hero-section .layout-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-section .hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-section .mobile_image {
    display: none;
    width: 100%;
    object-fit: cover;
  }

  /* Desktop styles */
  @media (min-width: 800px) {
    .hero-section {
      height: var(--hero-desktop-height);
    }

    .hero-section .layout-inner {
      width: 50%;
    }

    .hero-section .mobile_image {
      display: none;
    }
    .hero-section .desktop_image {
      display: block;
    }

    .hero-section .layout-inner {
      /* justify-content: center; */
      justify-content: center;
      align-items: flex-start;
    }
    .hero-section .mobile-button {
      display: none;
    }

    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 400px;
      margin-bottom: var(--s-3);
      border-radius: 8px;
    }
  }

  /* Mobile styles */
  @media (max-width: 799px) {
    .hero-section {
      height: var(--hero-mobile-height);
    }

    .hero-section .section-layout {
      display: flex;
      flex-direction: column;
    }

    .hero-section .layout-inner {
      flex-grow: 1;
      justify-content: var(--justify-mobile);
      margin-top: var(--margin-top-mobile);
      align-items: center;
    }

    .hero-section .mobile_image {
      display: block;
      object-position: top center;
    }
    .hero-section .desktop_image {
      display: none;
    }

    .hero-section .mobile-button,
    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 80%;
      margin: auto auto var(--s-3);
      border-radius: 8px;
    }
  }

  /* typography */

  @media (min-width: 800px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: flex-start;
      text-align: left;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      font-size: 18px;
      line-height: 22px;
      border-radius: var(--r-full);
    }

    .hero-section .loox-stars .loox-rating-text,
    .hero-section .text,
    .hero-section .follower-text {
      font-size: 18px;
      line-height: 22px;
    }
    .hero-section .loox-stars .loox-icon {
      width: 22px;
      height: 22px;
    }
  }
  @media (max-width: 799px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: center;
      text-align: center;
    }
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      font-size: 14px;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      margin: auto;
      border-radius: var(--r-full);
      font-size: 18px;
      line-height: 24px;
    }
  }
/* END_SECTION:blackweek_promotion */

/* START_SECTION:bullet-point-section (INDEX:11) */
.bulletpoint-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bulletpoint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4) var(--s-3);
  }

  .bulletpoint-vorteil-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--s-3);
    flex-wrap: nowrap;
  }

  .bulletpoint-vorteil-container > span {
    color: var(--color-text);
    opacity: 0.4;
  }
  .bulletpoint-vorteil {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* white-space: nowrap; */
    gap: var(--s-2);
  }
  .bulletpoint-vorteil .icon {
    width: 1.2em;
    height: 1.2em;
    color: var(--icon-color, var(--color-text));
  }

  @media (min-width: 800px) {
    .bulletpoint-grid {
      width: 60%;
    }
  }
/* END_SECTION:bullet-point-section */

/* START_SECTION:collection (INDEX:14) */
.main_collection{padding:60px 0;}
  .collection_title{margin-bottom:40px;}
  .collection_title h1{line-height:normal;}
  .collection-products{display:grid;gap:40px;}
  .collection-products-grid {display: grid;grid-template-columns:repeat(4, 1fr);gap:16px;}
  .collection-products .product_card_image {padding-top:100%;}
  .collection-products .product_card_image img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}
  .collection-products .product_card_lbrgt .product-label.product-label--on-sale{z-index: 1;}
  .collection-products .product_card_info {padding: 15px 20px 0;}

  .collection_pagination{display: flex;justify-content: center;gap: 10px;}

  .collection_load_more_wrapper {display: flex;justify-content: center;margin-top: 40px;}
  .collection_load_more {width: 48px;height: 48px;border: none;background: transparent;display: flex;align-items: center;justify-content: center;}
  .collection_load_more .loader {width: 28px;height: 28px;border: 3px solid rgba(0,0,0,0.2);border-top-color: #000;border-radius: 50%;animation: spin 0.8s linear infinite;}
  .collection_load_more[aria-busy="false"] .loader {display: none;}

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

  @media(max-width:999px){
  .collection-products-grid {grid-template-columns:repeat(3, 1fr);gap: 16px 8px;  }
  .collection-products .product_card_info {padding: 15px 10px 0;}
  .collection-products .product_card_info .price-container { flex-wrap: wrap;}
  .collection-products .product_card_info .prod_title { font-size: 16px;}
  }

  @media(max-width:799px){
  .collection-products-grid {grid-template-columns:repeat(2, 1fr);gap: 16px 8px;  }
  .collection-products .product_card_info {padding: 15px 10px 0;}
  .collection-products .product_card_info .price-container { flex-wrap: wrap;}
  .collection-products .product_card_info .prod_title { font-size: 16px;}
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:15) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:18) */
.custom-section {
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  width: 100%;
}
.custom-section__content {
  display: grid;
  grid-template-columns: var(--content-grid);
}
.custom-section__content > * {
  grid-column: 2;
}
/* END_SECTION:custom-section */

/* START_SECTION:custom-slider-section (INDEX:19) */
.generic-slider {
    /* Für Safari/iOS */
    -webkit-overflow-scrolling: touch;
  }
  /* Scrollbar für Webkit (Chrome, Safari, iOS) ausblenden */
  .generic-slider::-webkit-scrollbar {
    display: none;
  }
  /* Scrollbar für Firefox ausblenden */
  .generic-slider {
    scrollbar-width: none;
  }


  .slider-block > *,
  .slider-block .shopify-block:has(.group),
  .slider-block .group {
    height: 100%;
    padding-bottom: var(--s-1);
  }

  @media (max-width: 799px) {
    .generic-slider--video {
      padding: 0 var(--page-margin);
    }
  }

  .slider-block .group .group > * {
    flex-grow: 0;
  }
/* END_SECTION:custom-slider-section */

/* START_SECTION:featured_collection_lbrgt (INDEX:20) */
/* 🔥 FULL WIDTH (OHNE GLIDE BREAK) */
.section.generic-slider {
  position: relative;
  background: #ffffff;
}

.section.generic-slider::before {
  content: "";
  position: absolute;
  left: -50vw;
  right: -50vw;
  top: 0;
  bottom: 0;
  background: #ffffff;
  z-index: -1;
}

/* CONTENT */
.featured_collection_lbrgt {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CONTROLS */
.glide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

/* DOTS */
.glide__arrows [data-glide-el="controls[nav]"] {
  display: flex;
  gap: 8px;
}

.glide__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc !important;
  border: none;
}

.glide__bullet--active {
  background: #e6007e !important;
}

/* ARROWS */
.glide__arrow {
  background: #e6007e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 PFEILE WEISS + STRICH */
.glide__arrow svg path {
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
}
/* END_SECTION:featured_collection_lbrgt */

/* START_SECTION:footer (INDEX:21) */
footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    color: rgb(var(--color-text));
  }
  footer a {
    text-decoration: none;
    color: rgb(var(--color-text));
  }
  footer .footer__links,
  footer .footer__payment {
    display: flex;
    gap: 1rem;
  }
  footer .footer-content {
    max-width: 400px;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:22) */
header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
  }
  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }
  header .header__menu,
  header .header__icons {
    display: flex;
    gap: 1rem;
    width: 80px;
  }
  header .header__menu {
    justify-content: flex-start;
  }
  header .header__menu button {
    /* remove default button styles */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  header .header__menu button.closed > .icon-x {
    display: none;
  }
  header .header__menu button.active > .icon-menu {
    display: none;
  }
  header .header__icons {
    justify-content: flex-end;
  }

  header .icon,
  header .header__icon {
    color: black;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  header .header__logo {
    height: 2rem;
    width: auto;
    display: block;
  }
/* END_SECTION:header */

/* START_SECTION:hero-image-v2 (INDEX:23) */
.hero-section {
    min-height: 200px;
    max-height: var(--max-height);
  }

  .hero-section .section-layout {
    position: relative;
    height: 100%;
  }

  .hero-section .layout-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-section .hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-section .mobile_image {
    display: none;
    width: 100%;
    object-fit: cover;
  }

  /* Desktop styles */
  @media (min-width: 800px) {
    .hero-section {
      height: var(--hero-desktop-height);
    }

    .hero-section .layout-inner {
      width: 50%;
    }

    .hero-section .mobile_image {
      display: none;
    }
    .hero-section .desktop_image {
      display: block;
    }

    .hero-section .layout-inner {
      /* justify-content: center; */
      justify-content: center;
      align-items: flex-start;
    }
    .hero-section .mobile-button {
      display: none;
    }

    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 400px;
      margin-bottom: var(--s-3);
      border-radius: 8px;
    }
  }

  /* Mobile styles */
  @media (max-width: 799px) {
    .hero-section {
      height: var(--hero-mobile-height);
    }

    .hero-section .section-layout {
      display: flex;
      flex-direction: column;
    }

    .hero-section .layout-inner {
      flex-grow: 1;
      justify-content: var(--justify-mobile);
      margin-top: var(--margin-top-mobile);
      align-items: center;
    }

    .hero-section .mobile_image {
      display: block;
      object-position: top center;
    }
    .hero-section .desktop_image {
      display: none;
    }

    .hero-section .mobile-button,
    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 80%;
      margin: auto auto var(--s-3);
      border-radius: 8px;
    }

  }

  /* typography */

  @media (min-width: 800px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: flex-start;
      text-align: left;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      font-size: 18px;
      line-height: 22px;
      border-radius: var(--r-full);
    }

    .hero-section .loox-stars .loox-rating-text,
    .hero-section .text,
    .hero-section .follower-text {
      font-size: 18px;
      line-height: 22px;
    }
    .hero-section .loox-stars .loox-icon {
      width: 22px;
      height: 22px;
    }

  }
  @media (max-width: 799px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: center;
      text-align: center;
    }
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      font-size: 14px;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      margin: auto;
      border-radius: var(--r-full);
      font-size: 18px;
      line-height: 24px;
    }
  }
/* END_SECTION:hero-image-v2 */

/* START_SECTION:image-slider (INDEX:24) */
.image-slider {
    position: relative;
  }
  .image-slider--heading {}
.image-slider:has(.image-slider--heading) {
  padding-top: var(--s-3);
}
/* END_SECTION:image-slider */

/* START_SECTION:make-a-wish (INDEX:28) */
.wish-section {
    position: relative;
    background-color: var(--background-color);
    overflow: hidden;
    width: 100%;
  }
  .wish-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .wish-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .wish-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .wish-section__content > * {
    grid-column: 2;
  }
  .wish-section__main-image-container{
    position: absolute;
    bottom: 0;
    left: 0;
  }
  @media (max-width: 799px) {
  .wish-section__main-image-container{
    width: 100%;
    height: 350px;
  }
    .wish-section__content-inner{
        margin-bottom: 320px;
    }

  }
  @media (min-width: 800px) {
    .wish-section__content-inner{
        width: 50%;
        margin-left: auto;
    }
  .wish-section__main-image-container{
    width: 50%;
    height: 100%;
  }
  }
/* END_SECTION:make-a-wish */

/* START_SECTION:masonry-grid (INDEX:29) */
.masonry-grid {
    column-count: 3;
    column-gap: 1rem;
  }
  @media screen and (max-width: 800px) {
    .masonry-grid {
      column-count: 2;
    }
  }

  .masonry-grid__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
    border-radius: 0.5rem;
  }

  .masonry-grid__item img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: clip;
  }

  .masonry-grid__item__info {
    padding: 0.5rem;
    font-weight: 600;
  }

  .masonry-grid__image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
  }

  .masonry-grid__modal-content {
    margin: auto;
    display: block;
    width: 80%;
    height: auto;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain
  }

  .masonry-grid__close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .masonry-grid__close-modal:hover,
  .masonry-grid__close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
/* END_SECTION:masonry-grid */

/* START_SECTION:pdp_specific_flashsale_banner (INDEX:33) */
.hero-section {
    min-height: 200px;
    max-height: var(--max-height);
  }

  .hero-section .section-layout {
    position: relative;
    height: 100%;
  }

  .hero-section .layout-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-section .hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-section .mobile_image {
    display: none;
    width: 100%;
    object-fit: cover;
  }

  /* Desktop styles */
  @media (min-width: 800px) {
    .hero-section {
      height: var(--hero-desktop-height);
    }

    .hero-section .layout-inner {
      width: 50%;
    }

    .hero-section .mobile_image {
      display: none;
    }
    .hero-section .desktop_image {
      display: block;
    }

    .hero-section .layout-inner {
      /* justify-content: center; */
      justify-content: center;
      align-items: flex-start;
    }
    .hero-section .mobile-button {
      display: none;
    }

    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 400px;
      margin-bottom: var(--s-3);
      border-radius: 8px;
    }
  }

  /* Mobile styles */
  @media (max-width: 799px) {
    .hero-section {
      height: var(--hero-mobile-height);
    }

    .hero-section .section-layout {
      display: flex;
      flex-direction: column;
    }

    .hero-section .layout-inner {
      flex-grow: 1;
      justify-content: var(--justify-mobile);
      margin-top: var(--margin-top-mobile);
      align-items: center;
    }

    .hero-section .mobile_image {
      display: block;
      object-position: top center;
    }
    .hero-section .desktop_image {
      display: none;
    }

    .hero-section .mobile-button,
    .hero-section .button.secondary {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 18px;
      width: 80%;
      margin: auto auto var(--s-3);
      border-radius: 8px;
    }

  }

  /* typography */

  @media (min-width: 800px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: flex-start;
      text-align: left;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      font-size: 18px;
      line-height: 22px;
      border-radius: var(--r-full);
    }

    .hero-section .loox-stars .loox-rating-text,
    .hero-section .text,
    .hero-section .follower-text {
      font-size: 18px;
      line-height: 22px;
    }
    .hero-section .loox-stars .loox-icon {
      width: 22px;
      height: 22px;
    }

  }
  @media (max-width: 799px) {
    .hero-section .heading.title,
    .hero-section .heading.subtitle,
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      justify-content: center;
      text-align: center;
    }
    .hero-section .follower-text,
    .hero-section .loox-stars .loox-rating-text {
      font-size: 14px;
    }
    .hero-section .button:not(.mobile-button, .secondary) {
      margin: auto;
      border-radius: var(--r-full);
      font-size: 18px;
      line-height: 24px;
    }
  }
/* END_SECTION:pdp_specific_flashsale_banner */

/* START_SECTION:product (INDEX:35) */
/* -----------------------------------
    Layout & Struktur
  ------------------------------------ */
  .shopify-section:has(.product-section) {
    padding-bottom: var(--s-section);
  }

  .product-section {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
  }

  .product-section > * {
    position: sticky;
    top: var(--s-8);
    height: fit-content;
  }

  .product-section > .product-section__content {
    width: 50%;
    max-width: 450px;
  }

  .product-section__content {
    margin: auto;
  }

  /* -----------------------------------
    Zahlungsarten & Buttons
  ------------------------------------ */
  a.shopify-payment-button__more-options {
    display: none;
  }

  /* -----------------------------------
    Media Queries
  ------------------------------------ */
  @media (max-width: 799px) {
    .product-section {
      flex-direction: column;
      grid-column: 1 / -1;
    }

    .product-section > * {
      position: relative;
    }

    .product-section > .product-section__content {
      max-width: none;
      width: auto;
    }

    .product-section > .product-section__content > *:not(.product-info),
    .product-section > .product-section__content > .product-info > *:not(.full-w) {
      margin-left: var(--page-margin);
      margin-right: var(--page-margin);
    }

    .product-section__gallery {
      width: auto;
      min-width: 50%;
      flex-grow: 1;
    }

    .product-section > * {
      position: sticky;
      top: 0;
      height: fit-content;
    }
  }

  @media (min-width: 800px) {
    .product-section {
      gap: var(--s-7);
    }

    .product-section__gallery {
      width: 45%;
      min-width: 45%;
      flex-grow: 1;
    }

    .product-section > .product-section__content {
      margin-top: var(--s-8);
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:36) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:sticky-atc (INDEX:37) */
.sticky-add-to-cart {
    z-index: 2;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
  }
  .sticky-add-to-cart--container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .sticky-add-to-cart--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sticky-add-to-cart.hidden {
    opacity: 0;
    bottom: -100px;
  }

  .sticky-add-to-cart .add-to-cart-button {
    min-width: 110px;
  }
/* END_SECTION:sticky-atc */

/* START_SECTION:theme-blocks (INDEX:38) */
.theme-blocks-section {
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  width: 100%;
}

.theme-blocks-content {
  display: grid;
  grid-template-columns: var(--content-grid);
}

.theme-blocks-content > * {
  grid-column: 2;
}
/* END_SECTION:theme-blocks */

/* CSS from block stylesheet tags */
/* START_BLOCK:_product-add-on-slider (INDEX:41) */
.product-add-on-slider .slider-main {overflow-x: auto;display: flex;gap: 5px;padding-bottom: 15px;}
    .product-add-on-slider .slider-main .product-add-on-inside {flex: 0 0 100%; width: 100%;}
    .product-add-on-slider .slider-main::-webkit-scrollbar {height: 7px;background: #E4E4E4;border-radius: 4px;}
    .product-add-on-slider .slider-main::-webkit-scrollbar-thumb {background: #065531;border-radius: 4px;}

    .inside-left {width: 120px;margin: 0;}
    .inside-right {width: calc(100% - 120px);margin: 0;}

    @media(max-width:799px) {
    .product-add-on-slider .slider-main {display: unset;}
    }
    @media(max-width:767px) {
    .product-add-on-slider {padding: 15px;}
    .product-add-on-slider .slider-main {display: flex;}
    .product-add-on-slider .slider-main .product-add-on-inside {padding: 15px;gap: 5px;  }
    .inside-left {width: 80px;}
    .inside-right {width: calc(100% - 80px);}   
    .atc-button {padding: 12px 5px;} 
    }

    .product-add-on-slider {border-radius: 8px;}
    .product-add-on-inside {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 10px;  
    }
    .add-on-image {
    width: 120px;
    object-fit: contain;
    }
    .product-add-on.border{
    border-radius: var(--r-md);
    border: 1px solid rgba(var(--color-text), 0.2);
    }
    .overlay{
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    min-height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(150%);

    --spring-easing: linear(0, 0.0034 0.81%, 0.0276 2.42%, 0.0956 4.84%, 0.5194 15.32%, 0.6334 18.55%, 0.7069, 0.7698 23.39%, 0.8382, 0.8906, 0.9295, 0.9575 36.29%, 0.9807, 0.9944 44.35%, 1.0028 49.19%, 1.0056 53.22%, 1.0063 58.06%, 1.0014 80.64%, 1.0001 100%);
    --spring-duration: 0.4980s;

    transition: all var(--spring-duration) var(--spring-easing);
    }
    .overlay--visible{
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    .overlay__container{
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    }
    .overlay__blocks{
    padding: var(--s-2)
    }
    .overlay__close-button{
    background-color: black;
    color: white;
    border-radius: var(--r-full);
    position: absolute;
    top: var(--s-2);
    right: var(--s-2);
    z-index: 99;
    padding: var(--s-1)
    }

    @media (max-width: 799px){
        .overlay__container{
        border-radius: var(--r-md);
        background: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, .15);
        border: 1px solid rgba(0, 0, 0, 0.1);
        }
    }
    @media (min-width: 800px){
        .overlay__container{
        flex-direction: row;
        gap: var(--s-3);
        align-items: center;
        padding: var(--s-4);
        background: transparent;
        }
        .overlay__gallery{
        width: 60%;
        height: fit-content;
        }
        .overlay__blocks{
        border-radius: var(--r-md);
        background: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, .15);
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: var(--s-4);
        }
        .overlay__close-button{background-color: white;color: black;}
    }
/* END_BLOCK:_product-add-on-slider */

/* START_BLOCK:_product-add-on (INDEX:42) */
.product-add-on {
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: row;
  }
  .add-on-image {
    width: 120px;
    object-fit: contain;
  }
  .product-add-on.border{
    border-radius: var(--r-md);
    border: 1px solid rgba(var(--color-text), 0.2);
  }

  .overlay{
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    min-height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(150%);

    --spring-easing: linear(0, 0.0034 0.81%, 0.0276 2.42%, 0.0956 4.84%, 0.5194 15.32%, 0.6334 18.55%, 0.7069, 0.7698 23.39%, 0.8382, 0.8906, 0.9295, 0.9575 36.29%, 0.9807, 0.9944 44.35%, 1.0028 49.19%, 1.0056 53.22%, 1.0063 58.06%, 1.0014 80.64%, 1.0001 100%);
    --spring-duration: 0.4980s;

    transition: all var(--spring-duration) var(--spring-easing);
  }
  .overlay--visible{
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }

  .overlay__container{
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  .overlay__blocks{
    padding: var(--s-2)
  }

  .overlay__close-button{
    background-color: black;
    color: white;
    border-radius: var(--r-full);
    position: absolute;
    top: var(--s-2);
    right: var(--s-2);
    z-index: 99;
    padding: var(--s-1)
  }

  @media (max-width: 799px){

    .overlay__container{
      border-radius: var(--r-md);
      background: white;
      box-shadow: 0 0 8px rgba(0, 0, 0, .15);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
  }
  @media (min-width: 800px){
    .overlay__container{
      flex-direction: row;
      gap: var(--s-3);
      align-items: center;
      padding: var(--s-4);
      background: transparent;
    }
    .overlay__gallery{
      width: 60%;
      height: fit-content;
    }
    .overlay__blocks{
      border-radius: var(--r-md);
      background: white;
      box-shadow: 0 0 8px rgba(0, 0, 0, .15);
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: var(--s-4);
    }

    .overlay__close-button{
      background-color: white;
      color: black;
    }
  }
/* END_BLOCK:_product-add-on */

/* START_BLOCK:_product-info (INDEX:43) */
.product-info{
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
  @media (min-width: 800px) {
    .product-info{
        border-radius: var(--r-md);
        border: 1px solid rgba(var(--color-text), 0.2);
    }
    .product-info > *:not(.full-w) {
        margin-left: var(--s-4);
        margin-right: var(--s-4);
    }
  }
  @media (max-width: 799px) {
    .product-info{
        border-bottom: 1px solid rgba(var(--color-text), 0.2);
    }
  }

  .product-info__banner{
    display: flex;
    flex-direction: row;
    gap: var(--s-1); 
    background-color: #efefef;
    padding: var(--s-3) var(--page-margin);
    align-items: center;
  }
  .product-info__banner .text-sm{
    line-height: 1.1;
  }
.product-info__testimonial-profiles {
    position: relative;
    min-width: 45px;
    width: 45px;
    height: 25px;
}
  .product-info__testimonial-profiles img {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1px solid #F3F5F6;
 }
 .product-info__testimonial-profiles img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 5;
}
 .product-info__testimonial-profiles img:nth-child(2) {
    top: 0;
    left: 17px;
    z-index: 6;
}
/* END_BLOCK:_product-info */

/* START_BLOCK:_product-selector (INDEX:44) */
.text-align {
    text-align: var(--text-align);
  }
/* END_BLOCK:_product-selector */

/* START_BLOCK:_product-stock-delivery (INDEX:45) */
:root  {
    --color-in-stock: 4
    , 129
    , 0;
    --color-low-stock: 163
    , 103
    , 0;
  }
  .stock--wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .stock--wrapper.in-stock {
    --color-text: var(--color-in-stock);
  }
  .stock--wrapper.low-stock {
    --color-text: var(--color-low-stock);
  }
  .stock-icon--wrapper {
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 10px;
  }


  .pulse {
    margin-right: 2px;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    background: 0 0 rgba(var(--color-text), 0.8);
    box-shadow: 0 0 rgba(var(--color-text), 0.8);
    transform: scale(1);
    animation: pulseAnimation 3s infinite;
  }
  @keyframes pulseAnimation {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(var(--color-text), 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 5px rgba(var(--color-text), 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(var(--color-text), 0);
    }
  }
/* END_BLOCK:_product-stock-delivery */

/* START_BLOCK:atc-button (INDEX:52) */
.atc-wrapper {
    width: 100%;
  }
  .payment-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--s-1);
    justify-content: space-between;
  }
  .payment-icons svg {
    flex-shrink: 1;
  }
/* END_BLOCK:atc-button */

/* START_BLOCK:button (INDEX:53) */
.button_wrapper {
    display: flex;
    justify-content: var(--alignment, flex-start);
  }

  /* === EINFARBIGES PINK === */
  #shopify-block-{{ block.id }} .button {
    background: #E11894 !important;
    color: #ffffff !important;
    border: none !important;
  }

  /* Hover leicht dunkler */
  #shopify-block-{{ block.id }} .button:hover {
    background: #c81482 !important;
    color: #ffffff !important;
  }
/* END_BLOCK:button */

/* START_BLOCK:card-with-image (INDEX:54) */
.card-with-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .card-wrapper {
    overflow: hidden;
    background: var(--background);
    border-radius: var(--r-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0,0,0,.15);
  }

  .card-with-image--text-wrapper{
    padding: var(--s-3) var(--s-3) var(--s-1) var(--s-3);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .card-with-image--text-wrapper > * {
    width: 100%;
  }

  .card-with-image--image{
    width: 100%;
  }
/* END_BLOCK:card-with-image */

/* START_BLOCK:dual-label (INDEX:56) */
.dual-label-block {
    display: flex;
    align-items: center;
  }

  .label-container {
    display: flex;
    border-radius: var(--r-sm);
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .label-container span {
    padding: var(--s-2) var(--s-3);
    background-color: var(--bg);
  }
/* END_BLOCK:dual-label */

/* START_BLOCK:embed (INDEX:57) */
.embed-block {
    position: relative;
    width: 100%;
  }
/* END_BLOCK:embed */

/* START_BLOCK:follower (INDEX:58) */
.follower {
    display: flex;
    align-items: center;
    gap: var(--s-1);
  }
  .follower .icons {
    color: var(--icon-color);
    display: flex;
    gap: var(--s-1);
    align-items: center;
    width: 1.4rem;
    height: 1.4rem;
  }
/* END_BLOCK:follower */

/* START_BLOCK:group (INDEX:59) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }
  .group > * {
    flex: 1 1 auto;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:  var(--padding) 0;
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: 0 var(--padding);
    justify-content: center;
  }

  @media (max-width: 799px) {
    .group.visible-on-desktop {
      display: none;
    }
  }
  @media (min-width: 800px) {
    .group.visible-on-mobile {
      display: none;
    }
  }

  .group--border,
  .group--card {
    overflow: hidden;
    background: var(--background);
    border-radius: var(--r-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .group--card {
    box-shadow: 0 0 8px rgba(0,0,0,.15);
  }
/* END_BLOCK:group */

/* START_BLOCK:icon-bulletpoint (INDEX:61) */
.icon-bullet-point-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: var(--s-2);
  }
  .bullet-point-icon {
    width: 40px;
    height: 40px;
  }
  @media (max-width: 799px) {
    .bullet-point-icon {
      width: 35px;
      height: 35px;
    }
  }
/* END_BLOCK:icon-bulletpoint */

/* START_BLOCK:image-card (INDEX:62) */
.image-card{
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    background-size: cover;
    background-position: center;
    padding: var(--s-4);
  }
  @media (min-width: 800px) {
    div.image-card {
      background-image: var(--bg-desktop);
      padding-top: var(--padding-desktop);
        padding-bottom: var(--padding-desktop);
        padding-left: 12%;
        padding-right: 12%;
        align-items: var(--align);
    }
    .image-card-content {
        max-width: min(600px, 40%);
    }
  }
  @media (max-width: 799px) {
    .image-card {
      background-image: var(--bg-mobile);
      padding-top: var(--padding-top-mobile);
    }
  }
/* END_BLOCK:image-card */

/* START_BLOCK:image (INDEX:63) */
.block-image {
    width: 100%;
    height: auto;
  }
/* END_BLOCK:image */

/* START_BLOCK:loox-stars (INDEX:64) */
.loox-stars {
    display: flex;
    align-items: center;
    gap: var(--s-2)
  }
  .loox-stars.stacked {
    flex-direction: column;
    align-items: flex-end;
  }
  .loox-rating-text {
    line-height: 1;
    padding-top: 1px;
  }
  .loox-rating-content,
  .loox-rating {
    display: flex;
    gap: var(--s-1);
    justify-content: center;
    align-items: center;
  }
/* END_BLOCK:loox-stars */

/* START_BLOCK:product-price (INDEX:65) */
.product-price--wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .product-price--label {
    width: 70px;
  }
/* END_BLOCK:product-price */

/* START_BLOCK:responsive-group (INDEX:67) */
.responsive-group--flex {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
  }
  
  .responsive-group--flex > * {
    flex: 1 1 auto;
    width: 100%;
  }

 

  .responsive-group--grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
}

@media (max-width: 800px) {
  .responsive-group--grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
.responsive-group--grid > *,
.responsive-group--grid > .shopify-block > *{
  min-width: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
}
/* END_BLOCK:responsive-group */

/* START_BLOCK:text (INDEX:68) */
.text-align {
    text-align: var(--text-align);
  }
/* END_BLOCK:text */

/* START_BLOCK:timer (INDEX:69) */
.button_wrapper {
    display: flex;
    justify-content: var(--alignment, flex-start);
  }
/* END_BLOCK:timer */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:atc-button (INDEX:71) */
.atc-button {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .atc-button.xl-button {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  /* important */

  .atc-button {
    display: flex;
    justify-content: center;
    width: 100%;
    transition: background-color 0.2s ease-out;
    --success-color: #009eff;
    --error-color: #ff0000;
  }

  .atc-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .atc-button--label,
  .atc-button--icons {
    max-width: 600px;
    transition: max-width 0.2s ease-out;
    overflow: hidden;
    white-space: nowrap;
  }

  .atc-button.error *:is(.atc-button--label, .atc-button--icons),
  .atc-button.success *:is(.atc-button--label, .atc-button--icons),
  .atc-button.loading *:is(.atc-button--label, .atc-button--icons) {
    max-width: 0;
  }

  .atc-button--icons {
    display: flex;
    gap: var(--s-1)
  }
  .atc-button--icons .icon {
    width: 14px;
  }
  /* General Styles */
  .spinner-animation {
    position: relative;
    width: 14px;
    height: 14px;
    transform: scale(1.2);
    transition: transform 0.2s ease-out;
  }
  .spinner-animation > svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* Spinner */
  .spinner {
    display: none;
    width: 14px;
    height: 14px;
  }

  .spinner circle {
    stroke-dasharray: 125;
    stroke-dashoffset: 0;
    transform-origin: center;
    transition: stroke-dashoffset 0.5s ease-out;
  }

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

  @keyframes dash {
    0% {
      stroke-dashoffset: 0;
      transform: rotate(0deg);
    }
    50% {
      stroke-dashoffset: 125;
      transform: rotate(360deg);
    }
    100% {
      stroke-dashoffset: 0;
      transform: rotate(720deg);
    }
  }

  /* Checkmark */
  .checkmark {
    display: none;
    width: 14px;
    height: 14px;
  }

  @keyframes draw {
    0% {
      stroke-dasharray: 0 50;
    }
    100% {
      stroke-dasharray: 50 0;
    }
  }

  /* Button States */
  .atc-button.loading .spinner {
    display: block;
    animation: rotate 2s linear infinite;
  }

  .atc-button.success .spinner {
    display: block;
  }

  .atc-button.loading .spinner circle {
    animation: dash 5s ease-in-out infinite;
  }

  .atc-button.success .checkmark {
    display: block;
    animation: draw 0.5s ease-out forwards;
  }

  .atc-button.loading .spinner-animation {
    transform: scale(1.1);
  }

  .atc-button.success .spinner-animation {
    transform: scale(1.4);
  }
  .atc-button.atc-button.success {
    background-color: var(--success-color);
  }
  .atc-button.atc-button.error {
    background-color: var(--error-color);
  }
/* END_SNIPPET:atc-button */

/* START_SNIPPET:b2c-cart-bubble (INDEX:72) */
.header__icon--cart {
    position: relative;
  }
  .cart-count-bubble {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    top: -0.5rem;
    right: -0.5rem;
    background-color: var(--color-accent);
    color: var(--color-background);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:b2c-cart-bubble */

/* START_SNIPPET:b2c-cart-drawer (INDEX:73) */
#cart-drawer {
    background-color: white;
    height: 99%;
    width: 95%;
    max-width: 420px;
    transform: translateX(calc(100% + 10px));
    transition: transform 0.5s ease;

    padding-top: var(--s-5);
    padding-bottom: var(--s-5);
  }

  #cart-drawer .cart-drawer__header,
  #cart-drawer .cart-drawer__content {
    padding-left: var(--s-5);
    padding-right: var(--s-5);
  }
  #cart-drawer.open {
    transform: translateX(0%);
  }

  #cart-drawer:not(.open) {
    width: 0;
  }
  .cart-drawer__header {
    letter-spacing: 1px;
  }


  .cart-drawer__item > img {
    width: 35%;
    height: auto;
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    padding-top: var(--s-2);
    padding-bottom: var(--s-2);
  }

  .cart-drawer__items {
    max-height: calc(100dvh - 320px);
    height: 2000px;
    overflow: auto;
  }

  .cart-drawer__footer {
    height: 150px;
    justify-content: flex-end;
  }

  .cart-drawer__item {
    border-bottom: 1px solid #e0e0e0;
    padding-top: var(--s-4);
    padding-bottom: var(--s-4);
  }

  button[name='remove'] {
    background-color: transparent;
    border: none;
    padding: 0;
    text-decoration: underline;
  }

  button[name='update'] {
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    color: black;
    font-size: 1.5rem;
    width: 30px;
  }

  input[name='quantity'] {
    width: 30px;
    text-align: center;
    border: none;
  }
  input[name='quantity']::-webkit-outer-spin-button,
  input[name='quantity']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  input[type=number][name='quantity'] {
    -moz-appearance: textfield;
  }

  .cart-drawer__quantity-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #acacac;
    border-radius: 5px;
  }

  #checkout-button {
    transition: all 0.3s ease;
    filter: blur(0px);
  }
  #checkout-button:disabled {
    filter: blur(3px);
  }

  .price-recap-line {
    height: 20px;
    font-weight: bold;
  }

  .shipping-price,
  #cart-error {
    font-weight: bold;
    color: var(--color-accent-secondary);
  }

  #cart-error:empty {
    display: none;
  }

  #shipping-cost,
  #total-savings,
  #subtotal {
    display: none;
  }

  #cart-error:empty ~ #total-savings,
  #cart-error:empty ~ #shipping-cost,
  #cart-error:empty ~ #subtotal {
    display: flex;
  }

  #total-savings > *:first-child:nth-last-child(1) {
    display: none;
  }

  .cart-drawer__status-message {
    --border: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--s-2) var(--s-4);
    text-align: center;
    border-bottom: var(--border);
  }

  .cart-drawer__status-message.message--happy-customer {
    background-color: #efefef;
    border-top: var(--border);
  }

  .cart-drawer__status-message.message--good-choice {
    color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--s-2);
    background: linear-gradient(136deg, rgba(6, 85, 49, 0.1), rgba(17, 128, 77, 0.1) 100%);
  }
  .cart-drawer__status-message .icon {
    height: 14px;
    width: 14px;
  }


  .emoji {
    color: rgba(var(--color-text), 1);
    letter-spacing: 1px;
  }

  #cart-drawer svg.loox-icon {
    width: 0.8em;
    height: 0.8em;
  }
/* END_SNIPPET:b2c-cart-drawer */

/* START_SNIPPET:badges (INDEX:74) */
.product-gallery--badge {
    position: absolute;
    z-index: 10;
  }
  .product-gallery--badge.top-right {
    top: var(--s-2);
    right: var(--s-2);
  }
  .product-gallery--badge.top-left {
    top: var(--s-2);
    left: var(--s-2);
  }

  .custom_badge {
    max-width: 100px;
    transform: scale(1) rotate(0);
    animation: badge_pulse 4s infinite;
  }
  @keyframes badge_pulse {

    80% {
      transform: scale(0.8) rotate(-5deg);
    }
  }
/* END_SNIPPET:badges */

/* START_SNIPPET:heading (INDEX:85) */
.heading {
        text-align: var(--text-align);
      }
      .justify-flex-start {
        display: flex;
        justify-content: flex-start;
      }
      .justify-center {
        display: flex;
        justify-content: center;
      }
      .justify-flex-end {
        display: flex;
        justify-content: flex-end;
      }
/* END_SNIPPET:heading */

/* START_SNIPPET:image (INDEX:87) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:inventory-qtty-overlay--countdown (INDEX:88) */
.product-quantity-countdown {
    --pqc-color: green;
    --base-color: green;
    position: absolute;
    top: 12px;
    right: 8px;
   
  }
  .pqc-yellow {
    --pqc-color: #ffc439;
  }
  .pqc-red {
    --pqc-color: #c02029;
  }
  .product-quantity-countdown__bar-wrapper {
    position: relative;
    display: block;
    width: 100px;
    background-color: #f3f5f6;
    border-radius: 8px;
    outline: 2px solid var(--base-color);
    outline-offset: 2px;
    min-height: 12px;
    overflow: hidden;
  }
  .product-quantity-countdown__bar {
    min-height: 12px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--pqc-color);
    border-radius: 8px;
    transition: background-color 0.2s
    , width 0.3s;
  }

  .pqc-yellow .product-quantity-countdown__number,
  .pqc-red .product-quantity-countdown__number {
    text-shadow: none;
    color: var(--pqc-color);
  }

  .product-quantity-countdown__number {
    position: absolute;
    top: 1px;
    right: 3px;
    font-size: 12px;
    line-height: 1;
    color: white;
    font-weight: bold;
    transition: color 0.2s
    , text-shadow 0.2s;
    text-shadow: 1px 1px var(--pqc-color)
    , -1px -1px var(--pqc-color)
    , -1px 1px var(--pqc-color)
    , 1px -1px var(--pqc-color);
  }
  .product-quantity-countdown__number--no-shadow {
    text-shadow: none;
  }
  .product-quantity-countdown__info {
    font-size: 12px;
    line-height: 1;
    color: var(--base-color);
    text-align: right;
    margin-top: 8px;
    width: 100%;
    font-weight: bold;
    display: block;
  }
/* END_SNIPPET:inventory-qtty-overlay--countdown */

/* START_SNIPPET:inventory-qtty-overlay (INDEX:89) */
.product-quantity {
    --pq-color: green;
    position: absolute;
    top: 12px;
    right: 8px;
  }
  .product-quantity__bar-wrapper {
    position: relative;
    display: block;
    width: 100px;
    background-color: #f3f5f6;
    border-radius: 8px;
    outline: 2px solid var(--pq-color);
    outline-offset: 2px;
    min-height: 12px;
    overflow: hidden;
  }
  .product-quantity__bar {
    min-height: 12px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--pq-color);
    border-radius: 8px;
    transition: background-color 0.2s
    , width 0.3s;
  }
  .product-quantity__number {
    position: absolute;
    top: 1px;
    right: 3px;
    font-size: 12px;
    line-height: 1;
    color: white;
    font-weight: bold;
    transition: color 0.2s
    , text-shadow 0.2s;
    text-shadow: 1px 1px var(--pq-color)
    , -1px -1px var(--pq-color)
    , -1px 1px var(--pq-color)
    , 1px -1px var(--pq-color);
  }
  .product-quantity__number--no-shadow {
    text-shadow: none;
  }
  .product-quantity__info {
    font-size: 12px;
    line-height: 1;
    color: var(--pq-color);
    text-align: right;
    margin-top: 8px;
    width: 100%;
    font-weight: bold;
    display: block;
  }
/* END_SNIPPET:inventory-qtty-overlay */

/* START_SNIPPET:line-items__total-calculator (INDEX:90) */
.savings {
    display: flex;
    flex-direction: row;
    padding: var(--s-1) var(--s-2);
    border-radius: var(--r-sm);
    background: #efefef;
    max-width: fit-content;
    gap: var(--s-1);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
/* END_SNIPPET:line-items__total-calculator */

/* START_SNIPPET:menu (INDEX:92) */
#menu-drawer {
    position: relative;
    background-color: white;
    height: 99%;
    width: 75%;
    max-width: 400px;
    transform: translateX(calc(-100% - 10px));
    transition: transform 0.5s ease;
  }
  #menu-drawer:not(.open) {
    width: 0;
  }
  #menu-drawer.open {
    transform: translateX(0);
  }
  #menu-button--close {
    cursor: pointer;
  }

  .menu-drawer .hxxl,
  .menu-items a {
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  .menu-items a:hover {
    --color-text: var(--color-accent);
    letter-spacing: 2px;
  }

  .menu-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    bottom: var(--s-5);
  }

  .menu-footer .menu-item {
    display: flex;
    align-items: center;
    gap: var(--s-2);
  }
  .menu-footer .icon {
    width: 16px;
    height: 16px;
  }
/* END_SNIPPET:menu */

/* START_SNIPPET:price (INDEX:96) */
body {
    --color-price: var(--color-accent);
    --color-price-highlight: var(--color-accent);
    --color-price-compare-at: rgba(var(--color-text), 0.5);
    --color-price-info: rgba(var(--color-text), 0.5);
  }

  .price-container {
    display: flex;
    align-items: center;
  }

  .price {
    font-weight: 700;
    color: var(--color-price);
  }
  .compare-at-price + .price {
    color: var(--color-price-highlight);
  }
  .compare-at-price {
    font-weight: 300;
    color: var(--color-price-compare-at);
    text-decoration: line-through;
  }
  .price-info {
    color: var(--color-price-info);
    font-size: 10px;
  }
/* END_SNIPPET:price */

/* START_SNIPPET:product-card-lbrgt (INDEX:97) */
/* price */

  .product-price--wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .product-price--label {
    width: 70px;
  }
/* END_SNIPPET:product-card-lbrgt */

/* START_SNIPPET:product-gallery (INDEX:99) */
.product-gallery,
  .product-gallery__main {
    position: relative;
  }

  /* Buttons */
  .product-gallery__arrow {
    position: absolute;
    bottom: var(--s-2);
    z-index: 10;

    opacity: 1;
    background: var(--color-secondary-button);
    border: unset;
    border-radius: var(--r-full);
    padding: 5px;
    color: rgb(var(--color-secondary-button-text));
    transition: all 0.15s ease-in-out;
  }
  .product-gallery__arrow--disabled {
    opacity: 0.2;
  }
  .product-gallery__arrow--left {
    left: var(--s-2);
  }
  .product-gallery__arrow--right {
    right: var(--s-2);
  }

  /* Thumbnails */
  .product-gallery__thumbnails {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    gap: var(--s-1);
  }

  .product-gallery__thumbnail {
    flex-shrink: 1;
    width: 40px;
    height: auto;
    cursor: pointer;
    filter: brightness(0.5);
    transition: filter 0.3s ease
    , border 0.3s ease;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
  }

  .product-gallery__thumbnail:hover {
    filter: brightness(1);
  }

  .glide__bullet.glide__bullet--active.product-gallery__thumbnail {
    filter: brightness(1.2);
    border: 2px solid var(--color-accent);
  }

  /* Hide alternative images */
  .product-gallery__image--alternative,
  .product-gallery__thumb-image--alternative {
    display: none;
  }

  @media (min-width: 800px) {
    .product-gallery {
      display: flex;
      flex-direction: row-reverse;
      gap: var(--s-3);
    }
    .product-gallery__thumbnails {
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 0;
      margin-bottom: 0;
      gap: var(--s-3);
    }
    .product-gallery__thumbnail {
      width: 100px;
    }
    .product-gallery__main {
      border-radius: var(--r-md);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .product-gallery__arrow {
      opacity: 0;
      bottom: 50%;
      transform: translateY(50%);
      padding: var(--s-2);
    }
    .product-gallery:hover .product-gallery__arrow {
      opacity: 1;
    }
  }

  @media (max-width: 799px) {
    .product-gallery {
      top: 0;
      background-color: #efefef;
      border-bottom: 1px solid rgba(var(--color-text), 0.2);
    }
    .product-gallery__thumbnails {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(calc(-50% - 20px));
      width: calc(100% - 88px);
      margin-left: var(--page-margin);
      margin-right: var(--page-margin);
    }
  }
/* END_SNIPPET:product-gallery */

/* START_SNIPPET:read-more (INDEX:102) */
.read-more {
    border-bottom: 1px solid rgba(var(--color-text), 0.2);
  }

  .collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    line-height: 1.6;
    text-align: left;
  }
  .collapsible-icon {
    transition: transform 0.2s ease;
    display: inline-block;
    color: var(--color-accent-secondary);
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  .collapsible-toggle[aria-expanded="true"] .collapsible-icon {
    transform: rotate(135deg);
  }
  .collapsible-content {
    padding: 0 var(--s-3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease
    , padding 0.2s ease;
  }
  .collapsible-toggle[aria-expanded="true"] + .collapsible-content {
    max-height: 2000px;
    padding-bottom: var(--s-3);
  }
/* END_SNIPPET:read-more */

/* START_SNIPPET:savings (INDEX:103) */
.savings {
    display: flex;
    flex-direction: row;
    padding: var(--s-1) var(--s-2);
    border-radius: var(--r-sm);
    background: #efefef;
    max-width: fit-content;
    gap: var(--s-1);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
/* END_SNIPPET:savings */

/* START_SNIPPET:selector--qanitity-adventskalender (INDEX:106) */
.quantity-selector {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .quantity-label {
    width: 70px;
  }
  .product__quantity-buttons--adventskalender {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: var(--s-2)
  }
  .quantity-button--adventskalender {
    color: black;
    flex-grow: 1;
    border-radius: var(--r-sm);
    border: var(--border);
    background-color: #efefef;
    font-weight: bold;
    transition: background 0.2s;
    position: relative;
  }
  .quantity-button--adventskalender span {
    color: white;
    background-color: var(--color-accent);
    border-radius: var(--r-sm);
    position: absolute;
    top: -8px;
    right: -6px;
    padding: 1px 4px;
    font-size: 10px;
  }
  .quantity-button--adventskalender[aria-selected="true"] {
    background: white;
    border: 2px solid #065532;
  }
/* END_SNIPPET:selector--qanitity-adventskalender */

/* START_SNIPPET:selector--quantity (INDEX:107) */
.quantity-selector {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .quantity-label {
    width: 70px;
  }
  .product__quantity-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #acacac;
    border-radius: 5px;
    width: fit-content;
  }
/* END_SNIPPET:selector--quantity */

/* START_SNIPPET:tiktok-embed-legacy (INDEX:110) */
.tiktok-embed {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .tiktok-embed {
    max-width: 323px;
  }
  .tiktok-embed iframe {
    max-height: 574.22px !important;
    max-width: 323px;
    border-radius: 5px;
    overflow: hidden;
  }
  .tiktok-embed section {
    height: 574.22px;
  }
  .tiktok-embed > section:before {
    min-height: 525px;
  }
  .tiktok-embed.card > :last-child {
    margin-bottom: 0;
  }
/* END_SNIPPET:tiktok-embed-legacy */

/* START_SNIPPET:tiktok-embed (INDEX:111) */
.tiktok-embed {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .tiktok-embed {
    max-width: 323px;
  }
  .tiktok-embed iframe {
    max-height: 574.22px !important;
    max-width: 323px;
    border-radius: 5px;
    overflow: hidden;
  }
  .tiktok-embed section {
    height: 574.22px;
  }
  .tiktok-embed > section:before {
    min-height: 525px;
  }
  .tiktok-embed.card > :last-child {
    margin-bottom: 0;
  }
/* END_SNIPPET:tiktok-embed */

/* START_SNIPPET:tiktok-player (INDEX:112) */
.tiktok-embed-wrapper {
    display: flex;
    justify-content: center;
  }
  .tiktok-embed-wrapper iframe {
    width: 100%;
    max-width: 540px;
    max-height: 960px;
    aspect-ratio: 9 / 16;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
/* END_SNIPPET:tiktok-player */

/* START_SNIPPET:youtube-embed (INDEX:113) */
.yt_holder {
    display: flex;
    width: 100%;
    min-width: 100px;
    max-width: 1400px;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    justify-content: space-between;
  }

  .yt_container {
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    height: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  }
  .yt_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:youtube-embed */