/** Shopify CDN: Minification failed

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

**/
/* Grundlayout für den Blogartikel */
.article {
  max-width: 70%;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Anpassen der Bilder */
.blog-articles .article-image {
  display: inline-block;
  margin: 10px auto;
  text-align: center;
}

.blog-articles .article-image img {
  max-width: 100%;
  height: auto;
}

/* Anpassen der Produkt-Widgets */
.product-widget {
  vertical-align: middle;
  margin: 0;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
}

.product-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

.product-widget h3 {
  font-size: 1.2em;
}

.product-widget .price {
  font-weight: bold;
}

.product-widget .button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #5b534b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Anpassen der Tabellen */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

.article-table th,
.article-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

/* Anpassen der H3-Überschriften */
.article h3 {
  font-size: 1.5em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* CSS für das Inhaltsverzeichnis */
.article-toc {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}

.article-toc h3 {
  font-size: 1.2em;
}

.article-toc ul {
  list-style-type: none;
}

.article-toc li {
  margin-bottom: 5px;
}

.article-toc a {
  text-decoration: none;
}

.article-toc a:hover {
  text-decoration: underline;
}

/* Produktwidget und Textblock nebeneinander anzeigen */
.article .product-widget-wrapper {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.article .product-widget-wrapper--left {
  flex-direction: row;
}

.article .product-widget-wrapper--right {
  flex-direction: row-reverse;
}

.article .product-widget-wrapper .product-widget {
  flex-basis: calc(40% - (30px / 2));
  min-width: 300px;
  box-sizing: border-box;
}

.article .product-widget-wrapper .article-text {
  flex: 1;
  text-align: left;
  padding-top: 0px;
  box-sizing: border-box;
}

/* Mobile Ansicht für Produktwidget und Text */
@media (max-width: 767px) {
  .article .product-widget-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .article .product-widget-wrapper .product-widget,
  .article .product-widget-wrapper .article-text {
    width: 100%;
    max-width: none;
    flex: none;
  }
}

/* "Image with Text" Block */
.image-with-text {
  overflow: hidden;
  margin: 20px 0;
  clear: both;
}

.image-with-text::after {
  content: "";
  display: table;
  clear: both;
}

.image-with-text--right .image-with-text__image {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.image-with-text--left .image-with-text__image {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.image-with-text__image {
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.image-with-text__text {
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  box-sizing: border-box;
}

/* Mobile Ansicht für "Image with Text" Block */
@media (max-width: 767px) {
  .image-with-text--right .image-with-text__image,
  .image-with-text--left .image-with-text__image {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }

  .image-with-text__image {
    width: 100%;
    max-width: 100%;
  }
}

/* Clearfix für nachfolgende Elemente */
.article > *:not(.image-with-text), .article-toc {
  clear: both;
}

/* Entfernen von zusätzlichen Abständen in Textblöcken */
.image-with-text__text > *:first-child {
  margin-top: 0;
}

.image-with-text__text > *:last-child {
  margin-bottom: 0;
}

/* Verwandte Artikel Styling */
.related-article-inline {
  margin: 20px 0;
  font-size: 0.95em;
  color: #555;
  border: 1px solid #e0e0e0; /* Dezente Umrandung */
  padding: 15px; /* Innenabstand */
  border-radius: 5px; /* Abgerundete Ecken */
  background-color: #e5e5e5; /* Sehr heller Hintergrund */
}

.related-article-inline__link {
  color: #97bcde;
  text-decoration: underline;
}

.related-article-inline__link:hover {
  color: #845f9b;
  text-decoration: none;
}

/* Spacer Styling */
.spacer {
  background-color: transparent;
  margin: 0 auto;
}

/* Link Styling */
.article-text a,
.image-with-text__text a,
.text-section__text a,
.product-section__text a {
  color: #abbe7e;
  font-weight: bold;
}

.article-text a:hover,
.image-with-text__text a:hover,
.text-section__text a:hover,
.product-section__text a:hover {
  text-decoration: underline;
}

/* Produktliste Styling */
.article-product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}

.article-product-widget {
  flex-basis: calc(25% - 15px);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .article-product-widget {
    flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .article-product-widget {
    flex-basis: 100%;
  }
}

/* Listen Styling */
.article-text ul, .image-with-text__text ul {
  list-style-type: disc;
  padding-left: 20px;
}

.article-text ol, .image-with-text__text ol {
  list-style-type: decimal;
  padding-left: 20px;
}

/* Listen Styling für neue Abschnitte */
.text-section ul,
.text-section ol,
.product-section ul,
.product-section ol {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
}

/* Credits Styling */
.article-credits {
  font-size: 0.85em;
  color: #b3b3b3;
  margin-top: 20px;
  text-align: left;
}

/* Judge.me Bewertungen Styling */
.judgeme-review-badge {
  margin-top: 10px;
  text-align: center;
}

.judgeme-review-badge .jdgm-rev-widg {
  font-size: 0.9em;
  color: #555;
}

/* Kommentarbereich Styling */
.article-comments-section {
  margin: 40px 0;
  padding: 20px;
  border-top: 1px solid #eee;
}

.comment {
  margin-bottom: 25px;
  padding: 15px;
  background: #e5e5e5;
  border-radius: 8px;
}

.comment-form input,
.comment-form textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ddd;
}

.comment-form button {
  background: #abbe7e;
  color: white;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
}

/* Neuer Text-Abschnitt mit Bild Styling */
.text-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.text-section__image-wrapper {
  max-width: 30%;
  height: auto;
}

.text-section--left {
  flex-direction: row;
}

.text-section--right {
  flex-direction: row-reverse;
}

.text-section__content {
  flex: 1;
}

.text-section__heading {
  margin-bottom: 10px;
}

/* Produktabschnitt Styling */
.product-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.product-section__product-wrapper {
  width: 30%;
}

.product-section--left {
  flex-direction: row;
}

.product-section--right {
  flex-direction: row-reverse;
}

.product-section__content {
  flex: 1;
}

.product-section__heading {
  margin-bottom: 10px;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
  .text-section,
  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .text-section__image-wrapper,
  .product-section__product-wrapper {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .text-section__content,
  .product-section__content {
    width: 100%;
  }
}
.product-widget {
  position: relative;
  /* Bestehende Styles */
}

.product-widget .savings-flag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eb5c6b;
  color: white;
  padding: 5px 10px;
  font-size: 0.9em;
  font-weight: bold;
  z-index: 1;
}

.product-widget .price {
  font-weight: bold;
  font-size: 1.1em;
}

.product-widget .star-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Abstand zwischen Bewertungen und Button */
}

.product-widget .stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 20px;
  font-family: Times;
  line-height: 1;
}

.product-widget .stars::before {
  content: '★★★★★';
  letter-spacing: 3px;
  background: linear-gradient(90deg, #fc0 var(--percent), #ddd var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-widget .rating-count {
  margin-left: 5px;
  font-size: 0.9em;
  color: #666;
}

.product-widget .low-stock {
  color: #eb5c6b;
  font-weight: bold;
}

.product-widget .button-wrapper {
  margin-top: 15px; /* Zusätzlicher Abstand über dem Button */
}
.article-wrapper {
  max-width: 1600px;   /* kannst du später anpassen */
  margin: 0 auto;
}

.article {
  max-width: 100%;
}

.article-image {
  max-width: 900px;      /* gewünschte max. Breite */
  margin: 30px auto;     /* Abstand oben/unten + zentrieren */
}

.article-image img {
  width: 100%;           /* Bild füllt den Figure-Rahmen */
  height: auto;          /* Verhältnis bleibt korrekt */
