#whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Moved to left */
    z-index: 10000;
}

#wa-icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: block;
}

#wa-icon:hover {
    transform: scale(1.1);
}

/* Minimal Label (Optional - replaces the big popup) */
.wa-tooltip {
    position: absolute;
    left: 70px;
    top: 15px;
    background: #25D366;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

#whatsapp-widget:hover .wa-tooltip {
    opacity: 1;
}