/* WhatsApp Widget Styles */
#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
}

#whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    #whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    #whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    #whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}
