/**
 * Settings Account Component
 * Account status, actions, and info banners
 *
 * @package BeepBeep_AI
 * @since 5.0.0
 */

/* ==================================================
   ACCOUNT STATUS
   ================================================== */

.bbai-settings-account-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 20px;
}

.bbai-settings-account-status-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.bbai-settings-account-status-value {
    font-size: 14px;
    color: #111827;
    font-weight: 700;
}

/* ==================================================
   ACCOUNT ACTIONS
   ================================================== */

.bbai-settings-account-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.bbai-settings-account-action-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--bbai-cta-primary-bg, #10b981);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bbai-settings-account-action-btn:hover {
    background: var(--bbai-cta-primary-bg-hover, #059669);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.35);
}

.bbai-settings-account-action-info {
    padding: 16px;
    background: #f9fafb;
    border-radius: 6px;
}

.bbai-settings-account-action-info p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.bbai-settings-account-action-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bbai-settings-account-action-info li {
    font-size: 13px;
    color: #374151;
    padding-left: 24px;
    position: relative;
}

.bbai-settings-account-action-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ==================================================
   INFO BANNER
   ================================================== */

.bbai-settings-info-banner {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bbai-settings-info-banner svg {
    flex-shrink: 0;
    color: #0284c7;
}

/* ==================================================
   UPSELL BANNER
   ================================================== */

.bbai-settings-upsell-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    color: white;
}

.bbai-settings-upsell-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.bbai-settings-upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bbai-settings-upsell-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.bbai-settings-upsell-features li:before {
    content: '✓';
    font-weight: 700;
    color: #86efac;
}

.bbai-settings-upsell-btn {
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: #7c3aed;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bbai-settings-upsell-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ==================================================
   PRO UPSELL BANNER
   ================================================== */

.bbai-settings-pro-upsell-banner {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    color: white;
    text-align: center;
}

.bbai-settings-pro-upsell-btn {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: #7c3aed;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bbai-settings-pro-upsell-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 768px) {
    .bbai-settings-account-action-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .bbai-settings-upsell-banner {
        padding: 20px;
    }

    .bbai-settings-pro-upsell-banner {
        padding: 20px;
    }

    .bbai-settings-pro-upsell-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}
