    /* Reset / Basis */
    * {
      box-sizing: border-box;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Grundlayout */
    .tpl-wrapper {
      max-width: 95%;
      margin: 0 auto;
      padding: 10px;
      font-family: Arial, sans-serif;
      line-height: 1.4;
    }
	
	.tpl-wrapper + div{
  max-width:95%;
  margin-left:auto;
  margin-right:auto;
  padding-left:10px;
  padding-right:10px;
  box-sizing:border-box;
}

    .tpl-header {
      margin-bottom: 15px;
    }

    .tpl-header-top {
      display: flex;
      align-items: flex-end; /* USPs unten ausrichten */
      justify-content: space-between;
      gap: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ddd;
    }

    .tpl-logo img {
      max-height: 100px;
      width: auto;
    }

    .tpl-usps {
      display: flex;
      gap: 15px;
      font-size: 16px;
      text-align: right;
    }

    .tpl-usp {
      white-space: nowrap;
    }

    .tpl-check {
      color: #36ace2;
      font-weight: bold;
      margin-right: 4px;
    }

    /* Banner */
    .tpl-banner img {
      width: 100%;
      height: auto;
      margin-top: 10px;
	  margin-bottom: 20px;
	  box-shadow:0px 0px 20px rgba(76, 85, 102, 0.04), 0px 40px 40px -32px rgba(76, 85, 102, 0.32);
	  border-radius: 0.8rem;
    }

    /* CONTENT / */
    .tpl-content {
      margin-top: 40px;
      margin-bottom: 15px;
      font-size: 14px;
    }
	h3{
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin: 28px 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #e1e6ec;
}
@media (max-width: 600px){
  h3{
    font-size: 15px;
    margin-top: 22px;
  }
}
}
ul{
  list-style: none;
  margin: 0 0 20px 0;
  padding: 14px 18px;
  background: #f7f9fc4d;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(76, 85, 102, 0.04),
              0 10px 40px -32px rgba(76, 85, 102, 0.32);
}
li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* Check-Icon */
li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #36ace2;
  font-weight: bold;
}

/* letzter Punkt ohne Abstand */
li:last-child{
  margin-bottom: 0;
}
@media (max-width: 600px){
  ul{
    padding: 12px 14px;
  }

  li{
    font-size: 13px;
  }
}
	.tpl-shortdesc {
  background: #fff;
  border: 1px solid #e1e6ec54;
  border-radius: 0.5rem;
  padding: 20px 20px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  box-shadow:0px 0px 20px rgba(76, 85, 102, 0.04), 0 10px 40px -32px rgba(76, 85, 102, 0.32);
}
@media (max-width: 600px) {
  .tpl-shortdesc {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* GALLERIEBILD */
.tpl-gallery {
  margin-bottom: 25px;
  display: flex;
  justify-content: center; /* Bild zentrieren */
}

.tpl-gallery-main {
  max-width: 500px;
  max-height: 500px;
  width: 100%;
  aspect-ratio: 1 / 1;        /* Quadrat als Rahmen */
  overflow: hidden;
  border: 1px solid #e1e6ece0;
  border-radius: 0.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:0px 0px 20px rgba(76, 85, 102, 0.04), 0 10px 40px -32px rgba(76, 85, 102, 0.32);
}

.tpl-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;       /* GANZ WICHTIG: Kein Verzerren */
  display: block;
}
@media (max-width: 600px) {
  .tpl-gallery {
    margin-bottom: 20px;
  }
}	

/* 2 BESCHREIBUNG FÜR FEHLER */	
.tpl-shortdescadd {
  background: #fff;
  border: 2px solid #ff000054;
  border-radius: 0.5rem;
  padding: 20px 20px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;

}
@media (max-width: 600px) {
  .tpl-shortdescadd {
    font-size: 13px;
    padding: 10px 12px;
  }
}	
	
	
	
/* ============================= */
/* PRODUKT ATTRIBUTE CONTAINER */
/* ============================= */

.c-product-attributes__container {
  margin-top: 30px;
  background: #f7f9fc4d;
  border: 1px solid #e1e6ec;
  border-radius: 14px;
  padding: 20px 150px;   /* ← links & rechts deutlich mehr Abstand */
  font-size: 14px;
  box-shadow:0px 0px 20px rgba(76, 85, 102, 0.04), 0 10px 40px -32px rgba(76, 85, 102, 0.32);
}

/* Gruppenüberschriften */
.c-product-attributes__group {
  margin: 25px 0 10px 0;
  font-weight: bold;
  font-size: 15px;
  color: #222;
  border-bottom: 1px solid #dce3ec;
  padding-bottom: 6px;
}

.c-product-attributes__group:first-of-type {
  margin-top: 0;
}

/* Einzelne Attribut-Zeile */
.c-product-attribute {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #dce3ec;
}

.c-product-attribute:last-of-type {
  border-bottom: none;
}

/* Linke Spalte */
.c-product-attribute__label {
  font-weight: bold;
  color: #333;
  flex: 0 0 50%;
}

/* Rechte Spalte */
.c-product-attribute__value {
  text-align: right;
  color: #555;
  flex: 0 0 50%;
}

/* ============================= */
/* MOBILE OPTIMIERUNG           */
/* ============================= */
@media (max-width: 600px) {
  .c-product-attributes__container {
    padding: 15px;
    font-size: 13px;
  }

  .c-product-attribute {
    flex-direction: column;
    gap: 4px;
  }

  .c-product-attribute__label,
  .c-product-attribute__value {
    flex: 100%;
    text-align: left;
  }
}	


/* ===================== */
    /* BENEFITS  */
    /* ===================== */	
	
/* ============================= */
/* BENEFITS GRID – NUR HIER!    */
/* ============================= */

.tpl-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

/* Jeder einzelne Benefit-Block */
.tpl-benefits > div {
  width: calc(50% - 10px);
}

/* Heading */
.c-product-description-benefits__heading {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin: 10 0 6px 0;
}

/* Content-Box */
/* BENEFITS – allgemeines Styling hast du ja schon */
.c-product-description-benefits__content {
  background: #f7f9fc4d;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  display: flex;
  align-items: center;
  box-shadow:0px 0px 20px rgba(76, 85, 102, 0.04), 0 10px 40px -32px rgba(76, 85, 102, 0.32);
}

/* NUR auf größeren Screens eine Mindesthöhe für die Boxen */
@media (min-width: 901px) {
  .tpl-benefits .c-product-description-benefits__content {
    min-height: 220px; /* hier nach Geschmack anpassen */
  }
}



/* ============================= */
/* MOBILE: EINSPALTIG           */
/* ============================= */
@media (max-width: 700px) {
  .tpl-benefits > div {
    width: 100%;
  }

  .c-product-description-benefits__content {
    font-size: 13px;
    padding: 10px 12px;
  }
}



	

/* ============================= */
/* BESCHREIBUNGS-SECTION        */
/* ============================= */

/* H2-Überschrift der Beschreibung */
.product__heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 30px 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #e1e6ec;
}

