Keep codebase structure and import usage aligned with the intended architecture and boundaries.

Example:

// ✅ type-only import to avoid unused/runtime imports
import type React from 'react';

// ✅ do not import values you never use
// import { useToast } from '../contexts/ToastContext'; // remove if unused