.floating-consult-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: fixed;
    right: 0;
    bottom: 40px;
    z-index: 9999;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-consult-stack.-is-hide {
    transform: translate3d(calc(100% + 16px), 0, 0);
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .floating-consult-stack {
        gap: 10px;
    }
}

.floating-consult-btn {
    background: #F1F9FE 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 4px #00000029;
    border-radius: 12px 0px 0px 12px;
    padding: 19px 9px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 182px;
    width: 100%;
}

.floating-consult-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
}

.floating-consult-pill {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.floating-consult-label {
    font-size: 12px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}

.floating-consult-btn img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    flex-shrink: 0;
}

.floating-consult-btn > span:not(.floating-consult-copy) {
    font-size: 12px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}
