.pending-payment-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.pending-payment-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 340px;
    text-align: center;
}

.pending-payment-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.pending-payment-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pending-payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pending-payment-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.pending-payment-btn.primary {
    background: #ff9800;
    color: #fff;
}

.pending-payment-btn.secondary {
    background: transparent;
    color: #000;
    border: 1px solid #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pending-badge {
    background: #ff9800;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
