/* WhatsApp Widget Button Styles - Simple Floating Button */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.whatsapp-widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.whatsapp-widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-widget-button:active {
    transform: scale(0.95);
}

.whatsapp-widget-button i {
    font-size: 32px;
    color: white;
    z-index: 1;
    position: relative;
}

.whatsapp-widget-button .pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 90px;
        right: 15px;
    }
    
    .whatsapp-widget-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-widget-button i {
        font-size: 28px;
    }
    
    .whatsapp-widget-button .pulse-ring {
        width: 56px;
        height: 56px;
    }
}

/* RTL Support */
[dir="rtl"] .whatsapp-widget {
    right: auto;
    left: 20px;
}

@media (max-width: 768px) {
    [dir="rtl"] .whatsapp-widget {
        left: 15px;
        right: auto;
    }
}
