
        /* Style de base */
     
        .share-btn {
            
            cursor: pointer;
            transition: all 0.3s ease;
            padding:2px;
        }
        
        .share-btn:hover {
            transform: translateY(-2px); 
        }
        
        /* Popup */
        .share-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .share-popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .share-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .share-popup-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }
        
        .close-popup {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: color 0.2s;
        }
        
        .close-popup:hover {
            color: #333;
        }
        
        .social-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .social-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s;
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
        }
        
        .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 8px;
            font-size: 24px;
            color: white;
        }
        
        .icon-label {
            font-size: 12px;
            text-align: center;
        }
        
        /* Couleurs des réseaux */
        .whatsapp { background-color: #25D366; }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1DA1F2; }
        .instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80); }
        .linkedin { background-color: #0077B5; }
        .pinterest { background-color: #E60023; }
        .reddit { background-color: #FF5700; }
        .telegram { background-color: #0088cc; }
    