body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: auto;
}

.main-content {
    flex: 1;
}
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
    gap: 20px;
    justify-content: center;
}

.product-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Espace entre l'image et le texte */
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.product-info h2 {
    margin: 0;
    font-size: 16px;
}

.price {
    background: #ff9800;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}
