/* Titelbereich (h1/h3 mit Bild) */
.kstm-category-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    font-size: 40px;
    color: #444444;
    flex-wrap: nowrap;          /* kein Zeilenumbruch */
    white-space: nowrap;        /* kein Umbruch im Text */
    overflow: hidden;           /* bei zu langem Text */
    text-overflow: ellipsis;    /* Text mit ... abschneiden */
}

.kstm-category-title span {
    margin-right: 10px;         /* Abstand zwischen Text und Bild */
    flex-shrink: 1;             /* Text darf schrumpfen */
}

/* Bild im Titel (Kategorie) */
.kstm-category-title img.cat-image-for-title {
    max-width: 75px;
    max-height: 75px;
    margin-left: 10px;
    vertical-align: middle;
    flex-shrink: 0;             /* Bild soll nicht schrumpfen */
}

/* Subtitle unterhalb des Titels */
h2.kstm-category-subtitle {
    font-family: tornac, sans-serif;
	font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #000000;
    margin-top: 0.3em;
    margin-bottom: 0;
}

/* Zusatzuntertitel */
.kstm-category-subtitle-1 {
    font-family: tornac, sans-serif;
	font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #000000;
    margin-top: 0.1em;
}

/* Sicherstellen, dass WooCommerce-Header nicht kollidiert */
header.woocommerce-products-header {
    display: block;
}

/* Optional: Styling für WooCommerce Produkttitel auf Produktdetailseiten */
.single-product .product_title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .kstm-category-title {
    font-size: 20px;           /* Schrift kleiner */
    margin: 0.2em 0;
    flex-wrap: nowrap;          /* kein Zeilenumbruch */
    white-space: nowrap;        /* kein Umbruch im Text */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .kstm-category-title span {
    margin-right: 8px;
    flex-shrink: 1;
  }

  .kstm-category-title img.cat-image-for-title {
    max-width: 48px;
    max-height: 48px;
    margin-left: 6px;
    flex-shrink: 0;
  }

  h2.kstm-category-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0.15em;
    margin-bottom: 0;
  }

  .kstm-category-subtitle-1 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 0.05em;
  }

  .single-product .product_title {
    font-size: 22px;
    gap: 6px;
  }
}

/* Für ganz kleine Bildschirme (< 400px) noch kompakter */
@media (max-width: 400px) {
  .kstm-category-title {
    font-size: 18px;
  }

  .kstm-category-title img.cat-image-for-title {
    max-width: 36px;
    max-height: 36px;
    margin-left: 4px;
  }

  h2.kstm-category-subtitle {
    font-size: 14px;
  }

  .kstm-category-subtitle-1 {
    font-size: 12px;
  }

  .single-product .product_title {
    font-size: 18px;
    gap: 4px;
  }
}
