/* Existing styles */
#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.u-section-2 .u-custom-html-2 {
	

.product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    max-width: 200px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product p {
    margin: 5px 0;
}

.product p:last-child {
    font-weight: bold;
    color: #333;
}

/* New styles for product details page */

.product-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
}

.product-table td {
    padding: 10px;
}

.left-cell {
    background-color: #ff9999; /* Couleur pour la première case */
}

.center-cell {
    background-color: #99ccff; /* Couleur pour la case centrale */
    text-align: center;
    vertical-align: middle;
}

.right-cell {
    background-color: #99ff99; /* Couleur pour la troisième case */
}

.product-image {
    max-width: 100%;
    height: auto;
}

.description-cell {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #ddd;
}

.description-cell h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.description-cell p {
    margin: 5px 0;
    font-size: 1.2em;
}

a {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
}