/* Simple WhatsApp Button CSS - Fixed */

/* Remove any conflicting styles */
.whatsapp-button {
    all: unset;
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    width: 48px !important;
    height: 48px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5) !important;
    outline-offset: 2px !important;
}

.whatsapp-button svg {
    width: 32px !important;
    height: 32px !important;
    fill: white !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 48px !important;
        height: 48px !important;
        top: 15px !important;
        right: 15px !important;
        bottom: auto !important;
        left: auto !important;
    }
    
    .whatsapp-button svg {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 48px !important;
        height: 48px !important;
        top: 10px !important;
        right: 10px !important;
        bottom: auto !important;
        left: auto !important;
    }
    
    .whatsapp-button svg {
        width: 24px !important;
        height: 24px !important;
    }
}
