/* Trade Bargains Growth Engine — Push Opt-In Popup
   Brand: Orange #F7931E · Navy #1a2332 (matches admin.css / popup.css)
----------------------------------------------- */
#tbge-push-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 360px;
    width: calc(100% - 32px);
    z-index: 999998;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
#tbge-push-popup.tbge-push-popup--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tbge-push-popup__inner {
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px 20px;
    box-shadow: 0 12px 40px rgba(26, 35, 50, .18);
    position: relative;
    border-top: 3px solid #F7931E;
}

.tbge-push-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 14px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.tbge-push-popup__close:hover { color: #1a2332; }

.tbge-push-popup__icon {
    font-size: 30px;
    margin-bottom: 6px;
}

.tbge-push-popup__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.3;
}

.tbge-push-popup__sub {
    margin: 0 0 8px;
    font-size: 13px;
    color: #475569;
}

.tbge-push-popup__list {
    margin: 0 0 12px;
    padding: 0 0 0 18px;
    font-size: 13px;
    color: #334155;
    line-height: 1.7;
}

.tbge-push-popup__privacy {
    margin: 0 0 14px;
    font-size: 11px;
    color: #94a3b8;
}

.tbge-push-popup__actions {
    display: flex;
    gap: 8px;
}

.tbge-push-btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s ease;
}
.tbge-push-btn:hover { opacity: .9; }

.tbge-push-btn--primary {
    background: #F7931E;
    color: #fff;
}

.tbge-push-btn--secondary {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 480px) {
    #tbge-push-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}
