/* REPARATIE TOTALA TITLURI - DESKTOP SI MOBIL */

/* Fortam titlurile sa nu mai fie taiate pe niciun dispozitiv */
.product-item h3, 
.product-item-name, 
.product-name, 
.product-name a, 
.product-item-summary h3 {
    white-space: normal !important;
    display: block !important;
    overflow: visible !important;
    height: 70px !important; /* Spatiu generos pentru 3-4 randuri */
    line-height: 1.2 !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important; /* Dezactivam limitarea de randuri */
}

/* Aliniere butoane in partea de jos a cardului de produs */
.product-item, .product-item-summary {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 420px !important; /* Ajusteaza aceasta cifra daca cardul e prea lung/scurt */
}

/* Ajustare specifica pentru telefoane (ecrane sub 768px) */
@media (max-width: 767px) {
    .product-item h3, .product-item-name, .product-name a {
        height: 55px !important; /* Pe mobil textul e mai mic, 55px e de ajuns */
        font-size: 13px !important;
    }
    .product-item, .product-item-summary {
        min-height: 380px !important;
    }
}