/** Shopify CDN: Minification failed

Line 383:2 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-bundle (INDEX:138) */
/* .bundler-target-element {height: 0;visibility: hidden;pointer-events: none;} */
  .bundles-section {
    --bundle-radius: 8px;
    --bundle-border: #e5e0da;
    --bundle-bg: #ffffff;
    --bundle-featured-border: #1a1a1a;
    --bundle-title-color: #1a1a1a;
    --bundle-text-color: #000;
    --bundle-check-color: #5a7a5a;
    --bundle-price-color: #474747;
    --bundle-badge-bg: #FFD414;
    --bundle-badge-color: #1a1a1a;
    --bundle-cta-bg: #1a1a1a;
    --bundle-cta-color: #ffffff;
    --bundle-cta-featured-bg: #f0c84b;
    --bundle-cta-featured-color: #1a1a1a;
    --bundle-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --bundle-shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.10);
    font-family: inherit;
  }

  /* ---- Hide real bundler widgets ---- */
  .bundle-widgets-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    clip: rect(0 0 0 0);
  }

  .bundles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ---- Card ---- */
  .bundle-card {
    position: relative;
    display: flex;
    gap: 15px;
    background: var(--bundle-bg);
    border: 1.5px solid var(--bundle-border);
    border-radius: var(--bundle-radius);
    padding: 10px;
    box-shadow: var(--bundle-shadow);
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.15s ease;
    cursor: pointer;
    user-select: none;
  }

  .bundle-card:hover {
    border-color: var(--bundle-featured-border);
    box-shadow: var(--bundle-shadow-hover);
    transform: translateY(-2px);
  }

  .bundle-card:focus-visible {
    outline: 2px solid var(--bundle-featured-border);
    outline-offset: 3px;
  }

  /* ---- Loading overlay ---- */
  .bundle-loader-overlay {
    display: none;
    display: none !important;
    position: absolute;
    inset: 0;
    border-radius: var(--bundle-radius);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 20;
    align-items: center;
    justify-content: center;
  }

  .bundle-card--loading {
    pointer-events: none;
  }

  .bundle-card--loading .bundle-loader-overlay {
    display: flex;
  }

  .bundle-loader-svg {
    animation: bundle-spin 0.75s linear infinite;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  }

  @keyframes bundle-spin {
    to { transform: rotate(360deg); }
  }

  /* ---- Badge ---- */
  .bundle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bundle-badge-bg);
    color: var(--bundle-badge-color);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    letter-spacing: 0.01em;
    z-index: 1;
    border-radius: 5px;
    border: 1px solid #000;
    box-shadow: -2px 2px 4px 0 rgba(0, 0, 0, 0.35);
  }

  .bundle-badge__icon {
    font-size: 14px;
  }

  /* ---- Image ---- */
  .bundle-image {
    flex-shrink: 0;
    width: 200px;
    border-radius: 5px;
    overflow: hidden;
    background: #f5f0ea;
  }

  .bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bundle-image__placeholder {
    width: 100%;
    height: 100%;
  }

  /* ---- Info ---- */
  .bundle-info {
    flex: 1;
    min-width: 0;
  }

  /* ---- Title ---- */
  .bundle-title {
    font-size: 18px;
    font-family: 'Co Headline';
    font-weight: 400;
    color: var(--bundle-title-color);
    margin: 0 0 5px;
  }

  /* ---- Richtext Features ---- */
  .bundle-features-rich {
    color: var(--bundle-text-color);
    font-size: 14px;
    line-height: 1.5;
  }

  .bundle-features-rich p,
  .bundle-features-rich li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 3px;
    padding: 0;
  }

  .bundle-features-rich p::before,
  .bundle-features-rich li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 10px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .bundle-features-rich ul,
  .bundle-features-rich ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ---- Pricing ---- */
  .bundle-pricing__current {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 800;
    color: var(--bundle-price-color);
    letter-spacing: -0.02em;
    line-height: normal;
  }

  .bundle-pricing__current s {
    color: #474747;
    font-size: 16px;
    font-weight: 500;
  }

  /* ---- CTA ---- */
  .bundle-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--bundle-cta-bg);
    color: var(--bundle-cta-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .bundle-card:hover .bundle-cta {
    opacity: 0.88;
  }

  .bundle-cta--featured {
    background: var(--bundle-cta-featured-bg);
    color: var(--bundle-cta-featured-color);
  }

  .bundle-card--active {
    border-color: var(--bundle-featured-border);
    box-shadow: var(--bundle-shadow-hover);
  }


  .custom-button-bundle {
  width: 100% !important;
  white-space: nowrap !important;
}

  .custom-button-bundle .loader-button__loader {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-button-bundle.loading .loader-button__loader {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .custom-button-bundle .icon--spinner {
    animation: bundle-btn-spin 0.8s linear infinite;
  }

  .custom-button-bundle .icon--spinner circle {
    stroke: #ffffff;
    stroke-dasharray: 80;
    stroke-dashoffset: 60;
  }

  @keyframes bundle-btn-spin {
    100% { transform: rotate(360deg); }
  }


  /* For AB Test side by side*/
  @media only screen and (min-width: 200px) and (max-width: 9999px) {

  .bundles-section.bundles-section-new .bundles-wrapper {
    flex-direction: row !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .bundles-section.bundles-section-new .bundle-card {
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px !important;
    gap: 0 !important;

    background: #ffffff !important;
    border: 1px solid #d2d2d7 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
  }

  .bundles-section.bundles-section-new .bundle-image {
    width: 100% !important;
    height: 150px !important;
    margin-bottom: 12px !important;

    border-radius: 10px !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  .bundles-section.bundles-section-new .bundle-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  .bundles-section.bundles-section-new .bundle-title {
    margin: 0 0 10px !important;
    padding-bottom: 9px !important;

    border-bottom: 1px solid #e5e5e7 !important;

    color: #1d1d1f !important;
    font-family: inherit !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  .bundles-section.bundles-section-new .bundle-features-rich {
    margin: 0 0 12px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #424245 !important;
  }

  .bundles-section.bundles-section-new .bundle-pricing {
    display: flex !important;
    justify-content: flex-start !important;

    margin-top: auto !important;
    padding-top: 12px !important;

    border-top: 1px solid #e5e5e7 !important;
  }

  .bundles-section.bundles-section-new .bundle-pricing__current {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 3px !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
  }

  .bundles-section.bundles-section-new .bundle-pricing__current s {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #86868b !important;
  }

  .bundles-section.bundles-section-new .bundle-badge {
    top: 10px !important;
    right: 10px !important;
    left: auto !important;

    padding: 4px 8px !important;
    min-width: 0 !important;
    min-height: 0 !important;

    border-radius: 8px !important;
    box-shadow: none !important;

    font-size: 11px !important;
  }
}
  }
  @media only screen and (min-width: 200px) and (max-width: 767px) {
    .bundles-section.bundles-section-new .bundles-wrapper {gap: 3px;}
    .bundles-section.bundles-section-new .bundle-card {padding: 5px;}
    .bundles-section.bundles-section-new .bundle-image {min-width: 75px;height: 100px;}
    .bundles-section.bundles-section-new .bundle-title, .bundles-section.bundles-section-new .bundle-pricing__current {font-size: 11px;}
    .bundles-section.bundles-section-new .bundle-features-rich {font-size: 10px;}
    .bundles-section.bundles-section-new .bundle-pricing__current {flex-direction: column;gap: 0;line-height: normal;}
    .bundles-section.bundles-section-new .bundle-pricing__current s {font-size: 11px;}
    .bundles-section.bundles-section-new .bundle-badge {padding: 0px 5px;top: 0px;left: 0px;font-size: 10px;}
  }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .bundles-section.bundles-section-new .bundles-wrapper {gap: 4px;}
    .bundles-section.bundles-section-new .bundle-card {padding: 5px;    gap: 5px;}
    .bundles-section.bundles-section-new .bundle-pricing__current {gap: 5px;}
    .bundles-section.bundles-section-new .bundle-title, .bundles-section.bundles-section-new .bundle-pricing__current {font-size: 13px;}
    .bundles-section.bundles-section-new .bundle-pricing__current {flex-direction: column;gap: 0;line-height: normal;}
    .bundles-section.bundles-section-new .bundle-features-rich {font-size: 12px;}
    .bundles-section.bundles-section-new .bundle-pricing__current s {font-size: 13px;}
  }
  @media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .bundles-section.bundles-section-new .bundle-title {font-size: 16px;}
    .bundles-section.bundles-section-new .bundle-pricing__current {font-size: 16px;}
    .bundles-section.bundles-section-new .bundle-pricing__current {flex-direction: column;gap: 0;line-height: normal;}
  }
  /* End AB Test */


  /* ---- Responsive ---- */
  @media only screen and (min-width: 1000px) and (max-width: 1380px) {
  .bundle-badge {left: 16px;right: auto;}
  }
  @media (max-width: 1199px) {
    .bundle-image { width: 150px; }
    .bundle-title { font-size: 16px; }
    .bundle-pricing__current { font-size: 16px; }
  }

  @media (max-width: 600px) {
    .bundles-wrapper {gap: 10px;}
    .bundle-card {
      /* flex-direction: column;
      align-items: flex-start; */
      gap: 10px;
    }
    /* .bundle-image {
      width: 100%;
      height: 180px;
    } */
    .bundle-image {width: 120px;}
    .bundle-badge {
      top: 12px;
      left: 12px;
      right: auto;
      font-size: 11px;
      padding: 0px 4px;
      min-width: 50px;
      min-height: 26px;
      justify-content: center;
    }
    .bundle-title, .bundle-pricing__current {font-size: 14px;}
    .bundle-features-rich {font-size: 12px;}
  }
  /* =========================================================
   WHIPL BUNDLES – CLEAN FINAL
   ========================================================= */

   /* ---------- ÜBERSCHRIFT SET-AUSWAHL ---------- */

.bundles-section.bundles-section-new .bundle-section-heading {
  margin: 0 0 16px !important;
  padding: 0 !important;

  color: #1d1d1f !important;

  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}
/* ---------- GRUNDLAYOUT ---------- */

.bundles-section.bundles-section-new .bundles-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 10px !important;
}

.bundles-section.bundles-section-new .bundle-card {
  position: relative !important;
  isolation: isolate !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;

  padding: 10px !important;
  gap: 0 !important;

  background: #ffffff !important;
  border: 1px solid #d9d9de !important;
  border-radius: 14px !important;
  box-shadow: none !important;

  overflow: hidden !important;
  transform: none !important;
}

.bundles-section.bundles-section-new .bundle-card:hover {
  transform: none !important;
  box-shadow: none !important;
}


/* ---------- AUSGEWÄHLTES SET ---------- */

.bundles-section.bundles-section-new .bundle-card--active {
  border-color: #1d1d1f !important;
  box-shadow: 0 0 0 1px #1d1d1f !important;
}

.bundles-section.bundles-section-new
.bundle-card.bundle-card--active::after {
  content: "✓" !important;

  position: absolute !important;
  right: 10px !important;
  bottom: 10px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 21px !important;
  height: 21px !important;

  background: #1d1d1f !important;
  color: #ffffff !important;

  border-radius: 50% !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  z-index: 5 !important;
  pointer-events: none !important;
}


/* ---------- BILD ---------- */

.bundles-section.bundles-section-new .bundle-image {
  width: 100% !important;
  height: 150px !important;
  min-width: 0 !important;

  margin: 0 0 10px !important;

  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  border-radius: 9px !important;
}


/* ---------- INFO ---------- */

.bundles-section.bundles-section-new .bundle-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}


/* ---------- TITEL ---------- */

.bundles-section.bundles-section-new .bundle-title {
  margin: 0 !important;
  padding: 0 0 9px !important;

  border-bottom: 1px solid #e5e5e7 !important;

  color: #1d1d1f !important;

  font-family: inherit !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}


/* ---------- DESKTOP FEATURES ---------- */

.bundle-features-mobile {
  display: none !important;
}

.bundle-features-desktop {
  display: block !important;
}

.bundles-section.bundles-section-new .bundle-features-rich {
  margin: 9px 0 12px !important;

  color: #424245 !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
}

.bundles-section.bundles-section-new .bundle-features-rich ul,
.bundles-section.bundles-section-new .bundle-features-rich ol {
  margin: 0 !important;
  padding: 0 !important;
}

.bundles-section.bundles-section-new .bundle-features-rich li,
.bundles-section.bundles-section-new .bundle-features-rich p {
  margin: 0 0 4px !important;
}


/* ---------- PREIS ---------- */

.bundles-section.bundles-section-new .bundle-pricing {
  display: flex !important;

  margin-top: auto !important;
  padding-top: 10px !important;

  border-top: 1px solid #e5e5e7 !important;
}

.bundles-section.bundles-section-new .bundle-pricing__current {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;

  gap: 2px !important;

  color: #1d1d1f !important;

  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
}

.bundles-section.bundles-section-new .bundle-pricing__current s {
  color: #8a8a8f !important;

  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
}


/* ---------- PREMIUM SAVE BADGE ---------- */

.bundles-section.bundles-section-new .bundle-badge {
  position: absolute !important;

  top: 9px !important;
  right: 9px !important;
  left: auto !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-width: 0 !important;
  min-height: 0 !important;

  padding: 6px 10px !important;

  background: #111111 !important;
  color: #ffffff !important;

  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 999px !important;

  box-shadow: 0 4px 12px rgba(0,0,0,.10) !important;

  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;

  z-index: 1 !important;
}

.bundles-section.bundles-section-new .bundle-badge__label {
  color: #ffffff !important;
}

.bundles-section.bundles-section-new .bundle-badge__icon {
  display: none !important;
}


/* ---------- IN ALLEN SETS ---------- */

.bundle-common-features {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;

  gap: 7px !important;

  width: 100% !important;

  margin-top: 10px !important;
  padding: 9px 10px !important;

  background: #f7f7f8 !important;

  border: 1px solid #e5e5e7 !important;
  border-radius: 11px !important;

  color: #55555a !important;

  font-size: 12px !important;
  line-height: 1 !important;

  white-space: nowrap !important;
}

.bundle-common-features strong {
  color: #1d1d1f !important;
  font-weight: 600 !important;
}

.bundle-common-check {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;

  background: #1d1d1f !important;
  color: #ffffff !important;

  border-radius: 50% !important;

  font-size: 10px !important;
  font-weight: 700 !important;
}

.bundle-common-divider {
  color: #b2b2b7 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

  /* 3 Karten bleiben nebeneinander */
  .bundles-section.bundles-section-new .bundles-wrapper {
    gap: 6px !important;
    align-items: stretch !important;
  }

  .bundles-section.bundles-section-new .bundle-card {
    width: 100% !important;
    min-width: 0 !important;

    padding: 6px !important;

    border-radius: 12px !important;
  }


  /* Bild kompakt */
  .bundles-section.bundles-section-new .bundle-image {
    height: 96px !important;
    margin-bottom: 6px !important;

    border-radius: 8px !important;
  }


  /* Info füllt Karte – Preise dadurch gleich hoch */
  .bundles-section.bundles-section-new .bundle-info {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
  }


  /* Titel NICHT kleiner als aktuell */
  .bundles-section.bundles-section-new .bundle-title {
    min-height: 32px !important;

    margin: 0 !important;
    padding: 0 0 6px !important;

    font-size: 11px !important;
    line-height: 1.15 !important;

    border-bottom: 1px solid #e5e5e7 !important;
  }


  /* Desktop-Bullets Mobile aus */
  .bundles-section.bundles-section-new .bundle-features-desktop {
    display: none !important;
  }


  /* Mobile-Bullets vollständig sichtbar */
  .bundles-section.bundles-section-new .bundle-features-mobile {
    display: block !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 7px 0 6px !important;
    padding: 0 !important;

    overflow: visible !important;

    color: #55555a !important;

    font-size: 9px !important;
    line-height: 1.16 !important;
  }

  .bundles-section.bundles-section-new .bundle-features-mobile ul,
  .bundles-section.bundles-section-new .bundle-features-mobile ol {
    margin: 0 !important;
    padding: 0 !important;
  }

  .bundles-section.bundles-section-new .bundle-features-mobile li,
  .bundles-section.bundles-section-new .bundle-features-mobile p {
    display: flex !important;
    align-items: flex-start !important;

    gap: 4px !important;

    margin: 0 0 2px !important;
    padding: 0 !important;
  }


  /* Gleicher ✓ Haken wie Desktop vor jedem Bulletpoint */
  .bundles-section.bundles-section-new
  .bundle-features-mobile li::before,
  .bundles-section.bundles-section-new
  .bundle-features-mobile p::before {
    content: "" !important;

    display: inline-block !important;
    flex: 0 0 9px !important;

    width: 9px !important;
    height: 9px !important;

    margin-top: 1px !important;

    background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }


  /* Preis bei allen drei Karten auf gleicher Höhe */
  .bundles-section.bundles-section-new .bundle-pricing {
    margin-top: auto !important;

    padding-top: 7px !important;

    border-top: 1px solid #e5e5e7 !important;
  }

  .bundles-section.bundles-section-new .bundle-pricing__current {
    gap: 1px !important;

    font-size: 14.5px !important;
    line-height: 1 !important;

    white-space: nowrap !important;
  }

  .bundles-section.bundles-section-new .bundle-pricing__current s {
    font-size: 8.5px !important;
  }


  /* Save Badge Mobile */
  .bundles-section.bundles-section-new .bundle-badge {
    top: 7px !important;
    right: 7px !important;

    padding: 4px 7px !important;

    font-size: 8.5px !important;
  }


  /* Kleiner Auswahl-Haken unten rechts */
  .bundles-section.bundles-section-new
  .bundle-card.bundle-card--active::after {
    right: 7px !important;
    bottom: 7px !important;

    width: 15px !important;
    height: 15px !important;

    font-size: 8px !important;
  }


  /* In allen Sets kompakt auf einer Zeile */
  .bundle-common-features {
    flex-wrap: nowrap !important;

    gap: 3px !important;

    margin-top: 7px !important;
    padding: 7px 5px !important;

    border-radius: 10px !important;

    font-size: clamp(7.4px, 2.15vw, 9px) !important;
    line-height: 1 !important;

    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .bundle-common-check {
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px !important;

    font-size: 8px !important;
  }

  .bundle-common-divider {
    margin: 0 1px !important;
  }
}
/* END_SNIPPET:product-bundle */