.donation-popup {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    max-width: 280px;
    background: #ffffff;
    color: #111827;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    padding: 0.9rem 1rem;
    display: none;
    border: 1px solid #e2e8f0;
}

.donation-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.donation-popup-title {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.donation-popup-badge {
    font-size: .68rem;
    padding: .15rem .5rem;
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.08);
    color: #f97316;
    border: 1px solid rgba(251, 146, 60, 0.45);
}

.donation-popup-text {
    font-size: .75rem;
    color: #475569;
    margin: .15rem 0 .55rem 0;
}

.donation-popup-wallets {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: .7rem;
}

.donation-wallet-image {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.donation-wallet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
}

.donation-wallet-label {
    font-size: .75rem;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
}

.donation-wallet-value {
    font-size: .7rem;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.donation-copy-btn {
    font-size: .7rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    padding: .15rem .6rem;
    cursor: pointer;
    transition: all .16s ease;
}

.donation-copy-btn:hover {
    background: #e5f2ff;
    border-color: #3b82f6;
}

.donation-popup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.donation-small-note {
    font-size: .68rem;
    color: #6b7280;
    max-width: 62%;
}

.donation-close-btn {
    font-size: .7rem;
    border-radius: 999px;
    border: none;
    background: #fb923c;
    color: #111827;
    font-weight: 600;
    padding: .25rem .8rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
    transition: all .16s ease;
}

.donation-close-btn:hover {
    background: #f97316;
    transform: translateY(-1px);
}

.donation-popup-close-icon {
    position: absolute;
    top: .55rem;
    right: .65rem;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #9ca3af;
    background: #ffffff;
    cursor: pointer;
}

.donation-image-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1400;
    padding: 1.5rem;
}

.donation-image-overlay-inner {
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-image-overlay-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.65);
}

@media (max-width: 768px) {
    .donation-popup {
        right: .85rem;
        left: .85rem;
        bottom: 1rem;
        max-width: 100%;
    }
}

