/** Shopify CDN: Minification failed

Line 408:14 Expected identifier but found whitespace
Line 408:15 Unexpected "12"
Line 429:0 Expected "}" to go with "{"

**/
variant-selects {
  display: block;
}

.product--no-media .product-form__input--pill,
.product--no-media .product-form__input--swatch,
.product--no-media .product-form__input--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product--no-media .product-form__input.product-form__input--pill,
.product--no-media .product-form__input.product-form__input--swatch {
  flex-wrap: wrap;
  margin: 0 auto 1.2rem auto;
}

.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width: 100%;
}

:is(.product-form__input--pill, .product-form__input--swatch) .form__label {
  margin-bottom: 0.2rem;
}

.product-form__input input[type='radio'] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.product-form__input input[type='radio']:not(.disabled):not(.visually-disabled) + label > .label-unavailable {
  display: none;
}

.product-form__input--dropdown {
  --swatch-input--size: 2rem;
  margin-bottom: 1.6rem;
}

.product-form__input--dropdown .dropdown-swatch + select {
  padding-left: calc(2.4rem + var(--swatch-input--size));
}

.product-form__input--dropdown .dropdown-swatch {
  position: absolute;
  left: 1.6rem;
  top: calc(50% - var(--swatch-input--size) / 2);
  width: var(--swatch-input--size);
  height: var(--swatch-input--size);
  z-index: 1;
}

