/** Shopify CDN: Minification failed

Line 141:0 Expected "}" to go with "{"

**/
/* =====================================
   BUTTN CUSTOM STYLING – SALE PRICES
   Purpose: Sale-Preis hervorheben
   ===================================== */

.price {
  color:#e34234;
  font-weight: 800;
}

.compare-at-price {
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-right: 8px;
}

.buttn-badge-sale {
  background:#e34234;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 10px;
  text-transform: uppercase;
}

/* =====================================
   BUTTN – Payment Icons (centered & even)
   ===================================== */

.buttn-payments{
  display: flex;
  justify-content: center;      /* zentriert die ganze Reihe */
  align-items: center;          /* vertikal sauber ausgerichtet */
  gap: 14px;                    /* gleichmäßiger Abstand */
  margin: 12px auto 16px;       /* mittig im Container */
  flex-wrap: wrap;              /* bricht sauber um auf Mobile */
}

.buttn-payments svg{
  height: 34px;          /* ← größer */
  width: auto;
  padding: 8px 14px;     /* mehr Luft */
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: #fff;
}
.product-badges .product-badges__badge.color-sale,
.product-badges .product-badges__badge--sale {
  display: none !important;

/* =====================================
   BUTTN CUSTOM – GLOBAL STYLES
   ===================================== */

/* -----------------------------
   SALE PRICES (Preis + Altpreis)
   ----------------------------- */
.price{
  color: #00bf63;         /* Sale-Preis grün */
  font-weight: 800;
}

.compare-at-price{
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-right: 8px;
}

/* Sale/Spare Badge beim Preis */
.buttn-badge-sale{
  display: inline-block;
  background: #00bf63;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 10px;
  text-transform: uppercase;
}


/* -----------------------------
   PAYMENT ICONS (zentriert)
   ----------------------------- */
.buttn-payments{
  display: flex;
  justify-content: center;   /* Reihe zentrieren */
  align-items: center;
  gap: 14px;                 /* gleichmäßiger Abstand */
  margin: 12px auto 16px;
  flex-wrap: wrap;           /* Mobile: bricht sauber um */
}

.buttn-payments svg{
  height: 34px;              /* größer */
  width: auto;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: #fff;
}

/* Mobile etwas kompakter */
@media (max-width: 768px){
  .buttn-payments svg{
    height: 30px;
    padding: 6px 12px;
  }
}


/* =====================================
   BUTTN – GLOBAL BUTTON STYLING
   Gilt für ALLE Buttons im Shop
   ===================================== */

button,
.button,
input[type="submit"],
input[type="button"]{
  font-size: 100.15rem;
  font-weight: 800;
  border-radius: 18px;
  padding: 18px 24px;
  line-height: 1.2;
}




