/* WhatsApp Chat Button Styles */
.whatsapp-chat-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-chat-right {
    right: 20px;
}

.whatsapp-chat-left {
    left: 20px;
}

.whatsapp-chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-chat-button:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-button:active {
    transform: scale(0.95);
}

.whatsapp-chat-button svg {
    width: 32px;
    height: 32px;
}

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .whatsapp-chat-container {
        bottom: 15px;
    }
    
    .whatsapp-chat-right {
        right: 15px;
    }
    
    .whatsapp-chat-left {
        left: 15px;
    }
    
    .whatsapp-chat-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-chat-button svg {
        width: 28px;
        height: 28px;
    }
}

