.widget-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.widget-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.widget-contact.is-open .widget-contact-channels {
    max-height: 300px;
    opacity: 1;
}

.widget-contact-channel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: var(--culoare-fundal);
    border: 1px solid var(--culoare-border);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--culoare-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: right;
}

.widget-contact-channel-icon {
    flex-shrink: 0;
}

.widget-contact-whatsapp .widget-contact-channel-icon {
    color: #25d366;
}

.widget-contact-channel-icon-img,
.widget-contact-channel-icon-preset {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.widget-contact-channel-icon-img {
    object-fit: contain;
}

.widget-contact-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--culoare-accent);
    color: #ffffff;
    border: none;
    border-radius: 28px;
    padding: 14px 22px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.widget-contact-trigger:hover {
    background: var(--culoare-accent-hover);
}

.widget-contact-trigger-icon {
    display: flex;
    flex-shrink: 0;
}

.widget-contact-trigger-icon-img,
.widget-contact-trigger-icon-preset {
    width: 22px;
    height: 22px;
}

.widget-contact-trigger-icon-img {
    object-fit: contain;
}

.widget-contact-trigger--icon-only {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
}

@media (max-width: 640px) {
    .widget-contact-trigger {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .widget-contact-trigger-text {
        display: none;
    }
}
