/*
Theme Name: Envo Storefront Child Animated
Template: envo-storefront
Version: 1.2
*/

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.whatsapp-float {
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    animation: bounceIn 0.8s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebd5a;
}

.whatsapp-label {
    background-color: #25d366;
    color: white;
    border-radius: 20px;
    padding: 8px 14px;
    margin-right: 10px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-container:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