/* Custom styles for Pill display type */
.product-form__input--pill input[type='radio'] + label {
  border: var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form__input--pill input[type='radio'] + label:before {
  content: '';
  position: absolute;
  top: calc(var(--variant-pills-border-width) * -1);
  right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left: calc(var(--variant-pills-border-width) * -1);
  z-index: -1;
  border-radius: var(--variant-pills-radius);
  box-shadow: var(--variant-pills-shadow-horizontal-offset) var(--variant-pills-shadow-vertical-offset)
    var(--variant-pills-shadow-blur-radius) rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}

.product-form__input--pill input[type='radio'] + label:hover {
  border-color: rgb(var(--color-foreground));
}

.product-form__input--pill input[type='radio']:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

@media screen and (forced-colors: active) {
  .product-form__input--pill input[type='radio']:checked + label {
    text-decoration: underline;
  }

  .product-form__input--pill input[type='radio']:focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
}

.product-form__input--pill input[type='radio']:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

.product-form__input--pill input[type='radio']:disabled + label,
.product-form__input--pill input[type='radio'].disabled + label {
  border-color: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
}

.product-form__input--pill input[type='radio'].disabled:checked + label,
.product-form__input--pill input[type='radio']:disabled:checked + label {
  color: rgba(var(--color-background), 0.6);
}
.product-form__input--pill input[type='radio']:focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Fallback */
.product-form__input--pill input[type='radio'].focused + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Custom styles for Swatch display type */
.product-form__input--swatch {
  display: flex;
  flex-wrap: wrap;
}

.product-form__input--swatch .swatch-input__input + .swatch-input__label {
  --swatch-input--size: 3.6rem;

  margin: 0.7rem 1.2rem 0.2rem 0;
}

@media screen and (min-width: 750px) {
  .product-form__input--swatch .swatch-input__input + .swatch-input__label {
    --swatch-input--size: 2.8rem;
  }
}
/* End custom styles for Swatch display type */
/* ===== SLE VARIANT PICKER OVERRIDE (DAWN 15.2.0) ===== */

/* Standard (nicht ausgewählt) */
.product-form__input--pill input[type="radio"] + label {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  padding: 8px 12px !important;
  min-width: 46px !important;
  text-align: center !important;
}

/* Ausgewählt (checked) -> soll bei dir auch WEISS bleiben */
.product-form__input--pill input[type="radio"]:checked + label {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}

/* Sold out / disabled -> durchgestrichen */
.product-form__input--pill input[type="radio"]:disabled + label {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  text-decoration: line-through !important;
  opacity: 0.55 !important;
}

/* Hover */
.product-form__input--pill input[type="radio"] + label:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Mobile (Standard) */
.product-form__input--pill input[type="radio"] + label {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  box-shadow: none !important;

  padding: 12px 18px !important;   /* Größe */
  min-width: 60px !important;      /* Breite */
  font-size: 16px !important;      /* Text */
  border-radius: 16px !important;  /* Rundung */

  text-align: center !important;
}

/* Desktop */
@media (min-width: 750px) {
  .product-form__input--pill input[type="radio"] + label {
    padding: 14px 22px !important;
    min-width: 70px !important;
    font-size: 17px !important;
    border-radius: 18px !important;
  }
}/* SLE – Force variant pill look (Dawn 15.x) */

/* Standard Pill */
variant-radios .product-form__input--pill input[type="radio"] + label,
variant-selects .product-form__input--pill input[type="radio"] + label,
.product__info-wrapper .product-form__input--pill input[type="radio"] + label,
.product__info-wrapper .product-form__input input[type="radio"] + label {
  background: #fff !important;
  color: #111 !important;
  border: 2px solid #111 !important;
  border-radius: 12px !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/* Selected (available) */
variant-radios .product-form__input--pill input[type="radio"]:checked + label,
variant-selects .product-form__input--pill input[type="radio"]:checked + label,
.product__info-wrapper .product-form__input--pill input[type="radio"]:checked + label {
  background: #fff !important;     /* bleibt WEISS */
  color: #111 !important;
  border-color: #111 !important;
}

/* SOLD OUT bei dir = class="disabled" */
variant-radios .product-form__input--pill input[type="radio"].disabled + label,
variant-selects .product-form__input--pill input[type="radio"].disabled + label,
.product__info-wrapper .product-form__input--pill input[type="radio"].disabled + label,
variant-radios .product-form__input--pill input[type="radio"][class~="disabled"] + label {
  background: #e9e9e9 !important;
  color: #6b6b6b !important;
  border-color: #bdbdbd !important;
  opacity: 0.55 !important;
  text-decoration: line-through !important;
  cursor: not-allowed !important;
}

/* falls sold-out trotzdem checked ist (Einzelpiece) */
variant-radios .product-form__input--pill input[type="radio"].disabled:checked + label,
variant-selects .product-form__input--pill input[type="radio"].disabled:checked + label,
.product__info-wrapper .product-form__input--pill input[type="radio"].disabled:checked + label {
  background: #e9e9e9 !important;
  color: #6b6b6b !important;
  border-color: #bdbdbd !important;
  opacity: 0.55 !important;
  text-decoration: line-through !important;
}/* ================================
   SLE VARIANT BASE (Dawn 15.2.0)
   ================================ */

/* === EASY SETTINGS === */
:root {
  --sle-pill-font-size-desktop: 14px;
  --sle-pill-font-size-mobile: 14px;

  --sle-pill-padding-desktop: 13px 14px;
  --sle-pill-padding-mobile: 10px 14px;

  --sle-pill-border-radius: 12px;
  --sle-pill-border-width: 2px;
}

/* === BASE STYLE === */
.product-form__input input[type="radio"] + label {
  background: #fff !important;
  color: #111 !important;
  border: var(--sle-pill-border-width) solid #111 !important;
  border-radius: var(--sle-pill-border-radius) !important;
  box-shadow: none !important;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}

/* === DESKTOP === */
@media screen and (min-width: 750px) {
  .product-form__input input[type="radio"] + label {
    font-size: var(--sle-pill-font-size-desktop) !important;
    padding: var(--sle-pill-padding-desktop) !important;
    min-width: 54px;
  }
}

/* === MOBILE === */
@media screen and (max-width: 749px) {
  .product-form__input input[type="radio"] + label {
    font-size: var(--sle-pill-font-size-mobile) !important;
    padding: var(--sle-pill-padding-mobile) !important;
    min-width: 48px;
  }
}

/* === SELECTED (bleibt weiß!) === */
.product-form__input input[type="radio"]:checked + label {
  background: #fff !important;
  color: #111 !important;
  border-color: #111 !important;
}

/* === SOLD OUT === */
.product-form__input input[type="radio"].disabled + label,
.product-form__input input[type="radio"]:disabled + label {
  background: #f1f1f1 !important;
  color: #777 !important;
  border-color: #ccc !important;
  opacity: 0.6 !important;
  text-decoration: line-through;
  cursor: not-allowed;
}/* ================================
   SLE – PRICE + TAX SPACING FIX
   ================================ */

/* Preis selbst enger machen */
.product__info-container .price {
  margin-bottom: 2px !important;
  line-height: 1.2;
}

/* Tax included direkt hochziehen */
.product__tax {
  margin-top: -16px !important;  /* 👈 DAS ist der Key */
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1.2;
}

/* Mobile noch enger */
@media screen and (max-width: 749px) {
  .product__tax {
    margin-top: -8px !important;
    font-size: 10px;
  }
}/* =========================================================
   PRODUCT PAGE – ACCORDION ARROWS (DAWN 15.2.0)
   NUR Produktseite, NUR einklappbare Reihen
========================================================= */

/* Summary Layout */
.product__accordion details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Original Dawn-Caret ausblenden (NUR hier) */
.product__accordion details > summary .icon-caret {
  display: none;
}

/* Eigener Pfeil rechts */
.product__accordion details > summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg); /* geschlossen ▼ */
  transition: transform 0.2s ease;
  margin-left: 12px;
}

/* Offen = Pfeil nach oben */
.product__accordion details[open] > summary::after {
  transform: rotate(-135deg); /* offen ▲ */
}/* ================================
   PRODUCT DESCRIPTION – SMALLER
   Dawn 15.2.0
================================ */

/* Textgröße Beschreibung */
.product__description,
.product__description p,
.product__description li {
  font-size: 14px;       /* ← kleiner Text */
  line-height: 1.6;      /* ← luftiger */
  color: #111;
}

/* Abstand nach oben (näher an Preis) */
.product__description {
  margin-top: 8px;       /* ← kleiner Abstand */
}

/* Mobile etwas größer (optional) */
@media (max-width: 768px) {
  .product__description,
  .product__description p,
  .product__description li {
    font-size: 12

/* Produktseite: Accordion-Linien full width, Inhalt bleibt eingerückt */
.template-product .product__info-container .accordion {
  /* "zieht" das Element links/rechts raus, damit die Borders bis zum Rand gehen */
  margin-left: -1.5rem;
  margin-right: -1.5rem;

  /* gibt den Abstand für den Inhalt wieder zurück */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Desktop: Dawn nutzt oft größere Page-Paddings */
@media screen and (min-width: 750px) {
  .template-product .product__info-container .accordion {
    margin-left: -5rem;
    margin-right: -5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
