/* ================================= PRODUKTKACHEL – EXAKT GLEICHE HÖHE ================================= */ .products-grid .product-item-info { display: flex; flex-direction: column; height: 360px; /* einheitliche Kartenhöhe */ padding: 8px 0; box-sizing: border-box; overflow: hidden; } /* ================================= PRODUKTBILD – FEST + ZENTRIERT ================================= */ .products-grid .product-item-photo { height: 200px; /* fester Bildbereich */ margin: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; } .products-grid .product-item-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } /* ================================= ABSTAND ZWISCHEN BILD & TEXT ================================= */ .products-grid .product-item-details { padding-top: 30px; /* HIER der Abstand, nicht im Bild */ 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); /* immer gleiche Texthöhe */ word-break: break-word; } /* ================================= PREIS – BLEIBT UNTEN ================================= */ .products-grid .price-box { margin-top: auto; }

Suchergebnisse für: "310 500"