.chatbbv-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chatbbv-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.chatbbv-menu:not(.chatbbv-hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chatbbv-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.chatbbv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.chatbbv-whatsapp {
    background-color: #25D366;
}
.chatbbv-whatsapp:hover {
    background-color: #128C7E;
}

.chatbbv-chatwoot {
    background-color: #1f93ff;
}
.chatbbv-chatwoot:hover {
    background-color: #0b7ae6;
}

.chatbbv-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
}

.chatbbv-toggle:hover {
    transform: scale(1.1);
    filter: brightness(0.85);
}
