@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: #2c3e50;
    margin: 0;
    padding: 0;
}

/* --- Bouton Retour --- */
.retour {
    margin: 40px 0;
    text-align: center;
}

.retour a {
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.retour a:hover {
    background-color: #084fc1;
    transform: translateY(-2px);
}

/* --- Produits --- */
.products-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.product-category {
    margin-bottom: 60px;
}

.product-category h2 {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.product-list li {
    list-style: none;
    width: 600px;
    height: 650px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-list li:hover {
    transform: scale(1.02);
}

.product-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-list img:hover {
    transform: scale(1.05);
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-top: 10px;
}

/* --- Warning Message --- */
.warning {
    background-color: #dc3545;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
}

/* --- Formulaire Airtable --- */
.form-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 150%;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .product-list {
        flex-direction: column;
        gap: 20px;
    }

    .product-list li {
        width: 100%;
        height: auto;
    }

    .product-category h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.2rem;
    }
}