        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        video{
            object-fit: cover;
            left: 50%;
            min-height: 100%;
            min-width: 100%;
            position: fixed;
            top: 50%;
            transform: translate(-50%, -50%);}
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
            margin-top: 20px;
            font-size: 1.5em;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        #shopbanner{
            cursor: pointer;
            border-radius: 8px;
            box-shadow: 2px 2px 2px 2px #ccc;
        }
        .form-section {
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .form-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            color: #34495e;
            font-size: 1.3em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: flex;
            align-items: center;
        }

        /*.section-title::before {
            content: '▶';
            margin-right: 10px;
            color: #3498db;
        }*/

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.95em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="number"]:focus,
        textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            transform: translateY(-1px);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .product-item {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 20px;
            border-radius: 12px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .product-item:hover::before {
            left: 100%;
        }

        .product-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #3498db;
        }

        .product-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .product-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: #3498db;
        }

        .product-checkbox label {
            margin: 0;
            cursor: pointer;
            font-weight: 600;
            color: #2c3e50;
        }

        .quantity-input {
            margin-top: 10px;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            transform: translateY(-10px);
        }

        .quantity-input.visible {
            opacity: 1;
            max-height: 80px;
            transform: translateY(0);
        }

        .quantity-input label {
            font-size: 0.9em;
            color: #34495e;
            margin-bottom: 5px;
        }

        .quantity-input input {
            margin-top: 5px;
        }

        .required {
            color: #e74c3c;
        }

        .recaptcha-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }

        .submit-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
            background: linear-gradient(135deg, #2980b9, #3498db);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
            transform: none;
        }

        .loading {
            position: relative;
            color: transparent;
        }

        .loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .success-message {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            display: none;
            animation: slideIn 0.5s ease-out;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.9em;
            margin-top: 5px;
            display: none;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 20px;
                margin: 10px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

                /* Styles pour le bloc des réseaux sociaux */
        .social-media-block {
            text-align: center;
            padding: 30px 20px;
            background-color: #f9f9f9; /* Arrière-plan léger */
            border-top: 2px solid #e0e0e0; /* Bordure supérieure subtile */
            border-bottom: 2px solid #e0e0e0; /* Bordure inférieure subtile */
            margin: 40px auto; /* Marge pour centrer et espacer */
            max-width: 600px; /* Largeur maximale du bloc */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
            border-radius: 8px; /* Coins légèrement arrondis */
        }

        .social-media-block p {
            font-size: .7em;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .social-icons {
            display: flex; /* Utilise Flexbox pour aligner les icônes */
            justify-content: center; /* Centre les icônes horizontalement */
            gap: 25px; /* Espacement entre les icônes */
        }

        .social-icons a {
            color: #555; /* Couleur de base des icônes */
            font-size: 2.5em; /* Taille des icônes */
            transition: color 0.3s ease, transform 0.3s ease; /* Transition douce au survol */
            text-decoration: none; /* Supprime le soulignement des liens */
        }

        /* Couleurs spécifiques et effets de survol */
        .social-icons a.facebook:hover {
            color: #3b5998; /* Bleu Facebook */
            transform: translateY(-3px); /* Petit effet de soulèvement */
        }

        .social-icons a.instagram:hover {
            color: #E1306C; /* Rose Instagram */
            transform: translateY(-3px);
        }

        .social-icons a.twitter:hover {
            color: #1DA1F2; /* Bleu Twitter/X */
            transform: translateY(-3px);
        }

            /* Styles pour l'encart RGPD */
        #rgpd-consent-banner {
            position: fixed;
            bottom: 20px; /* Distance du bas de la page */
            left: 50%;
            transform: translateX(-50%); /* Centre le bandeau horizontalement */
            width: 90%; /* Largeur sur mobile */
            max-width: 600px; /* Largeur maximale sur desktop */
            background-color: rgba(34, 34, 34, 0.95); /* Fond gris très foncé semi-transparent */
            color: #f0f0f0; /* Texte clair */
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Ombre douce */
            font-family: Arial, sans-serif;
            font-size: 0.95em;
            line-height: 1.4;
            display: flex; /* Utilise flexbox pour aligner le contenu */
            flex-direction: column; /* Empile les éléments verticalement sur mobile */
            align-items: center; /* Centre les éléments horizontalement */
            z-index: 1000; /* Assure que le bandeau est au-dessus des autres éléments */
        }

        #rgpd-consent-banner p {
            margin: 0 0 15px 0; /* Marge sous le paragraphe */
            text-align: center;
        }

        #rgpd-consent-banner .buttons {
            display: flex;
            gap: 10px; /* Espacement entre les boutons */
            justify-content: center; /* Centre les boutons */
            width: 100%; /* S'étale sur toute la largeur disponible */
        }

        #rgpd-consent-banner button {
            background-color: #4CAF50; /* Vert pour accepter */
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9em;
            transition: background-color 0.3s ease;
            flex-grow: 1; /* Permet aux boutons de prendre la largeur disponible */
            max-width: 120px; /* Largeur maximale pour les boutons */
        }

        #rgpd-consent-banner button:hover {
            background-color: #45a049;
        }

        #rgpd-consent-banner a {
            color: #87CEEB; /* Bleu ciel pour le lien */
            text-decoration: none;
            margin-left: 15px; /* Espacement avec le bouton accepter */
            padding: 10px 0; /* Padding pour le clic */
            transition: color 0.3s ease;
            flex-grow: 1;
            text-align: center;
            max-width: 120px;
        }

        #rgpd-consent-banner a:hover {
            color: #6495ED;
        }

        /* Media queries pour un meilleur affichage sur les grands écrans */
        @media (min-width: 768px) {
            #rgpd-consent-banner {
                flex-direction: row; /* Aligne les éléments sur une ligne */
                justify-content: space-between; /* Espace le contenu */
                align-items: center;
                padding: 15px 30px;
            }

            #rgpd-consent-banner p {
                margin: 0;
                text-align: left;
                flex-grow: 1; /* Permet au paragraphe de prendre plus d'espace */
            }

            #rgpd-consent-banner .buttons {
                flex-direction: row; /* Maintient les boutons sur une ligne */
                width: auto; /* Laisse les boutons prendre leur largeur naturelle */
            }

            #rgpd-consent-banner button,
            #rgpd-consent-banner a {
                flex-grow: 0; /* Désactive la croissance des boutons/liens */
            }
        }