/* Pour 5 colonnes */
@media (min-width: 992px) {
    .col-lg-2, .col-md-5th {
        flex: 0 0 auto;
        width: 20%; /* 100% divisé par 5 pour une grille à 5 colonnes */
    }
}

.image-container {
    height: 200px; /* Hauteur maximale de l'image */
    overflow: hidden; /* Masque tout ce qui dépasse de la hauteur */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-height: 100%;
    object-fit: cover;
}

/*.card-img-top{
    max-height: 200px;
}*/

/* Couper le titre à 3 lignes */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limite à 3 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.8em; /* Ajuster en fonction de la hauteur des lignes */
}

/* Ajuster la taille des badges */
.badge {
    font-size: 0.875rem;
    padding: 0.5em;
}

/* Centrer les éléments */
.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ajustement des étoiles et avis */
.product-card .card-body .text-warning {
    font-size: 1.25rem;
}

.product-card .card-body .badge {
    font-size: 0.8rem;
}
