.quick-chat-wrap {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 8px;
}
.quick-chat-tooltip {
    background: #fff;
    color: #111827;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 14px;
    font-size: 14px;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform-origin: bottom right;
    transition: transform 0.18s ease, opacity 0.18s ease;
    position: relative;
}
.quick-chat-tooltip.hidden {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
}
.quick-chat-tooltip .tooltip-text {
    flex: 1;
}
.quick-chat-tooltip .tooltip-close {
    background: transparent;
    border: 0;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
}
.quick-chat-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(180deg, #25d366, #128c7e);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.18);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.quick-chat-btn:active {
    transform: scale(0.98);
}
.quick-chat-btn .fa-whatsapp {
    font-size: 22px;
}
.quick-chat-tooltip::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    bottom: -5px;
    box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
    .quick-chat-tooltip {
        max-width: 180px;
        font-size: 13px;
    }
    .quick-chat-btn {
        width: 48px;
        height: 48px;
    }
}
