/* Container principal */
.soutien-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Encadrement du texte d'introduction */
.introduction {
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid #333;
    /* Bordure plus épaisse */
    padding: 20px;
    border-radius: 8px;
    background-color: #fcfcfc;
}

/* Ajout du titre en gras et plus grand via CSS */
.introduction::before {
    content: "Soutenez votre Fablab";
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

.introduction p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Structure du tableau */
.tableau-produits {
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
}

.produit-row {
    display: flex;
    border-bottom: 1px solid #000;
    min-height: 150px;
}

.produit-row:last-child {
    border-bottom: none;
}

/* Alternance des couleurs pastel */
/* Lignes impaires (1, 3, 5...) */
.produit-row:nth-child(odd) {
    background-color: #e3f2fd;
    /* Bleu pastel très clair */
}

/* Lignes paires (2, 4, 6...) */
.produit-row:nth-child(even) {
    background-color: #f1f8e9;
    /* Vert pastel très clair */
}

/* Colonnes */
.col-description,
.col-image,
.col-prix {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #000;
}

.col-description {
    flex: 2;
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;
}

.col-image {
    flex: 1.5;
}

.col-image img {
    max-width: 100%;
    max-height: 120px;
    border-radius: 4px;
    /* Optionnel : adoucit les coins des images */
}

.col-prix {
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    border-right: none;
    text-align: center;
}

/* Prix et Infos */
.info-haut {
    font-size: 0.95rem;
    font-style: italic;
}

.prix-bas {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d32f2f;
    /* Un rouge un peu plus doux */
    margin-top: 10px;
}

/* Adaptabilité mobile */
@media (max-width: 768px) {
    .produit-row {
        flex-direction: column;
    }

    .col-description,
    .col-image,
    .col-prix {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}