/* ================================ PRODUKTLISTE – STABILES GRID ================================ */ .products-grid .product-item-info { display: flex; flex-direction: column; min-height: 340px; /* NIE height verwenden */ padding-top: 4px; padding-bottom: 4px; box-sizing: border-box; } /* ================================ PRODUKTBILD – NIE ABSCHNEIDEN ================================ */ .products-grid .product-item-photo { height: 200px; margin: 0; padding-bottom: 30px; display: flex; align-items: center; justify-content: center; overflow: visible; /* WICHTIG */ box-sizing: border-box; } .products-grid .product-item-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } /* ================================ PRODUKTNAME – MAX 6 ZEILEN ================================ */ .products-grid .product-item-name { margin-top: 30px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; /* MAXIMAL 6 ZEILEN */ overflow: hidden; line-height: 1.4em; max-height: calc(1.4em * 6); word-break: break-word; } /* ================================ PREIS – BLEIBT UNTEN ================================ */ .products-grid .price-box { margin-top: auto; }