.push-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pushBannerSlideUp 0.3s ease-out;
}

@keyframes pushBannerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.push-banner.is-hiding {
    animation: pushBannerSlideDown 0.3s ease-in forwards;
}

@keyframes pushBannerSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

.push-banner__icon {
    font-size: 28px;
    flex-shrink: 0;
}

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

.push-banner__text strong {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.push-banner__text span {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
}

.push-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.push-banner__btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.push-banner__btn--yes {
    background: #fff;
    color: #991b1b;
}

.push-banner__btn--yes:active {
    background: #f3f4f6;
}

.push-banner__btn--no {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.push-banner__btn--no:active {
    background: rgba(255, 255, 255, 0.1);
}

/* Su schermi più larghi: layout orizzontale */
@media (min-width: 480px) {
    .push-banner__actions {
        flex-direction: row;
    }
}
