#produit .choix-produits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
}

#produit .item-produit {
    width: 300px;
    height: 350px;
    margin: 14px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

#produit .item-produit:hover {
    transform: translateY(-6px);
    border-color: var(--steel);
    box-shadow: var(--shadow-lg);
}

#produit img {
    width: 100%;
    height: 65%;
    display: block;
}

#produit .choix-produits p {
    font-family: var(--font-display);
    color: var(--blue-theme);
    font-size: 20px;
    font-weight: 700;
}

#produit .choix-produits a {
    text-decoration: none;
    margin: 20px 0;
}
