/* Delphi chat bubble — custom icon & tooltip */

#delphi-bubble-trigger {
    width: 65px !important;
    height: 65px !important;
    background: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: visible;
}

#delphi-bubble-trigger[data-is-open="true"] {
    background: transparent !important;
    background-image: none !important;
}

#delphi-bubble-trigger .sc-chat-icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

#delphi-bubble-wrapper {
    position: relative;
}

#delphi-chat-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    bottom: 14px;
    max-width: 230px;
    padding: 10px 14px;
    background: #1A1A2E;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
    white-space: normal;
    z-index: 1;
}

#delphi-chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 18px;
    border: 6px solid transparent;
    border-left-color: #1A1A2E;
}

#delphi-bubble-wrapper:hover #delphi-chat-tooltip,
#delphi-chat-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
