/* ================================= PRODUKTKACHEL – EINHEITLICHE HÖHE ================================= */ .products-grid .product-item-info { display: flex; flex-direction: column; height: 360px; box-sizing: border-box; } /* ================================= MAGENTO IMAGE-CONTAINER – RICHTIG! ================================= */ .products-grid .product-item-photo { margin: 0; } .products-grid .product-item-photo .product-image-container { height: 200px; /* Fester Bildbereich */ display: flex; align-items: center; justify-content: center; } .products-grid .product-item-photo .product-image-wrapper { position: relative; } .products-grid .product-item-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } /* ================================= TEXTBEREICH ================================= */ .products-grid .product-item-details { padding-top: 30px; display: flex; flex-direction: column; flex-grow: 1; box-sizing: border-box; } /* ================================= PRODUKTNAME – MAX 6 ZEILEN ================================= */ .products-grid .product-item-name { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; text-overflow: ellipsis; line-height: 1.4em; height: calc(1.4em * 6); word-break: break-word; } /* ================================= PREIS – IMMER UNTEN ================================= */ .products-grid .price-box { margin-top: auto; }