:root {
  --green: #649d29; /* Blau */
  /*   --secondary-color: #e74c3c; 
  --text-color: #333333;       */
}

/* Produkt-Container: auf 3 Spalten verteilt */
.woocommerce .wooWrapper .product {
  grid-column: span 12; /* 12 / 3 = 4 Spalten je Produkt */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 24px 15px;
}

.product-grid.category-19 div.product-col.col-1 {
  grid-column: span 3;
}
.product-grid.category-19 div.product-col.col-2 {
  grid-column: span 6;
}

.product-grid.category-19 div.product-col.col-3 {
  grid-column: span 3;
}

div.product-col {
  grid-column: span 4; /* 12 / 3 = 4 */
}

.product-col h1 {
  color: var(--green) !important;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-size: 28px;
}

.woocommerce-product-details__short-description {
  color: var(--green) !important;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
