/** Shopify CDN: Minification failed

Line 40:17 Expected identifier but found whitespace
Line 40:19 Unexpected "{"
Line 40:29 Expected ":"
Line 41:15 Expected identifier but found whitespace
Line 41:17 Unexpected "{"
Line 41:27 Expected ":"
Line 41:43 Expected identifier but found "10"

**/
 /* Grid für Produktkarten */
  .product-comparison .grid--4-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }

  .product-comparison {
    padding-bottom: 50px;
    padding-top: 25px;
  }

  /* Produktkarten */
  .product-comparison .comparison-item {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s ease;
  }

  .product-comparison .comparison-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Aktuelles Produkt */
  .product-comparison .comparison-item--highlight {
    border-color: {{ settings.color_accent }};
    background: {{ settings.color_accent }}10;
  }

  /* Produktbild */
  .comparison-item__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }

  /* Rösterei-Name */
  .comparison-item__vendor.small {
    font-size: 1.75rem;
    color: #777;
    text-transform: uppercase;
    margin: 0;
  }

  /* Produkt-Titel */
  .comparison-item__title {
    font-size: 1.9rem;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  /* Links ohne Unterstreichung */
.product-comparison .comparison-item a,
.product-comparison .comparison-item a:visited,
.product-comparison .comparison-item a:hover,
.product-comparison .comparison-item a:active {
  text-decoration: none !important;
  color: inherit !important;
}

  /* Vergleichstabelle */
  .comparison-table-wrapper {
        background: rgb(249 248 246 / 1.0);
    overflow-x: auto;
    padding: 2rem;
    padding-top: 0;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5rem;
    background: rgb(249 248 246 / 1.0);
  }

  .comparison-table th,
  .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    vertical-align: top;
    min-width: 170px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    width: 130px;
  }

  .comparison-table img {
    max-height: 250px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .comparison-table .small {
    font-size: 1.2rem;
    font-weight: normal;
    color: #777;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 0.25rem;
        line-height: 1.8rem;
  }

  .comparison-table .comparison-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    color: #333;
    line-height: 2rem;
              display: -webkit-box;
  -webkit-line-clamp: 2;      /* Anzahl der Zeilen */
  -webkit-box-orient: vertical;
  overflow: hidden;
  }

  @media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
      padding: 8px;
    }

    .comparison-table .comparison-title {
      font-size: 1.2rem;
          line-height: 1.4rem;
    }

    .comparison-item__title {
      font-size: 1.25rem;
    }

    .comparison-item__vendor.small {
      font-size: 0.8rem;
    }
  }

    .product-comparison .comparison-table th a,
  .product-comparison .comparison-table th a:visited,
  .product-comparison .comparison-table th a:hover,
  .product-comparison .comparison-table th a:active {
    text-decoration: none !important;
  }

  /* Falls du auch die <p class="small"> und <p class="comparison-title"> außerhalb eines <a> hast: */
  .product-comparison .comparison-table th .small,
  .product-comparison .comparison-table th .comparison-title {
    text-decoration: none;
  }

/* Ganz-Ansicht, aber zentriert */
.product-comparison,
.comparison-table-wrapper {
  position: relative;
  /* schiebt den Block so, dass er an den Viewport-Rand anschließt */
  left: calc(50% - 50vw);
  width: 100vw;
  box-sizing: border-box;
  /* optionaler Seitenabstand */
}

  .comparison-table-wrapper {
      width: 75vw;
    max-width: 75vw;
    justify-self: center;
  }

  .comparison-table-wrapper {
  overflow-x: visible; /* oder: schlicht komplett weglassen */
}

  .comparison-table {
      width: 100%;            /* füllt maximal den Eltern-Container aus */
  table-layout: fixed;    /* spaltet alle Spalten gleichmäßig auf */
  }

  .comparison-table thead tr th:first-child {
  border: none !important;
  background: transparent !important;
}

  .comparison-table thead th {
  border: none !important;
  background: transparent !important;
}

  .comparison-table tbody tr:last-child td {
  border: none !important;
  background-color: transparent !important;
}

  /* Zweite Spalte nur in den unteren (tbody-)Zellen anders färben */
.product-comparison .comparison-table tbody td:nth-child(2) {
  background-color: #f9f6f0;     /* hier Deine Wunsch-Farbe */
}

/* 1. Scrollbarer Wrapper */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 2. Tabelle nimmt so viel Breite ein, wie die Summe aller min-widths verlangt */
.comparison-table {
  width: max-content;     /* ⇢ schrumpft nicht unter die Summe der min-widths */
  table-layout: fixed;    /* ⇢ verteilt diese Gesamtbreite gleichmäßig auf alle Spalten */
}

/* 3. Jede Zelle erhält eine Mindestbreite */
.comparison-table th,
.comparison-table td {
  min-width: 100px;       /* deine Wunsch-Mindestbreite */
  max-width: 300px;
}


  .product-comparison {
    position: relative;
    left: auto;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.75rem;  /* optionaler Seitenabstand */
    padding-right: 0.75rem;
  }

  .comparison-table-wrapper {
    width: 100vw;
    max-width: 100vw;
        left: auto;
  }


    @media (max-width: 768px) {
  .product-comparison {
    position: relative;
    /* zentriert das Element relativ zum Viewport */
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    /* bei Bedarf Padding zurücksetzen */
    padding-left: 0;
    padding-right: 0;
  }
      .comparison-table-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
      }

      .comparison-table th,
.comparison-table td {
  max-width: 130px;      
}

      .comparison-table {
        font-size: 0.9rem;
      }

        .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 100px;
  }

          .rating-star {
            font-size: 1.6rem !important;
          }

                .rating-count {
            font-size: 1.5rem !important;
          }

      .quick-add__submit {
        font-size: 1.3rem;
      }
    }