
        /* Style Général */
        body {
            font-family: Arial, sans-serif;
            width: 100vw;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: #fff8e5;
            color: #333;



        header {
            background-color: #f0b444;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
        }
    
        header img {
            width: 280px;
            height: auto;
        }
    
        h1, h2, h3 {
            margin: 0.5rem 0;
        }
    
        nav {
            background: #ffcc66;
            padding: 1rem;
            text-align: center;
        }
    
        nav a {
            color: #333;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: bold;
        }
    
        nav a:hover {
            color: #f0b444;
            text-decoration: underline;
        }
    
        .container {
            padding: 2rem;
        }
    
        .section {
            margin-bottom: 2rem;
        }
    
        .product-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
    
        .product-card img {
            max-width: 200px;
            height: auto;
            cursor: pointer;
        }
    
        .popup {
            display: none;
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translateX(-50%);
            transform: translateY(-100%);
            background-color: #f0b444;
            color: #fff;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 100;
        }
 
        .popup img {
            max-width: 600px;
            /*height: auto;*/
            border-radius: 8px;
        }
    
        .product-card:hover .popup {
            display: block;
        }
    
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1rem 0;
            margin-top: 2rem;
        }
    
        footer a {
            color: #ffcc66;
            text-decoration: none;
        }
    
        footer a:hover {
            text-decoration: underline;
        }
    
        /* Bouton */
        .btn {
            background-color: #f0b444;
            color: white;
            padding: 0.5rem 1rem;
            text-decoration: none;
            border-radius: 5px;
        }
    
        .btn:hover {
            background-color: #ffcc66;
            color: #333;
        }
    


        .product-card img {
            max-width: 200px;
            height: auto;
        }

        .image-container {
            position: relative;
            display: inline-block;
        }

        .image-popup {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            border: 2px solid #333;
   /*         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/

   
            background-color: #f0b444;
            color: #fff;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);


        }

        .image-container:hover .image-popup {
            display: block;
        }

        .image-container img {
            max-width: 100px;
            cursor: pointer;
        }

        .image-popup img {
            max-width: 400px;
            max-height: 300px;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9;
        }

        .image-container:hover ~ .overlay {
            display: block;
        }
        
