// Seller pages are lazy-loaded — SellerLayout is applied by SellerRouteLayout below.
const SellerDashboard = lazy(() => import('./pages/Dashboard'))
const SellerOrders = lazy(() => import('./pages/Orders'))
const SellerProducts = lazy(() => import('./pages/Products'))
const SellerAddProduct = lazy(() => import('./pages/AddProduct'))
const SellerFinancePage = lazy(() => import('./pages/FinancePage'))
const SellerStoreProfile = lazy(() => import('./pages/StoreProfile'))
const SellerStoreSettings = lazy(() => import('./pages/StoreSettings'))
const SellerShippingSettings = lazy(() => import('./pages/ShippingSettings'))
const SellerHelpCenter = lazy(() => import('./pages/SellerHelpCenter'))
const SellerSupport = lazy(() => import('./pages/SellerSupport'))
const SellerNotFound = lazy(() => import('./pages/SellerNotFound'))
const SellerMarketing = lazy(() => import('./pages/Marketing'))
const SellerReviews = lazy(() => import('./pages/Reviews'))
const SellerReturnsRefunds = lazy(() => import('./pages/ReturnsRefunds'))
const SellerRequestDetails = lazy(() => import('./pages/RequestDetails'))
const SellerCustomers = lazy(() => import('./pages/Customers'))
const SellerCatalogPage = lazy(() => import('./pages/CatalogPage'))
const SellerNotifications = lazy(() => import('./pages/SellerNotifications'))