/* Alle p, die NACH dieser Überschrift kommen */
.product__heading ~ p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 12px 0;
}

/* Hervorhebungen im Text */
.product__heading ~ p b {
  font-weight: bold;
  color: #222;
}

.product__heading ~ p i {
  font-style: italic;
}

/* Etwas kompakter auf kleineren Screens */
@media (max-width: 600px) {
  .product__heading {
    font-size: 16px;
    margin-top: 25px;
  }

  .product__heading ~ p {
    font-size: 13px;
    line-height: 1.6;
  }
}

	
	
	
	/* ============================= */
/* TECHNOLOGIEN – SAFE SELECTOR  */
/* ============================= */

/* Container direkt NACH .tpl-content (genau dein Technologien-Wrapper) */
.product-technologies__advantage{
  float: left;
  width: calc(50% - 10px);
  margin: 0 20px 20px 0;
  box-sizing: border-box;

  background: #f7f9fc4d;
  border: 1px solid #e1e6ec;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0px 0px 20px rgba(76, 85, 102, 0.04),
              0 10px 40px -32px rgba(76, 85, 102, 0.32);
}

/* Jede 2. Box: rechte Spalte -> kein rechter Rand */
.product-technologies__advantage:nth-child(2n){
  margin-right: 0;
}

/* Neue Zeile bei ungeraden Boxen */
.product-technologies__advantage:nth-child(2n+1){
  clear: left;
}

/* Titel (Chip) */
.product-technologies__title{
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #222;
  background: #fff;
  border: 1px solid #e1e6ec;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}

/* Beschreibung */
.product-technologies__description{
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* WICHTIG: Footer/alles danach soll unter den Floats starten */
.tpl-footer{
  clear: both;
}

/* MOBILE: 1-spaltig */
@media (max-width: 700px){
  .product-technologies__advantage{
    float: none;
    width: 100%;
    margin: 0 0 14px 0;
  }

  .product-technologies__description{
    font-size: 13px;
    line-height: 1.6;
  }
}

	
	
	
	
	
	
	
	
	
/* FOOTER */
    .tpl-footer {
      font-size: 11px;
      color: #777;
      text-align: center;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }

    /* ===================== */
    /* Responsive Anpassung  */
    /* ===================== */
    @media (max-width: 600px) {
      .tpl-header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .tpl-usps {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
        font-size: 14px;
      }
    }
	
	.tpl-product-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #222;
  line-height: 1.3;
  text-align:center;
}
	@media (max-width: 600px) {
  .tpl-product-title {
    font-size: 18px;
  }
}	