.stea-social-chat-buttons {
    position: fixed;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 12px;
    bottom: 32px;
    right: 24px;
    left: auto;
    align-items: flex-end;
    pointer-events: auto;
}

.stea-social-chat-buttons.stea-style-style2 {
    gap: 0;
    flex-direction: column;
}

.stea-social-chat-buttons.stea-style-style2.stea-layout-inline {
    flex-direction: column;
}

.stea-social-chat-buttons.stea-position-left { align-items: flex-start; }

.stea-social-chat-buttons.stea-position-right { align-items: flex-end; }

.stea-social-chat-buttons.stea-layout-inline {
    flex-direction: row;
    align-items: center;
}

.stea-social-chat-buttons.stea-layout-inline.stea-position-left { justify-content: flex-start; }

.stea-social-chat-buttons.stea-layout-inline.stea-position-right { justify-content: flex-end; }

.stea-social-chat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1bd741;
    color: #ffffff;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    will-change: transform;
}

.stea-social-chat-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stea-social-chat-toggle-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.stea-social-chat-toggle .stea-toggle-state-close {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.stea-style-style2.is-open .stea-social-chat-toggle .stea-toggle-state-open {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.stea-style-style2.is-open .stea-social-chat-toggle .stea-toggle-state-close {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.stea-style-style2 .stea-social-chat-buttons__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, margin-bottom 0.25s ease;
}

.stea-style-style2.is-open .stea-social-chat-buttons__list {
    max-height: 100vh;
    margin-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.stea-style-style2 .stea-social-chat-buttons__list .stea-social-chat-button {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: var(--stea-delay, 0s);
}

.stea-style-style2.is-open .stea-social-chat-buttons__list .stea-social-chat-button {
    opacity: 1;
    transform: translateY(0) scale(1);
}



.stea-social-chat-button:hover,
.stea-social-chat-button:focus {
    background-color: #179a44;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.stea-social-chat-button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.stea-social-chat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.stea-social-chat-icon svg {
    width: 1em;
    height: 1em;
}

.stea-social-chat-label {
    display: inline-block;
    white-space: nowrap;
}

/* Label visibility is controlled directly via Kit selectors */

@media (max-width: 767px) {
    .stea-social-chat-buttons {
        bottom: 24px;
    }

    .stea-social-chat-buttons.stea-layout-inline {
        gap: 12px;
    }

    .stea-social-chat-button {
        padding: 0 16px;
        font-size: 14px;
    }
}
