.wcd-aria-bubble {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 18px 8px 9px;
    border-radius: 30px;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #173b57, #18a999);
    box-shadow: 0 10px 28px rgba(23, 59, 87, .30);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, visibility .18s ease;
}

.wcd-aria-bubble.aria-chat-open {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(.92);
}

.wcd-aria-bubble:hover,
.wcd-aria-bubble:focus {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(23, 59, 87, .38);
}

.wcd-aria-bubble.is-disabled {
    background: linear-gradient(135deg, #58656f, #788994);
}

.wcd-aria-bubble-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    font-size: 20px;
}

.wcd-aria-bubble-icon::after {
    content: '';
    position: absolute;
    right: 1px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #173b57;
    border-radius: 50%;
    background: #70f0c1;
}

.wcd-aria-bubble.is-disabled .wcd-aria-bubble-icon::after {
    background: #ffd166;
    border-color: #58656f;
}

.wcd-aria-bubble-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.wcd-aria-bubble-copy strong { font-size: 14px; }
.wcd-aria-bubble-copy small { margin-top: 4px; color: rgba(255,255,255,.82); font-size: 11px; }

@media (max-width: 767px) {
    .wcd-aria-bubble { right: 14px; bottom: 16px; min-height: 54px; padding: 6px; }
    .wcd-aria-bubble-icon { width: 42px; height: 42px; }
    .wcd-aria-bubble-copy { display: none; }
}
