.whatsapp-floating-widget-b11cab8a {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 9999;
    font-family: sans-serif;
    transition: transform 0.4s cubic-bezier(0.36, 0, 0.66, -0.56), opacity 0.4s ease;
}

.whatsapp-floating-widget-b11cab8a.widget-hidden {
    transform: translateX(150%);
    opacity: 0;
}

.whatsapp-close-btn-b11cab8a {
    position: absolute;
    top: -10px;
    right: -5px;
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
    transition: all 0.2s ease;
}

.whatsapp-close-btn-b11cab8a:hover {
    background: #f5f5f5;
    color: #333;
    transform: scale(1.1);
}

.whatsapp-bubble-b11cab8a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-message-b11cab8a {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #333;
    position: relative;
}

.whatsapp-message-b11cab8a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-icon-b11cab8a {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-icon-b11cab8a:hover {
    transform: scale(1.1);
}