/** Shopify CDN: Minification failed

Line 59:0 Invalid escape

**/
/* Anpassungen für die Produktpreisdarstellung */
.custom-price-container {
  margin: 15px 0;
  width: 100%;
}

.custom-price-layout {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px; /* Reduzierter Abstand zwischen den Elementen (von 15px auf 8px) */
  width: 100%;
}

.discount-badge {
  margin-right: 0;
}

.discount-percentage {
  color: white;
  font-weight: 450;
  font-size: 1.0em;
}

.current-price {
  font-size: 1.0em;
  font-weight: 600;
  color: #333;
}

.compare-price {
  display: flex;
  align-items: center;
  margin-left: 10px; /* Reduzierter Abstand (vorher war es auto, was den großen Abstand verursachte) */
}

.compare-at-price-label {
  color: #999;
  margin-right: 5px;
  font-weight: 400;
  font-size: 0.5em;
}

.compare-at-price {
  color: #999;
  text-decoration: line-through;
}

.shipping-info {
  margin-top: 8px;
  color: #5d7b9e;
  font-size: 0.9em;
}
\
@media screen and (max-width: 749px}) {
  .custom-price-layout {
    flex-direction: row;
    align-items: center;
  }

  .compare-price {
    margin-left: 10px; /* Auch für mobile Ansicht angepasst */
  }
}
