.wa-floating-button {
                position: fixed;
                bottom: 25px;
                right: 25px; /* يظهر على اليمين. يمكنك تغييرها إلى left: 25px إذا أردت ظهوره على اليسار */
                width: 60px;
                height: 60px;
                background-color: #25d366;
                color: white;
                border-radius: 50%;
                text-align: center;
                box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
                z-index: 9999;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .wa-floating-button:hover {
                transform: scale(1.1);
                box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.35);
                color: white;
            }
            .wa-floating-button svg {
                width: 35px;
                height: 35px;
                fill: currentColor;
            }
            @media (max-width: 991px) {
                .wa-floating-button,
                .whatsapp-float,
                .whatsapp-btn,
                #whatsapp-button,
                #whatsapp-widget {
                    display: none !important;
                }
            }