#mg-push-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    padding: 1rem 1.25rem;
    max-width: 360px;
    width: calc(100vw - 3rem);
    direction: rtl;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
    border: 1px solid rgba(0,0,0,.06);
}

#mg-push-banner.mg-push-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

.mg-push-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--mg-primary, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mg-push-banner-icon svg {
    width: 20px;
    height: 20px;
}

.mg-push-banner-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mg-push-banner-content strong {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mg-push-banner-content span {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.mg-push-banner-actions {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex-shrink: 0;
}

.mg-push-btn {
    border: none;
    border-radius: 7px;
    padding: .35rem .8rem;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    font-weight: 600;
    transition: opacity .15s;
}

.mg-push-btn:hover { opacity: .85; }

.mg-push-btn--yes {
    background: var(--mg-primary, #2563eb);
    color: #fff;
}

.mg-push-btn--no {
    background: #f1f5f9;
    color: #555;
}

.mg-push-close {
    position: absolute;
    top: .5rem;
    left: .5rem;
    background: none;
    border: none;
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 2px 5px;
}

.mg-push-close:hover { color: #555; }

@media (max-width: 480px) {
    #mg-push-banner {
        right: .75rem;
        left: .75rem;
        bottom: .75rem;
        width: auto;
        max-width: none;
    }
}
