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