/** Shopify CDN: Minification failed

Line 15:0 Unexpected "}"

**/
/* Allgemeine Preisregel */
.price {
  font-size: 2.4rem; /* Einheitlich größere Schriftgröße */
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: #1FB70D; /* Auffällige Farbe */
  display: inline-block;
}
}

/* Spezifische Regel für die Produktseite */
.template-product .price {
  font-size: 2.4rem; /* Einheitlich größere Schriftgröße */
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: #1FB70D; /* Auffällige Farbe */
  display: inline-block;
}

/* Preisänderungen bei großen Bildschirmgrößen (optional, falls gewünscht) */
@media screen and (min-width: 750px) {
  .price--large {
    font-size: 3.0rem; /* Noch größere Schriftgröße für größere Bildschirme */
  }
}

/* Preisdarstellung für nicht verfügbare Artikel */
.price.price--unavailable {
  visibility: hidden;
}

/* Textausrichtung für Endpreise */
.price--end {
  text-align: right;
}

/* Preisitem mit Inline-Blockdarstellung */
.price .price-item {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.price__regular .price-item--regular {
  margin-right: 0;
}

.price:not(.price--show-badge) .price-item--last:last-of-type {
  margin: 0;
}

/* Preisanzeige auf mobilen Geräten */
@media screen and (min-width: 750px) {
  .price {
    margin-bottom: 0;
  }
}

/* Spezifische Preisdarstellung für Artikel im Ausverkauf oder Sonderaktionen */
.price--sold-out .price__availability,
.price__regular {
  display: block;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale,
.volume-pricing--sale-badge .price__badge-sale {
  display: inline-block;
}

.volume-pricing--sale-badge .price__badge-sale {
  margin-left: 0.5rem;
}

.price--on-sale .price__sale {
  display: initial;
  flex-direction: row;
  flex-wrap: wrap;
}

.price--center {
  display: initial;
  justify-content: center;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.3rem;
}

/* Einheitspreisregel (falls zutreffend) */
.unit-price {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}
