@mohasinac/appkit 2.3.1 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. package/dist/client.d.ts +12 -8
  2. package/dist/client.js +7 -4
  3. package/dist/constants/api-endpoints.d.ts +4 -0
  4. package/dist/constants/api-endpoints.js +2 -0
  5. package/dist/core/contact-submissions.repository.d.ts +32 -0
  6. package/dist/core/contact-submissions.repository.js +49 -0
  7. package/dist/core/index.d.ts +2 -0
  8. package/dist/core/index.js +1 -0
  9. package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
  10. package/dist/features/account/components/AddressFilters.d.ts +5 -0
  11. package/dist/features/account/components/AddressFilters.js +20 -0
  12. package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
  13. package/dist/features/account/components/AddressesIndexListing.js +51 -0
  14. package/dist/features/account/components/UserSidebar.d.ts +7 -3
  15. package/dist/features/account/components/UserSidebar.js +55 -7
  16. package/dist/features/account/hooks/useAddresses.d.ts +7 -0
  17. package/dist/features/account/hooks/useAddresses.js +12 -1
  18. package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
  19. package/dist/features/admin/actions/admin-read-actions.js +18 -0
  20. package/dist/features/admin/components/AdminBlogView.js +26 -2
  21. package/dist/features/admin/components/AdminCarouselView.js +18 -2
  22. package/dist/features/admin/components/AdminCategoriesView.js +27 -2
  23. package/dist/features/admin/components/AdminContactView.d.ts +4 -0
  24. package/dist/features/admin/components/AdminContactView.js +50 -0
  25. package/dist/features/admin/components/AdminFaqsView.js +19 -2
  26. package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
  27. package/dist/features/admin/components/AdminListingScaffold.js +14 -3
  28. package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
  29. package/dist/features/admin/components/AdminNewsletterView.js +50 -0
  30. package/dist/features/admin/components/AdminProductsView.js +30 -2
  31. package/dist/features/admin/components/AdminReviewsView.js +26 -2
  32. package/dist/features/admin/components/AdminStoresView.js +17 -2
  33. package/dist/features/admin/components/AdminUsersView.js +27 -2
  34. package/dist/features/admin/components/DataTable.d.ts +2 -1
  35. package/dist/features/admin/components/DataTable.js +18 -4
  36. package/dist/features/admin/components/index.d.ts +6 -0
  37. package/dist/features/admin/components/index.js +3 -0
  38. package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
  39. package/dist/features/admin/hooks/useAdminListingData.js +12 -7
  40. package/dist/features/admin/server.d.ts +3 -0
  41. package/dist/features/admin/server.js +2 -0
  42. package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
  43. package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
  44. package/dist/features/auctions/components/AuctionFilters.js +12 -0
  45. package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
  46. package/dist/features/auctions/components/AuctionsListView.js +37 -5
  47. package/dist/features/auctions/schemas/index.d.ts +4 -4
  48. package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
  49. package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
  50. package/dist/features/blog/components/BlogFilters.js +2 -1
  51. package/dist/features/blog/components/BlogIndexListing.js +14 -9
  52. package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
  53. package/dist/features/blog/components/BlogIndexPageView.js +10 -2
  54. package/dist/features/blog/components/BlogListView.d.ts +2 -1
  55. package/dist/features/blog/components/BlogListView.js +10 -3
  56. package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
  57. package/dist/features/categories/components/CategoriesIndexListing.js +41 -38
  58. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
  59. package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
  60. package/dist/features/categories/components/CategoryDetailPageView.js +13 -6
  61. package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
  62. package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
  63. package/dist/features/categories/components/CategoryFilters.js +2 -1
  64. package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
  65. package/dist/features/categories/components/CategoryGrid.js +8 -6
  66. package/dist/features/categories/components/CategoryProductsListing.js +22 -11
  67. package/dist/features/categories/components/index.d.ts +2 -0
  68. package/dist/features/categories/components/index.js +1 -0
  69. package/dist/features/categories/hooks/useCategories.d.ts +20 -0
  70. package/dist/features/categories/hooks/useCategories.js +50 -1
  71. package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
  72. package/dist/features/categories/hooks/useCategoryTree.js +65 -0
  73. package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
  74. package/dist/features/events/components/AdminEventEditorView.js +203 -0
  75. package/dist/features/events/components/AdminEventsView.js +28 -2
  76. package/dist/features/events/components/EventCard.js +4 -2
  77. package/dist/features/events/components/EventFilters.js +2 -1
  78. package/dist/features/events/components/EventsIndexListing.js +40 -10
  79. package/dist/features/events/components/EventsListPageView.d.ts +6 -1
  80. package/dist/features/events/components/EventsListPageView.js +40 -7
  81. package/dist/features/events/components/index.d.ts +2 -0
  82. package/dist/features/events/components/index.js +1 -0
  83. package/dist/features/events/hooks/useEvents.js +2 -0
  84. package/dist/features/events/types/index.d.ts +1 -0
  85. package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
  86. package/dist/features/homepage/components/EventsSection.js +1 -1
  87. package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
  88. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
  89. package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
  90. package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
  91. package/dist/features/homepage/components/HeroCarousel.js +1 -1
  92. package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
  93. package/dist/features/homepage/components/SectionCarousel.js +4 -4
  94. package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
  95. package/dist/features/homepage/schemas/firestore.d.ts +1 -1
  96. package/dist/features/homepage/schemas/firestore.js +2 -1
  97. package/dist/features/layout/AppLayoutShell.d.ts +6 -2
  98. package/dist/features/layout/AppLayoutShell.js +7 -3
  99. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
  100. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
  101. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
  102. package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
  103. package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
  104. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
  105. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
  106. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
  107. package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
  108. package/dist/features/pre-orders/components/index.d.ts +2 -0
  109. package/dist/features/pre-orders/components/index.js +1 -0
  110. package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
  111. package/dist/features/products/components/AuctionsIndexListing.js +61 -9
  112. package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
  113. package/dist/features/products/components/InteractiveProductCard.js +2 -2
  114. package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
  115. package/dist/features/products/components/ProductDetailPageView.js +116 -25
  116. package/dist/features/products/components/ProductFilters.d.ts +6 -11
  117. package/dist/features/products/components/ProductFilters.js +5 -3
  118. package/dist/features/products/components/ProductGrid.d.ts +8 -2
  119. package/dist/features/products/components/ProductGrid.js +20 -5
  120. package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
  121. package/dist/features/products/components/ProductTabsShell.js +14 -14
  122. package/dist/features/products/components/ProductsIndexListing.js +73 -9
  123. package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
  124. package/dist/features/products/components/ProductsIndexPageView.js +39 -6
  125. package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
  126. package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
  127. package/dist/features/products/components/index.d.ts +1 -0
  128. package/dist/features/products/components/index.js +1 -0
  129. package/dist/features/products/hooks/useProducts.js +16 -0
  130. package/dist/features/products/repository/products.repository.d.ts +8 -0
  131. package/dist/features/products/repository/products.repository.js +2 -0
  132. package/dist/features/products/schemas/index.d.ts +8 -8
  133. package/dist/features/products/types/index.d.ts +12 -0
  134. package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
  135. package/dist/features/promotions/components/CouponsIndexListing.js +86 -0
  136. package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
  137. package/dist/features/promotions/components/PromotionsView.js +6 -1
  138. package/dist/features/promotions/components/index.d.ts +4 -2
  139. package/dist/features/promotions/components/index.js +2 -1
  140. package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
  141. package/dist/features/reviews/components/ReviewDetailPageView.js +20 -0
  142. package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
  143. package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
  144. package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
  145. package/dist/features/reviews/components/ReviewFilters.js +5 -4
  146. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
  147. package/dist/features/reviews/components/ReviewsIndexListing.js +35 -51
  148. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
  149. package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
  150. package/dist/features/reviews/components/ReviewsList.js +9 -1
  151. package/dist/features/reviews/components/index.d.ts +1 -0
  152. package/dist/features/reviews/hooks/useReviews.js +15 -1
  153. package/dist/features/reviews/types/index.d.ts +6 -1
  154. package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
  155. package/dist/features/seller/components/SellerSidebar.js +6 -4
  156. package/dist/features/seller/components/index.d.ts +30 -0
  157. package/dist/features/seller/components/index.js +17 -0
  158. package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
  159. package/dist/features/seller/hooks/useSellerStore.js +2 -0
  160. package/dist/features/seller/permission-map.d.ts +4 -2
  161. package/dist/features/seller/permission-map.js +16 -14
  162. package/dist/features/seller/schemas/index.d.ts +2 -2
  163. package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
  164. package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
  165. package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
  166. package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
  167. package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
  168. package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
  169. package/dist/features/stores/components/StoreFilters.d.ts +5 -0
  170. package/dist/features/stores/components/StoreFilters.js +20 -0
  171. package/dist/features/stores/components/StoreHeader.js +2 -2
  172. package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
  173. package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
  174. package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
  175. package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
  176. package/dist/features/stores/components/StoreProductsListing.js +21 -11
  177. package/dist/features/stores/components/StoreReviewsListing.js +2 -7
  178. package/dist/features/stores/components/StoresIndexListing.js +42 -8
  179. package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
  180. package/dist/features/stores/components/StoresIndexPageView.js +9 -2
  181. package/dist/features/stores/components/index.d.ts +3 -0
  182. package/dist/features/stores/components/index.js +1 -0
  183. package/dist/features/stores/hooks/useStores.d.ts +7 -1
  184. package/dist/features/stores/hooks/useStores.js +16 -3
  185. package/dist/features/stores/schemas/index.d.ts +2 -2
  186. package/dist/features/stores/types/index.d.ts +3 -0
  187. package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
  188. package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
  189. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
  190. package/dist/features/wishlist/hooks/useWishlistCount.js +31 -0
  191. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
  192. package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
  193. package/dist/features/wishlist/index.d.ts +3 -0
  194. package/dist/features/wishlist/index.js +3 -0
  195. package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
  196. package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
  197. package/dist/index.d.ts +50 -1
  198. package/dist/index.js +63 -1
  199. package/dist/next/routing/route-map.d.ts +70 -36
  200. package/dist/next/routing/route-map.js +30 -22
  201. package/dist/seed/addresses-seed-data.js +62 -261
  202. package/dist/seed/beyblade-seed-data.d.ts +7 -0
  203. package/dist/seed/beyblade-seed-data.js +947 -0
  204. package/dist/seed/bids-seed-data.d.ts +10 -2
  205. package/dist/seed/bids-seed-data.js +220 -1071
  206. package/dist/seed/blog-posts-seed-data.d.ts +2 -2
  207. package/dist/seed/blog-posts-seed-data.js +455 -117
  208. package/dist/seed/cart-seed-data.d.ts +9 -9
  209. package/dist/seed/cart-seed-data.js +73 -74
  210. package/dist/seed/coupons-seed-data.d.ts +3 -4
  211. package/dist/seed/coupons-seed-data.js +3 -509
  212. package/dist/seed/events-seed-data.d.ts +2 -2
  213. package/dist/seed/events-seed-data.js +315 -476
  214. package/dist/seed/faq-seed-data.d.ts +18 -41
  215. package/dist/seed/faq-seed-data.js +1059 -1172
  216. package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
  217. package/dist/seed/hot-wheels-seed-data.js +1365 -0
  218. package/dist/seed/index.d.ts +6 -1
  219. package/dist/seed/index.js +6 -1
  220. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
  221. package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
  222. package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
  223. package/dist/seed/pokemon-categories-seed-data.js +424 -1004
  224. package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
  225. package/dist/seed/pokemon-coupons-seed-data.js +465 -0
  226. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
  227. package/dist/seed/pokemon-homepage-sections-seed-data.js +67 -289
  228. package/dist/seed/pokemon-products-seed-data.js +662 -0
  229. package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
  230. package/dist/seed/pokemon-seed-bundle.js +41 -11
  231. package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
  232. package/dist/seed/pokemon-stores-seed-data.js +56 -31
  233. package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
  234. package/dist/seed/pokemon-users-seed-data.js +245 -261
  235. package/dist/seed/reviews-seed-data.d.ts +17 -2
  236. package/dist/seed/reviews-seed-data.js +519 -483
  237. package/dist/seed/site-settings-seed-data.js +14 -14
  238. package/dist/seed/store-addresses-seed-data.js +68 -50
  239. package/dist/seed/transformers-seed-data.d.ts +7 -0
  240. package/dist/seed/transformers-seed-data.js +510 -0
  241. package/dist/seed/wishlists-seed-data.d.ts +5 -1
  242. package/dist/seed/wishlists-seed-data.js +82 -4
  243. package/dist/server.d.ts +1 -0
  244. package/dist/server.js +2 -0
  245. package/dist/tokens/index.d.ts +6 -0
  246. package/dist/tokens/index.js +2 -0
  247. package/dist/ui/components/BaseListingCard.js +24 -26
  248. package/dist/ui/components/BaseListingCard.style.css +5 -5
  249. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  250. package/dist/ui/components/HorizontalScroller.js +19 -5
  251. package/dist/ui/components/SideDrawer.style.css +3 -11
  252. package/dist/ui/rich-text/RichText.js +19 -1
  253. package/package.json +1 -1
@@ -1,27 +1,21 @@
1
1
  /**
2
- * Comprehensive FAQ Seed Data
3
- * 102 FAQs across 7 categories
2
+ * LetItRip FAQ Seed Data
4
3
  *
5
- * Categories:
6
- * - general: 20 FAQs
7
- * - shipping_delivery: 15 FAQs
8
- * - returns_refunds: 12 FAQs
9
- * - orders_payment: 18 FAQs
10
- * - account_security: 10 FAQs
11
- * - product_information: 15 FAQs
12
- * - general: 12 seller FAQs merged into general guidance
4
+ * 65 FAQs across 7 categories, accurate to the LetItRip platform:
5
+ * - Multi-seller Pokemon TCG marketplace with auctions
6
+ * - Returns and free shipping are store-level policies (not platform-wide)
7
+ * - Platform can issue coupons / promo codes
8
+ * - India-focused (INR, GST, Indian payment methods)
13
9
  *
14
- * Raw FAQ entries are normalized below into the runtime FAQ entity shape.
10
+ * Categories:
11
+ * general — 10 FAQs
12
+ * orders_payment — 12 FAQs
13
+ * shipping_delivery — 10 FAQs
14
+ * returns_refunds — 10 FAQs
15
+ * product_information — 10 FAQs
16
+ * account_security — 8 FAQs
17
+ * technical_support — 5 FAQs
15
18
  */
16
- const FAQ_CATEGORY_MAP = {
17
- general: "general",
18
- shipping: "shipping_delivery",
19
- returns: "returns_refunds",
20
- payment: "orders_payment",
21
- account: "account_security",
22
- products: "product_information",
23
- sellers: "general",
24
- };
25
19
  function buildSearchTokens(input) {
26
20
  const rawText = [input.question, input.answer, input.category, ...input.tags]
27
21
  .filter(Boolean)
@@ -29,19 +23,18 @@ function buildSearchTokens(input) {
29
23
  .toLowerCase();
30
24
  return Array.from(new Set(rawText
31
25
  .split(/[^a-z0-9]+/i)
32
- .map((token) => token.trim())
33
- .filter((token) => token.length >= 2))).slice(0, 50);
26
+ .map((t) => t.trim())
27
+ .filter((t) => t.length >= 2))).slice(0, 50);
34
28
  }
35
29
  function normalizeFaqSeed(faq) {
36
- const category = FAQ_CATEGORY_MAP[faq.category] ?? "general";
37
30
  return {
38
31
  id: faq.id ?? "",
39
32
  question: faq.question,
40
33
  answer: {
41
34
  text: faq.answer,
42
- format: "plain",
35
+ format: faq.format ?? "html",
43
36
  },
44
- category,
37
+ category: faq.category,
45
38
  showOnHomepage: faq.showOnHomepage,
46
39
  showInFooter: faq.showInFooter,
47
40
  isPinned: faq.isPinned,
@@ -51,2284 +44,2178 @@ function normalizeFaqSeed(faq) {
51
44
  searchTokens: buildSearchTokens({
52
45
  question: faq.question,
53
46
  answer: faq.answer,
54
- category,
47
+ category: faq.category,
55
48
  tags: faq.tags,
56
49
  }),
57
50
  relatedFAQs: faq.relatedFAQs,
58
51
  useSiteSettings: faq.useSiteSettings,
59
- variables: undefined,
52
+ variables: faq.variables,
60
53
  stats: faq.stats,
61
54
  seo: faq.seo,
62
55
  isActive: faq.isActive,
63
56
  createdBy: faq.createdBy,
64
57
  };
65
58
  }
66
- export const FAQ_SEED_DATA = [
59
+ const RAW_FAQS = [
67
60
  // ============================================
68
- // GENERAL (20 FAQs)
61
+ // GENERAL 10 FAQs
69
62
  // ============================================
70
63
  {
71
64
  question: "What is LetItRip?",
72
- answer: "LetItRip is a multi-seller e-commerce and auction platform where you can buy products, participate in auctions, and discover great deals from verified sellers across India.",
65
+ answer: "<p>LetItRip is a curated multi-seller marketplace for <strong>Pokemon TCG cards and collectibles</strong>. Browse thousands of singles, sealed products, and PSA/BGS graded cards from verified sellers across India. You can also participate in live auctions to win rare cards.</p>",
73
66
  category: "general",
74
67
  showOnHomepage: true,
75
68
  showInFooter: true,
76
69
  isPinned: true,
77
70
  order: 1,
78
71
  priority: 10,
79
- tags: ["about", "platform", "introduction"],
72
+ tags: ["about", "platform", "introduction", "pokemon", "tcg"],
80
73
  relatedFAQs: [],
81
74
  useSiteSettings: false,
82
- variables: [],
83
- stats: { views: 0, helpful: 0, notHelpful: 0 },
75
+ stats: { views: 1240, helpful: 890, notHelpful: 42 },
84
76
  seo: {
85
77
  slug: "what-is-letitrip",
86
- metaTitle: "What is LetItRip? | Multi-Seller Marketplace & Auction Platform",
87
- metaDescription: "Learn about LetItRip - your trusted multi-seller e-commerce and auction platform with verified sellers across India.",
78
+ metaTitle: "What is LetItRip? | Pokemon TCG Marketplace & Auctions India",
79
+ metaDescription: "LetItRip is India's trusted multi-seller marketplace for Pokemon TCG singles, sealed products, graded cards and live auctions.",
88
80
  },
89
81
  isActive: true,
90
82
  createdBy: "system",
91
83
  },
92
84
  {
93
85
  question: "How do I contact customer support?",
94
- answer: "You can reach our customer support team at {{supportEmail}} or call us at {{supportPhone}}. We are available Monday to Saturday, 9 AM to 6 PM IST.",
86
+ answer: "<p>You can reach our support team at <strong>{{supportEmail}}</strong> or call <strong>{{supportPhone}}</strong>. We're available <strong>Monday to Saturday, 10 AM 6 PM IST</strong>.</p><p>For seller-specific issues (shipping delays, return requests), please contact the seller directly via the order page first.</p>",
95
87
  category: "general",
96
88
  showOnHomepage: true,
97
89
  showInFooter: true,
98
90
  isPinned: false,
99
91
  order: 2,
100
92
  priority: 9,
101
- tags: ["support", "contact", "help"],
93
+ tags: ["support", "contact", "help", "email", "phone"],
102
94
  relatedFAQs: [],
103
95
  useSiteSettings: true,
104
- variables: ["supportEmail", "supportPhone"],
105
- stats: { views: 0, helpful: 0, notHelpful: 0 },
96
+ stats: { views: 980, helpful: 720, notHelpful: 38 },
106
97
  seo: {
107
98
  slug: "contact-customer-support",
108
- metaTitle: "How to Contact Customer Support | LetItRip Help",
109
- metaDescription: "Get in touch with LetItRip customer support via email or phone. Available Mon-Sat, 9 AM to 6 PM IST.",
99
+ metaTitle: "Contact LetItRip Customer Support | Help Centre",
100
+ metaDescription: "Reach LetItRip support by email or phone. Available MonSat, 10 AM to 6 PM IST.",
110
101
  },
111
102
  isActive: true,
112
103
  createdBy: "system",
113
104
  },
114
105
  {
115
- question: "Is there free shipping on all orders?",
116
- answer: "No, we do not offer blanket free shipping. Shipping costs depend on the seller, product, and delivery location. Some sellers may offer free shipping on specific products - check the product description for details.",
106
+ question: "Is LetItRip available across India?",
107
+ answer: "<p>Yes. LetItRip is accessible from anywhere in India. Delivery availability and shipping timelines depend on the individual seller's shipping policy and their chosen courier partners. Check each product listing for delivery eligibility to your pincode.</p>",
117
108
  category: "general",
118
109
  showOnHomepage: false,
119
- showInFooter: true,
110
+ showInFooter: false,
120
111
  isPinned: false,
121
112
  order: 3,
122
- priority: 8,
123
- tags: ["shipping", "delivery", "costs"],
113
+ priority: 7,
114
+ tags: ["india", "availability", "locations", "delivery"],
124
115
  relatedFAQs: [],
125
116
  useSiteSettings: false,
126
- variables: [],
127
- stats: { views: 0, helpful: 0, notHelpful: 0 },
117
+ stats: { views: 560, helpful: 430, notHelpful: 18 },
128
118
  seo: {
129
- slug: "free-shipping-policy",
130
- metaTitle: "Free Shipping Policy | LetItRip Shipping Information",
131
- metaDescription: "Understand our shipping policy. Free shipping is only available when mentioned in the product description by the seller.",
119
+ slug: "letitrip-availability-india",
120
+ metaTitle: "Is LetItRip Available Across India? | Coverage & Delivery",
121
+ metaDescription: "LetItRip is accessible across India. Delivery depends on each seller's shipping policy and pincode coverage.",
132
122
  },
133
123
  isActive: true,
134
124
  createdBy: "system",
135
125
  },
136
126
  {
137
- question: "Do you offer free returns?",
138
- answer: "No, we do not have a blanket free returns policy. Return policies vary by seller and product. Check the product description for specific return terms, including any return shipping costs.",
127
+ question: "Do I need an account to browse listings?",
128
+ answer: "<p>No you can browse all product listings, auctions, and store pages without signing in. However, you need an account to <strong>place bids, add items to your wishlist, write reviews, or make purchases</strong>.</p>",
139
129
  category: "general",
140
130
  showOnHomepage: false,
141
- showInFooter: true,
131
+ showInFooter: false,
142
132
  isPinned: false,
143
133
  order: 4,
144
- priority: 8,
145
- tags: ["returns", "refunds", "policy"],
134
+ priority: 6,
135
+ tags: ["account", "browse", "guest", "login"],
146
136
  relatedFAQs: [],
147
137
  useSiteSettings: false,
148
- variables: [],
149
- stats: { views: 0, helpful: 0, notHelpful: 0 },
138
+ stats: { views: 410, helpful: 320, notHelpful: 12 },
150
139
  seo: {
151
- slug: "free-returns-policy",
152
- metaTitle: "Returns Policy | LetItRip Return Information",
153
- metaDescription: "Learn about our returns policy. Return terms vary by seller - check product descriptions for specific return policies.",
140
+ slug: "do-i-need-account-to-browse",
141
+ metaTitle: "Do I Need an Account to Browse LetItRip? | FAQ",
142
+ metaDescription: "Browse LetItRip listings freely without an account. An account is required to buy, bid, or wishlist items.",
154
143
  },
155
144
  isActive: true,
156
145
  createdBy: "system",
157
146
  },
158
147
  {
159
- question: "What payment methods do you accept?",
160
- answer: "We accept UPI, credit/debit cards (Visa, Mastercard, RuPay), net banking, digital wallets (Paytm, PhonePe, Google Pay), and EMI options on select purchases.",
148
+ question: "How are sellers verified on LetItRip?",
149
+ answer: "<p>All sellers on LetItRip go through an onboarding review before their store goes live. We verify identity documents, check product authenticity claims, and review listing quality. Sellers who consistently receive good feedback and maintain return policies earn a <strong>Verified Seller</strong> badge.</p><p>We encourage buyers to always check a store's ratings and reviews before purchasing high-value cards.</p>",
161
150
  category: "general",
162
- showOnHomepage: true,
151
+ showOnHomepage: false,
163
152
  showInFooter: false,
164
153
  isPinned: false,
165
154
  order: 5,
166
- priority: 7,
167
- tags: ["payment", "methods", "cards"],
155
+ priority: 8,
156
+ tags: ["sellers", "verified", "trust", "authenticity"],
168
157
  relatedFAQs: [],
169
158
  useSiteSettings: false,
170
- variables: [],
171
- stats: { views: 0, helpful: 0, notHelpful: 0 },
159
+ stats: { views: 730, helpful: 610, notHelpful: 28 },
172
160
  seo: {
173
- slug: "payment-methods-accepted",
174
- metaTitle: "Payment Methods | LetItRip Accepted Payments",
175
- metaDescription: "We accept UPI, cards, net banking, digital wallets, and EMI. Shop securely on LetItRip with your preferred payment method.",
161
+ slug: "how-are-sellers-verified",
162
+ metaTitle: "How Are Sellers Verified on LetItRip? | Trust & Safety",
163
+ metaDescription: "LetItRip verifies all sellers through identity review, authenticity checks, and listing quality assessments.",
176
164
  },
177
165
  isActive: true,
178
166
  createdBy: "system",
179
167
  },
180
168
  {
181
- question: "How do I track my order?",
182
- answer: 'Once your order is shipped, you\'ll receive a tracking number via email and SMS. You can also track your order in the "My Orders" section of your account.',
169
+ question: "What types of products can I find on LetItRip?",
170
+ answer: "<ul><li><strong>Pokemon TCG Singles</strong> Base Set, Jungle, Fossil, Neo, EX, VMAX, and modern sets</li><li><strong>Sealed Products</strong> Booster packs, booster boxes, Elite Trainer Boxes</li><li><strong>Graded Cards</strong> PSA, BGS, CGC slabs</li><li><strong>Accessories</strong> — Card sleeves, binders, deck boxes, top loaders</li></ul><p>We focus exclusively on Pokemon TCG to ensure quality and expertise across every listing.</p>",
183
171
  category: "general",
184
- showOnHomepage: false,
172
+ showOnHomepage: true,
185
173
  showInFooter: false,
186
174
  isPinned: false,
187
175
  order: 6,
188
- priority: 7,
189
- tags: ["tracking", "orders", "delivery"],
176
+ priority: 8,
177
+ tags: ["products", "singles", "sealed", "graded", "accessories", "pokemon"],
190
178
  relatedFAQs: [],
191
179
  useSiteSettings: false,
192
- variables: [],
193
- stats: { views: 0, helpful: 0, notHelpful: 0 },
180
+ stats: { views: 820, helpful: 680, notHelpful: 22 },
194
181
  seo: {
195
- slug: "track-my-order",
196
- metaTitle: "How to Track Your Order | LetItRip Order Tracking",
197
- metaDescription: "Track your LetItRip order using the tracking number sent via email or check the My Orders section in your account.",
182
+ slug: "what-products-on-letitrip",
183
+ metaTitle: "What Products Are on LetItRip? | Pokemon TCG Marketplace",
184
+ metaDescription: "Find Pokemon TCG singles, sealed booster boxes, PSA graded cards, and accessories from verified sellers.",
198
185
  },
199
186
  isActive: true,
200
187
  createdBy: "system",
201
188
  },
202
189
  {
203
- question: "Can I cancel my order?",
204
- answer: "Yes, you can cancel your order before it is shipped. Once shipped, cancellation is not possible, but you may initiate a return after delivery.",
190
+ question: "Can I sell on LetItRip?",
191
+ answer: "<p>Yes! If you're a Pokemon TCG collector or dealer, you can apply to open a store on LetItRip. Visit the <strong>Sell on LetItRip</strong> page to submit your application. Our team reviews applications within 3–5 business days.</p><p>Each seller sets their own pricing, shipping rates, and return policy.</p>",
205
192
  category: "general",
206
193
  showOnHomepage: false,
207
- showInFooter: false,
194
+ showInFooter: true,
208
195
  isPinned: false,
209
196
  order: 7,
210
- priority: 6,
211
- tags: ["cancel", "orders", "refund"],
197
+ priority: 7,
198
+ tags: ["sell", "seller", "store", "open-store"],
212
199
  relatedFAQs: [],
213
200
  useSiteSettings: false,
214
- variables: [],
215
- stats: { views: 0, helpful: 0, notHelpful: 0 },
201
+ stats: { views: 640, helpful: 530, notHelpful: 24 },
216
202
  seo: {
217
- slug: "cancel-order",
218
- metaTitle: "How to Cancel an Order | LetItRip Cancellation Policy",
219
- metaDescription: "Learn how to cancel your LetItRip order before it ships. Cancellation available until the order is dispatched.",
203
+ slug: "can-i-sell-on-letitrip",
204
+ metaTitle: "Can I Sell on LetItRip? | Open a Pokemon TCG Store",
205
+ metaDescription: "Apply to sell Pokemon TCG cards on LetItRip. Set your own pricing, shipping, and return policy.",
220
206
  },
221
207
  isActive: true,
222
208
  createdBy: "system",
223
209
  },
224
210
  {
225
- question: "Are products on LetItRip authentic?",
226
- answer: "Yes, all sellers on our platform are verified, and we have strict quality control measures. Products are sourced directly from sellers and checked for authenticity.",
211
+ question: "Does LetItRip have a mobile app?",
212
+ answer: "<p>Our <strong>mobile-optimised website</strong> works on all smartphones and tablets. A dedicated app is on our roadmap follow our social pages for launch announcements.</p>",
227
213
  category: "general",
228
- showOnHomepage: true,
214
+ showOnHomepage: false,
229
215
  showInFooter: false,
230
216
  isPinned: false,
231
217
  order: 8,
232
- priority: 8,
233
- tags: ["authentic", "quality", "trust"],
218
+ priority: 4,
219
+ tags: ["app", "mobile", "android", "ios"],
234
220
  relatedFAQs: [],
235
221
  useSiteSettings: false,
236
- variables: [],
237
- stats: { views: 0, helpful: 0, notHelpful: 0 },
222
+ stats: { views: 390, helpful: 280, notHelpful: 35 },
238
223
  seo: {
239
- slug: "product-authenticity",
240
- metaTitle: "Are Products Authentic? | LetItRip Quality Assurance",
241
- metaDescription: "Shop with confidence. All LetItRip sellers are verified and products undergo strict quality checks for authenticity.",
224
+ slug: "letitrip-mobile-app",
225
+ metaTitle: "Does LetItRip Have a Mobile App? | FAQ",
226
+ metaDescription: "LetItRip is optimised for mobile browsers. A dedicated app is coming soon.",
242
227
  },
243
228
  isActive: true,
244
229
  createdBy: "system",
245
230
  },
246
231
  {
247
- question: "What is your refund policy?",
248
- answer: "Refunds are processed within 5-7 platform days after we receive and inspect the returned product. A platform day starts at 10:00 AM IST. The amount will be credited to your original payment method.",
232
+ question: "How do I report a fake or misrepresented listing?",
233
+ answer: "<p>On any product page, click the <strong>Report Listing</strong> link and describe the issue. Our moderation team reviews reports within 24 hours. Listings found to be fake or misrepresented are immediately removed and the seller is flagged.</p><p>For urgent issues, email us at <strong>{{supportEmail}}</strong> with the listing URL and photo evidence.</p>",
249
234
  category: "general",
250
235
  showOnHomepage: false,
251
236
  showInFooter: false,
252
237
  isPinned: false,
253
238
  order: 9,
254
- priority: 6,
255
- tags: ["refund", "returns", "money back"],
239
+ priority: 8,
240
+ tags: ["fake", "fraud", "report", "counterfeit", "authenticity"],
256
241
  relatedFAQs: [],
257
- useSiteSettings: false,
258
- variables: [],
259
- stats: { views: 0, helpful: 0, notHelpful: 0 },
242
+ useSiteSettings: true,
243
+ stats: { views: 520, helpful: 460, notHelpful: 15 },
260
244
  seo: {
261
- slug: "refund-policy",
262
- metaTitle: "Refund Policy | LetItRip Money-Back Guarantee",
263
- metaDescription: "Get refunds within 5-7 platform days (from 10 AM IST) after product inspection. Amount credited to original payment method.",
245
+ slug: "report-fake-listing",
246
+ metaTitle: "How to Report a Fake or Misrepresented Listing | LetItRip",
247
+ metaDescription: "Report counterfeit or misrepresented Pokemon cards on LetItRip. Our team reviews reports within 24 hours.",
264
248
  },
265
249
  isActive: true,
266
250
  createdBy: "system",
267
251
  },
268
252
  {
269
- question: "Do you ship internationally?",
270
- answer: "Currently, we only ship within India. International shipping is not available at this time.",
253
+ question: "Are there any community events or giveaways?",
254
+ answer: "<p>Yes! LetItRip regularly runs <strong>polls, giveaways, surveys, and contests</strong> for the Pokemon TCG community. Check the <strong>Events</strong> section to see what's live right now. Winners are announced on the event page and notified by email.</p>",
271
255
  category: "general",
272
- showOnHomepage: false,
256
+ showOnHomepage: true,
273
257
  showInFooter: false,
274
258
  isPinned: false,
275
259
  order: 10,
276
- priority: 5,
277
- tags: ["shipping", "international", "delivery"],
260
+ priority: 6,
261
+ tags: ["events", "giveaway", "community", "contests", "pokemon"],
278
262
  relatedFAQs: [],
279
263
  useSiteSettings: false,
280
- variables: [],
281
- stats: { views: 0, helpful: 0, notHelpful: 0 },
264
+ stats: { views: 480, helpful: 390, notHelpful: 19 },
282
265
  seo: {
283
- slug: "international-shipping",
284
- metaTitle: "International Shipping | LetItRip Delivery Areas",
285
- metaDescription: "LetItRip currently ships within India only. International shipping is not yet available.",
266
+ slug: "community-events-giveaways",
267
+ metaTitle: "Community Events & Giveaways | LetItRip Pokemon TCG",
268
+ metaDescription: "LetItRip hosts polls, giveaways, and contests for Pokemon TCG collectors. Check the Events section for live activities.",
286
269
  },
287
270
  isActive: true,
288
271
  createdBy: "system",
289
272
  },
273
+ // ============================================
274
+ // ORDERS & PAYMENT — 12 FAQs
275
+ // ============================================
290
276
  {
291
- question: "How do I report a problem with my order?",
292
- answer: 'Go to "My Orders", select the order, and click "Report Issue". You can also contact customer support at {{supportEmail}} with your order number.',
293
- category: "general",
277
+ question: "What payment methods does LetItRip accept?",
278
+ answer: "<p>We accept a wide range of payment methods through our secure payment gateway:</p><ul><li>UPI (GPay, PhonePe, Paytm, BHIM)</li><li>Net Banking</li><li>Credit and Debit Cards (Visa, Mastercard, RuPay)</li><li>EMI (on eligible cards)</li><li>Wallets (Paytm, Mobikwik)</li></ul><p>All transactions are secured via Razorpay and are PCI-DSS compliant.</p>",
279
+ category: "orders_payment",
294
280
  showOnHomepage: false,
295
281
  showInFooter: false,
296
- isPinned: false,
297
- order: 11,
298
- priority: 6,
299
- tags: ["issues", "support", "help"],
282
+ isPinned: true,
283
+ order: 1,
284
+ priority: 10,
285
+ tags: ["payment", "upi", "cards", "emi", "razorpay", "net-banking"],
300
286
  relatedFAQs: [],
301
- useSiteSettings: true,
302
- variables: ["supportEmail"],
303
- stats: { views: 0, helpful: 0, notHelpful: 0 },
287
+ useSiteSettings: false,
288
+ stats: { views: 1120, helpful: 890, notHelpful: 30 },
304
289
  seo: {
305
- slug: "report-order-problem",
306
- metaTitle: "Report Order Issue | LetItRip Customer Support",
307
- metaDescription: "Having issues with your order? Report problems through My Orders or contact support with your order number.",
290
+ slug: "accepted-payment-methods",
291
+ metaTitle: "Accepted Payment Methods | LetItRip Checkout",
292
+ metaDescription: "Pay via UPI, cards, net banking, EMI, or wallets. All payments secured through Razorpay.",
308
293
  },
309
294
  isActive: true,
310
295
  createdBy: "system",
311
296
  },
312
297
  {
313
- question: "What are your business hours?",
314
- answer: "Our customer support is available Monday to Saturday, 9:00 AM to 6:00 PM IST. Orders can be placed 24/7 on our website.",
315
- category: "general",
316
- showOnHomepage: false,
317
- showInFooter: true,
318
- isPinned: false,
319
- order: 12,
320
- priority: 4,
321
- tags: ["hours", "support", "timing"],
298
+ question: "Can I use a coupon or promo code?",
299
+ answer: "<p>Yes! LetItRip issues platform-wide coupons for events like new user offers, seasonal sales, and community milestones. To apply a coupon:</p><ol><li>Add items to your cart</li><li>At checkout, enter the code in the <strong>Promo Code</strong> field</li><li>Click <strong>Apply</strong> — the discount will reflect immediately</li></ol><p>Coupons are issued by LetItRip and may have minimum order values, expiry dates, or category restrictions. Check the <strong>Events</strong> page for currently active codes.</p>",
300
+ category: "orders_payment",
301
+ showOnHomepage: true,
302
+ showInFooter: false,
303
+ isPinned: true,
304
+ order: 2,
305
+ priority: 9,
306
+ tags: ["coupon", "promo-code", "discount", "offer"],
322
307
  relatedFAQs: [],
323
308
  useSiteSettings: false,
324
- variables: [],
325
- stats: { views: 0, helpful: 0, notHelpful: 0 },
309
+ stats: { views: 780, helpful: 640, notHelpful: 28 },
326
310
  seo: {
327
- slug: "business-hours",
328
- metaTitle: "Business Hours | LetItRip Support Timing",
329
- metaDescription: "LetItRip support available Mon-Sat, 9 AM to 6 PM IST. Shop 24/7 online.",
311
+ slug: "how-to-use-coupon-promo-code",
312
+ metaTitle: "How to Use a Coupon or Promo Code | LetItRip Checkout",
313
+ metaDescription: "Apply LetItRip coupon codes at checkout for discounts. Check the Events page for active promo codes.",
330
314
  },
331
315
  isActive: true,
332
316
  createdBy: "system",
333
317
  },
334
318
  {
335
- question: "How secure is my personal information?",
336
- answer: "We use industry-standard SSL encryption and comply with Indian data protection laws. Your personal and payment information is securely stored and never shared with third parties without consent.",
337
- category: "general",
319
+ question: "Where can I find active coupons and offers?",
320
+ answer: "<p>All active coupons and offers are published in the <strong>Events</strong> section of the website. You may also receive exclusive codes via email if you're subscribed to our newsletter. Follow us on social media for flash-offer announcements.</p>",
321
+ category: "orders_payment",
338
322
  showOnHomepage: false,
339
323
  showInFooter: false,
340
324
  isPinned: false,
341
- order: 13,
325
+ order: 3,
342
326
  priority: 7,
343
- tags: ["security", "privacy", "data"],
327
+ tags: ["coupon", "offers", "events", "newsletter", "discount"],
344
328
  relatedFAQs: [],
345
329
  useSiteSettings: false,
346
- variables: [],
347
- stats: { views: 0, helpful: 0, notHelpful: 0 },
330
+ stats: { views: 540, helpful: 430, notHelpful: 22 },
348
331
  seo: {
349
- slug: "data-security",
350
- metaTitle: "Data Security | LetItRip Privacy & Protection",
351
- metaDescription: "Your data is protected with SSL encryption and Indian data protection compliance. Shop securely on LetItRip.",
332
+ slug: "where-to-find-coupons",
333
+ metaTitle: "Where to Find Active Coupons & Offers | LetItRip",
334
+ metaDescription: "Find active coupon codes in the LetItRip Events section or via our newsletter.",
352
335
  },
353
336
  isActive: true,
354
337
  createdBy: "system",
355
338
  },
356
339
  {
357
- question: "Can I modify my order after placing it?",
358
- answer: "Orders can be modified within 1 hour of placement by contacting customer support. After that, you may need to cancel and place a new order.",
359
- category: "general",
340
+ question: "Is it safe to pay on LetItRip?",
341
+ answer: "<p>Yes. All payments are processed through <strong>Razorpay</strong>, a PCI-DSS Level 1 certified payment gateway. Your card and UPI details are never stored on our servers. Every transaction is encrypted with TLS 1.3.</p>",
342
+ category: "orders_payment",
360
343
  showOnHomepage: false,
361
344
  showInFooter: false,
362
345
  isPinned: false,
363
- order: 14,
364
- priority: 5,
365
- tags: ["modify", "orders", "changes"],
346
+ order: 4,
347
+ priority: 9,
348
+ tags: ["safe", "secure", "payment", "razorpay", "pci", "encryption"],
366
349
  relatedFAQs: [],
367
350
  useSiteSettings: false,
368
- variables: [],
369
- stats: { views: 0, helpful: 0, notHelpful: 0 },
351
+ stats: { views: 870, helpful: 740, notHelpful: 25 },
370
352
  seo: {
371
- slug: "modify-order",
372
- metaTitle: "Modify Order | LetItRip Order Changes",
373
- metaDescription: "Modify your LetItRip order within 1 hour of placement. Contact support for assistance with order changes.",
353
+ slug: "is-it-safe-to-pay",
354
+ metaTitle: "Is It Safe to Pay on LetItRip? | Secure Checkout",
355
+ metaDescription: "Payments on LetItRip are secured via Razorpay (PCI-DSS Level 1). Your payment details are never stored.",
374
356
  },
375
357
  isActive: true,
376
358
  createdBy: "system",
377
359
  },
378
360
  {
379
- question: "Do you have a mobile app?",
380
- answer: "Currently, LetItRip is available as a mobile-optimized website. A dedicated mobile app is coming soon for iOS and Android.",
381
- category: "general",
361
+ question: "My payment failed what do I do?",
362
+ answer: "<p>If your payment fails:</p><ol><li>Check that your bank has not blocked the transaction (some banks require 2FA approval)</li><li>Ensure your card/UPI has sufficient balance or limit</li><li>Try a different payment method</li><li>If the amount was debited but your order wasn't placed, it will be automatically refunded within <strong>5–7 business days</strong></li></ol><p>Contact our support at <strong>{{supportEmail}}</strong> if the issue persists.</p>",
363
+ category: "orders_payment",
382
364
  showOnHomepage: false,
383
365
  showInFooter: false,
384
366
  isPinned: false,
385
- order: 15,
386
- priority: 4,
387
- tags: ["app", "mobile", "download"],
367
+ order: 5,
368
+ priority: 8,
369
+ tags: ["payment-failed", "failed-transaction", "refund", "bank"],
388
370
  relatedFAQs: [],
389
- useSiteSettings: false,
390
- variables: [],
391
- stats: { views: 0, helpful: 0, notHelpful: 0 },
371
+ useSiteSettings: true,
372
+ stats: { views: 690, helpful: 590, notHelpful: 35 },
392
373
  seo: {
393
- slug: "mobile-app",
394
- metaTitle: "Mobile App | LetItRip iOS & Android",
395
- metaDescription: "LetItRip mobile app coming soon. Currently available as mobile-optimized website for iOS and Android.",
374
+ slug: "payment-failed-what-to-do",
375
+ metaTitle: "Payment Failed — What to Do? | LetItRip FAQ",
376
+ metaDescription: "Troubleshoot failed payments on LetItRip. Debited amounts are refunded within 5–7 business days.",
396
377
  },
397
378
  isActive: true,
398
379
  createdBy: "system",
399
380
  },
400
381
  {
401
- question: "Where is LetItRip located?",
402
- answer: "Our headquarters is located at {{companyAddress}}. We serve customers across India.",
403
- category: "general",
382
+ question: "How do I track my order?",
383
+ answer: "<p>Once the seller ships your order, you'll receive an email with a <strong>tracking number and courier name</strong>. You can also track it from <strong>My Orders</strong> in your account. Click the tracking number to open the courier's tracking portal.</p>",
384
+ category: "orders_payment",
404
385
  showOnHomepage: false,
405
- showInFooter: true,
386
+ showInFooter: false,
406
387
  isPinned: false,
407
- order: 16,
408
- priority: 3,
409
- tags: ["location", "address", "office"],
388
+ order: 6,
389
+ priority: 8,
390
+ tags: ["track", "order", "shipping", "courier", "tracking-number"],
410
391
  relatedFAQs: [],
411
- useSiteSettings: true,
412
- variables: ["companyAddress"],
413
- stats: { views: 0, helpful: 0, notHelpful: 0 },
392
+ useSiteSettings: false,
393
+ stats: { views: 920, helpful: 770, notHelpful: 30 },
414
394
  seo: {
415
- slug: "company-location",
416
- metaTitle: "Company Location | LetItRip Office Address",
417
- metaDescription: "Find LetItRip office location and contact details. Serving customers across India.",
395
+ slug: "how-to-track-order",
396
+ metaTitle: "How to Track My Order | LetItRip Order Tracking",
397
+ metaDescription: "Track your LetItRip order via email notification or from My Orders in your account.",
418
398
  },
419
399
  isActive: true,
420
400
  createdBy: "system",
421
401
  },
422
402
  {
423
- question: "How do I subscribe to your newsletter?",
424
- answer: "Enter your email in the newsletter signup form at the bottom of our website to receive updates, deals, and exclusive offers.",
425
- category: "general",
403
+ question: "Can I cancel an order after placing it?",
404
+ answer: "<p>Order cancellation depends on whether the seller has already shipped the item:</p><ul><li><strong>Before shipping:</strong> Contact the seller immediately through the order page. Most sellers can cancel at this stage.</li><li><strong>After shipping:</strong> Cancellations are generally not possible. You would need to go through the seller's return process once the order arrives.</li></ul><p>Auction orders cannot be cancelled after a bid is won.</p>",
405
+ category: "orders_payment",
426
406
  showOnHomepage: false,
427
- showInFooter: true,
407
+ showInFooter: false,
428
408
  isPinned: false,
429
- order: 17,
430
- priority: 3,
431
- tags: ["newsletter", "subscription", "updates"],
409
+ order: 7,
410
+ priority: 7,
411
+ tags: ["cancel", "order-cancellation", "refund"],
432
412
  relatedFAQs: [],
433
413
  useSiteSettings: false,
434
- variables: [],
435
- stats: { views: 0, helpful: 0, notHelpful: 0 },
414
+ stats: { views: 760, helpful: 610, notHelpful: 42 },
436
415
  seo: {
437
- slug: "newsletter-subscription",
438
- metaTitle: "Newsletter Subscription | LetItRip Updates & Deals",
439
- metaDescription: "Subscribe to LetItRip newsletter for exclusive deals, updates, and special offers delivered to your inbox.",
416
+ slug: "cancel-order-after-placing",
417
+ metaTitle: "Can I Cancel My Order After Placing It? | LetItRip FAQ",
418
+ metaDescription: "Orders can be cancelled before shipment by contacting the seller. Shipped orders follow the seller's return policy.",
440
419
  },
441
420
  isActive: true,
442
421
  createdBy: "system",
443
422
  },
444
423
  {
445
- question: "Can I purchase gift cards?",
446
- answer: "Yes, gift cards are available in denominations of ₹500, ₹1000, ₹2000, and ₹5000. They can be purchased and sent via email to recipients.",
447
- category: "general",
424
+ question: "Will I receive a GST invoice for my purchase?",
425
+ answer: "<p>Invoices are issued by the individual sellers. If a seller is GST-registered, you'll receive a GST invoice from them. To request a GST invoice, contact the seller via the order page and provide your GSTIN. LetItRip does not issue invoices on behalf of sellers.</p>",
426
+ category: "orders_payment",
448
427
  showOnHomepage: false,
449
428
  showInFooter: false,
450
429
  isPinned: false,
451
- order: 18,
452
- priority: 5,
453
- tags: ["gift cards", "vouchers", "gifts"],
430
+ order: 8,
431
+ priority: 6,
432
+ tags: ["gst", "invoice", "tax", "gstin"],
454
433
  relatedFAQs: [],
455
434
  useSiteSettings: false,
456
- variables: [],
457
- stats: { views: 0, helpful: 0, notHelpful: 0 },
435
+ stats: { views: 440, helpful: 370, notHelpful: 28 },
458
436
  seo: {
459
- slug: "gift-cards",
460
- metaTitle: "Gift Cards | LetItRip E-Gift Vouchers",
461
- metaDescription: "Buy LetItRip gift cards in various denominations. Perfect gift for any occasion, sent via email instantly.",
437
+ slug: "gst-invoice-purchase",
438
+ metaTitle: "Will I Get a GST Invoice? | LetItRip Tax & Billing",
439
+ metaDescription: "GST invoices are issued by individual sellers. Contact the seller with your GSTIN to request one.",
462
440
  },
463
441
  isActive: true,
464
442
  createdBy: "system",
465
443
  },
466
444
  {
467
- question: "What is your privacy policy?",
468
- answer: "Our privacy policy details how we collect, use, and protect your personal information. You can read the full policy at {{websiteUrl}}/privacy-policy",
469
- category: "general",
470
- showOnHomepage: false,
471
- showInFooter: true,
472
- isPinned: false,
473
- order: 19,
474
- priority: 6,
475
- tags: ["privacy", "policy", "data"],
445
+ question: "How do auctions work on LetItRip?",
446
+ answer: "<p>Here's how live auctions work:</p><ol><li>Find an auction listing with an active countdown timer</li><li>Click <strong>Place Bid</strong> and enter an amount higher than the current bid</li><li>If your bid is the highest when the timer ends, you win the auction</li><li>You'll receive a payment link / checkout prompt to complete the purchase</li></ol><p>All bids are binding. If you win, you must complete the purchase. Failing to pay after winning may result in account suspension.</p>",
447
+ category: "orders_payment",
448
+ showOnHomepage: true,
449
+ showInFooter: false,
450
+ isPinned: true,
451
+ order: 9,
452
+ priority: 9,
453
+ tags: ["auction", "bid", "bidding", "how-it-works", "live-auction"],
476
454
  relatedFAQs: [],
477
- useSiteSettings: true,
478
- variables: ["websiteUrl"],
479
- stats: { views: 0, helpful: 0, notHelpful: 0 },
455
+ useSiteSettings: false,
456
+ stats: { views: 1050, helpful: 890, notHelpful: 38 },
480
457
  seo: {
481
- slug: "privacy-policy-info",
482
- metaTitle: "Privacy Policy | LetItRip Data Protection",
483
- metaDescription: "Read LetItRip privacy policy to understand how we protect your personal information and comply with data laws.",
458
+ slug: "how-auctions-work",
459
+ metaTitle: "How Do Auctions Work on LetItRip? | Live Auction Guide",
460
+ metaDescription: "Place bids on Pokemon TCG cards in LetItRip live auctions. Highest bidder when the timer ends wins.",
484
461
  },
485
462
  isActive: true,
486
463
  createdBy: "system",
487
464
  },
488
465
  {
489
- question: "Do you offer bulk discounts?",
490
- answer: "Yes, bulk purchase discounts are available for orders above 10 units. Contact our sales team at {{supportEmail}} for bulk pricing.",
491
- category: "general",
466
+ question: "What happens if I win an auction but don't pay?",
467
+ answer: "<p>All bids are binding commitments. If you win an auction and fail to complete payment within the required window, your bid will be voided, the seller may re-list the item, and your account may be <strong>suspended from future bidding</strong>. Repeat non-payment leads to permanent ban from auctions.</p>",
468
+ category: "orders_payment",
492
469
  showOnHomepage: false,
493
470
  showInFooter: false,
494
471
  isPinned: false,
495
- order: 20,
496
- priority: 4,
497
- tags: ["bulk", "discounts", "wholesale"],
472
+ order: 10,
473
+ priority: 8,
474
+ tags: ["auction", "non-payment", "bid", "suspension"],
498
475
  relatedFAQs: [],
499
- useSiteSettings: true,
500
- variables: ["supportEmail"],
501
- stats: { views: 0, helpful: 0, notHelpful: 0 },
476
+ useSiteSettings: false,
477
+ stats: { views: 510, helpful: 420, notHelpful: 20 },
502
478
  seo: {
503
- slug: "bulk-discounts",
504
- metaTitle: "Bulk Discounts | LetItRip Wholesale Pricing",
505
- metaDescription: "Get bulk discounts on orders over 10 units. Contact LetItRip sales team for wholesale pricing and deals.",
479
+ slug: "auction-non-payment-policy",
480
+ metaTitle: "What Happens If I Win but Don't Pay? | Auction Policy",
481
+ metaDescription: "Failing to pay after winning an auction may result in account suspension from future bidding on LetItRip.",
506
482
  },
507
483
  isActive: true,
508
484
  createdBy: "system",
509
485
  },
510
- // ============================================
511
- // SHIPPING (15 FAQs)
512
- // ============================================
513
486
  {
514
- question: "How long does shipping take?",
515
- answer: "Shipping typically takes 3-7 business days depending on your location. Metro cities receive deliveries faster, while remote areas may take longer.",
516
- category: "shipping",
517
- showOnHomepage: true,
487
+ question: "Can I place a bid on multiple items at once?",
488
+ answer: "<p>Yes, you can have active bids on multiple auction listings simultaneously. Just keep in mind that winning all of them means you must pay for all of them. Manage your budget carefully before bidding across multiple auctions.</p>",
489
+ category: "orders_payment",
490
+ showOnHomepage: false,
518
491
  showInFooter: false,
519
492
  isPinned: false,
520
- order: 1,
521
- priority: 9,
522
- tags: ["shipping", "delivery", "time"],
493
+ order: 11,
494
+ priority: 5,
495
+ tags: ["auction", "multiple-bids", "bidding"],
523
496
  relatedFAQs: [],
524
497
  useSiteSettings: false,
525
- variables: [],
526
- stats: { views: 0, helpful: 0, notHelpful: 0 },
498
+ stats: { views: 320, helpful: 260, notHelpful: 14 },
527
499
  seo: {
528
- slug: "shipping-time",
529
- metaTitle: "Shipping Time | LetItRip Delivery Duration",
530
- metaDescription: "LetItRip shipping takes 3-7 business days. Metro cities get faster delivery, remote areas may take longer.",
500
+ slug: "bid-on-multiple-auctions",
501
+ metaTitle: "Can I Bid on Multiple Auctions at Once? | LetItRip FAQ",
502
+ metaDescription: "You can place active bids on multiple LetItRip auctions simultaneously. Winning all bids requires payment for each.",
531
503
  },
532
504
  isActive: true,
533
505
  createdBy: "system",
534
506
  },
535
507
  {
536
- question: "What are the shipping charges?",
537
- answer: "Shipping charges vary by seller, product weight, and delivery location. Exact charges are displayed at checkout before payment. Some sellers offer free shipping on specific products.",
538
- category: "shipping",
508
+ question: "Will I be notified if I'm outbid?",
509
+ answer: "<p>Yes. You'll receive an <strong>email and in-app notification</strong> when another buyer outbids you. You can then return to the listing and place a higher bid before the auction ends. Enable browser notifications for real-time alerts.</p>",
510
+ category: "orders_payment",
539
511
  showOnHomepage: false,
540
512
  showInFooter: false,
541
513
  isPinned: false,
542
- order: 2,
543
- priority: 8,
544
- tags: ["shipping", "charges", "cost"],
514
+ order: 12,
515
+ priority: 6,
516
+ tags: ["outbid", "notification", "auction", "bid"],
545
517
  relatedFAQs: [],
546
518
  useSiteSettings: false,
547
- variables: [],
548
- stats: { views: 0, helpful: 0, notHelpful: 0 },
519
+ stats: { views: 430, helpful: 370, notHelpful: 16 },
549
520
  seo: {
550
- slug: "shipping-charges",
551
- metaTitle: "Shipping Charges | LetItRip Delivery Costs",
552
- metaDescription: "Shipping costs vary by seller and location. See exact charges at checkout. Some products have free shipping.",
521
+ slug: "outbid-notification",
522
+ metaTitle: "Will I Be Notified If Outbid? | LetItRip Auction Alerts",
523
+ metaDescription: "LetItRip sends email and in-app alerts when you're outbid in an auction so you can place a higher bid.",
553
524
  },
554
525
  isActive: true,
555
526
  createdBy: "system",
556
527
  },
528
+ // ============================================
529
+ // SHIPPING & DELIVERY — 10 FAQs
530
+ // ============================================
557
531
  {
558
- question: "Do you offer express shipping?",
559
- answer: "Yes, express shipping is available in select cities for an additional charge. Deliveries within 1-2 business days. Check availability at checkout.",
560
- category: "shipping",
532
+ question: "Who handles shipping on LetItRip?",
533
+ answer: "<p>Each seller manages their own shipping. LetItRip is a <strong>marketplace platform</strong> we don't warehouse or ship products ourselves. Sellers partner with couriers such as Delhivery, BlueDart, India Post, or others of their choice. Shipping timelines, rates, and courier options vary by store.</p>",
534
+ category: "shipping_delivery",
561
535
  showOnHomepage: false,
562
- showInFooter: false,
563
- isPinned: false,
564
- order: 3,
565
- priority: 7,
566
- tags: ["express", "fast shipping", "delivery"],
536
+ showInFooter: true,
537
+ isPinned: true,
538
+ order: 1,
539
+ priority: 10,
540
+ tags: ["shipping", "seller", "courier", "marketplace", "delhivery"],
567
541
  relatedFAQs: [],
568
542
  useSiteSettings: false,
569
- variables: [],
570
- stats: { views: 0, helpful: 0, notHelpful: 0 },
543
+ stats: { views: 890, helpful: 740, notHelpful: 35 },
571
544
  seo: {
572
- slug: "express-shipping",
573
- metaTitle: "Express Shipping | LetItRip Fast Delivery",
574
- metaDescription: "Get express shipping in 1-2 days for select cities. Additional charges apply. Check availability at checkout.",
545
+ slug: "who-handles-shipping",
546
+ metaTitle: "Who Handles Shipping on LetItRip? | Seller Shipping Policy",
547
+ metaDescription: "Shipping on LetItRip is managed by each individual seller. Rates and couriers vary by store.",
575
548
  },
576
549
  isActive: true,
577
550
  createdBy: "system",
578
551
  },
579
552
  {
580
- question: "Can I change my delivery address after placing an order?",
581
- answer: "Yes, you can change your delivery address within 2 hours of placing the order. Contact customer support immediately at {{supportPhone}}.",
582
- category: "shipping",
553
+ question: "Is free shipping available?",
554
+ answer: "<p>Free shipping is <strong>not guaranteed platform-wide</strong>. It is entirely at the discretion of individual sellers. Some sellers offer free shipping on specific products, on orders above a minimum value, or during promotional events. Always check the product listing and the seller's store page for their current shipping offer.</p>",
555
+ category: "shipping_delivery",
583
556
  showOnHomepage: false,
584
- showInFooter: false,
585
- isPinned: false,
586
- order: 4,
587
- priority: 6,
588
- tags: ["address", "change", "delivery"],
557
+ showInFooter: true,
558
+ isPinned: true,
559
+ order: 2,
560
+ priority: 10,
561
+ tags: ["free-shipping", "shipping-cost", "seller-policy"],
589
562
  relatedFAQs: [],
590
- useSiteSettings: true,
591
- variables: ["supportPhone"],
592
- stats: { views: 0, helpful: 0, notHelpful: 0 },
563
+ useSiteSettings: false,
564
+ stats: { views: 1100, helpful: 900, notHelpful: 50 },
593
565
  seo: {
594
- slug: "change-delivery-address",
595
- metaTitle: "Change Delivery Address | LetItRip Order Modifications",
596
- metaDescription: "Change your delivery address within 2 hours of order placement. Contact support for immediate assistance.",
566
+ slug: "is-free-shipping-available",
567
+ metaTitle: "Is Free Shipping Available on LetItRip? | Shipping FAQ",
568
+ metaDescription: "Free shipping on LetItRip depends on the individual seller. Check each product listing for the seller's shipping offer.",
597
569
  },
598
570
  isActive: true,
599
571
  createdBy: "system",
600
572
  },
601
573
  {
602
- question: "What happens if I'm not home for delivery?",
603
- answer: "The delivery partner will attempt delivery 3 times. If you're unavailable, they'll leave a note. You can also schedule a redelivery or pick up from the nearest collection point.",
604
- category: "shipping",
574
+ question: "How long does delivery take?",
575
+ answer: "<p>Delivery timelines depend on the seller's location, your location, and the courier used. Typical estimates:</p><ul><li><strong>Metro cities:</strong> 2–4 business days</li><li><strong>Tier 2/3 cities:</strong> 4–7 business days</li><li><strong>Remote areas:</strong> 7–14 business days</li></ul><p>Check the product listing or the seller's store page for their estimated dispatch time.</p>",
576
+ category: "shipping_delivery",
605
577
  showOnHomepage: false,
606
578
  showInFooter: false,
607
579
  isPinned: false,
608
- order: 5,
609
- priority: 6,
610
- tags: ["delivery", "missed", "redelivery"],
580
+ order: 3,
581
+ priority: 8,
582
+ tags: ["delivery-time", "shipping-time", "days", "metro", "courier"],
611
583
  relatedFAQs: [],
612
584
  useSiteSettings: false,
613
- variables: [],
614
- stats: { views: 0, helpful: 0, notHelpful: 0 },
585
+ stats: { views: 940, helpful: 800, notHelpful: 42 },
615
586
  seo: {
616
- slug: "missed-delivery",
617
- metaTitle: "Missed Delivery | LetItRip Redelivery Options",
618
- metaDescription: "3 delivery attempts made. Schedule redelivery or pickup from collection point if you miss delivery.",
587
+ slug: "how-long-does-delivery-take",
588
+ metaTitle: "How Long Does Delivery Take? | LetItRip Shipping Times",
589
+ metaDescription: "LetItRip delivery takes 2–4 days in metros and 4–14 days elsewhere, depending on the seller and courier.",
619
590
  },
620
591
  isActive: true,
621
592
  createdBy: "system",
622
593
  },
623
594
  {
624
- question: "Do you ship to PO boxes?",
625
- answer: "No, we do not ship to PO boxes. Please provide a physical address with landmark for successful delivery.",
626
- category: "shipping",
595
+ question: "Will I get a tracking number after my order ships?",
596
+ answer: "<p>Yes. Once the seller marks your order as shipped, you will receive an <strong>email notification with the tracking number and courier name</strong>. You can also view tracking details on your order page under <strong>My Orders</strong>.</p>",
597
+ category: "shipping_delivery",
627
598
  showOnHomepage: false,
628
599
  showInFooter: false,
629
600
  isPinned: false,
630
- order: 6,
631
- priority: 5,
632
- tags: ["PO box", "delivery", "address"],
601
+ order: 4,
602
+ priority: 8,
603
+ tags: ["tracking", "tracking-number", "shipped", "courier"],
633
604
  relatedFAQs: [],
634
605
  useSiteSettings: false,
635
- variables: [],
636
- stats: { views: 0, helpful: 0, notHelpful: 0 },
606
+ stats: { views: 720, helpful: 610, notHelpful: 28 },
637
607
  seo: {
638
- slug: "po-box-shipping",
639
- metaTitle: "PO Box Shipping | LetItRip Delivery Restrictions",
640
- metaDescription: "LetItRip does not ship to PO boxes. Provide a physical address with landmark for delivery.",
608
+ slug: "will-i-get-tracking-number",
609
+ metaTitle: "Will I Get a Tracking Number? | LetItRip Shipment Tracking",
610
+ metaDescription: "Receive a tracking number by email once your seller ships your LetItRip order. Track via My Orders too.",
641
611
  },
642
612
  isActive: true,
643
613
  createdBy: "system",
644
614
  },
645
615
  {
646
- question: "Is signature required for delivery?",
647
- answer: "Yes, all deliveries require a signature for security. Someone 18+ must be present to receive and sign for the package.",
648
- category: "shipping",
616
+ question: "How are graded cards (PSA/BGS slabs) packaged for shipping?",
617
+ answer: "<p>Sellers who specialise in graded cards typically use <strong>bubble wrap, foam inserts, and rigid cardboard boxes</strong> to protect slabs during transit. Some use double-boxing for extra safety. We strongly recommend purchasing only from sellers who describe their graded card packaging — check their store reviews for buyer feedback on packaging quality.</p>",
618
+ category: "shipping_delivery",
649
619
  showOnHomepage: false,
650
620
  showInFooter: false,
651
621
  isPinned: false,
652
- order: 7,
653
- priority: 5,
654
- tags: ["signature", "delivery", "security"],
622
+ order: 5,
623
+ priority: 7,
624
+ tags: ["graded", "psa", "bgs", "slab", "packaging", "shipping"],
655
625
  relatedFAQs: [],
656
626
  useSiteSettings: false,
657
- variables: [],
658
- stats: { views: 0, helpful: 0, notHelpful: 0 },
627
+ stats: { views: 580, helpful: 500, notHelpful: 18 },
659
628
  seo: {
660
- slug: "signature-required-delivery",
661
- metaTitle: "Signature Required | LetItRip Delivery Policy",
662
- metaDescription: "All LetItRip deliveries require signature from someone 18+ for security purposes.",
629
+ slug: "graded-card-packaging-shipping",
630
+ metaTitle: "How Are Graded PSA/BGS Slabs Shipped? | LetItRip FAQ",
631
+ metaDescription: "Graded cards on LetItRip are packaged by sellers using bubble wrap and rigid boxes. Check store reviews for packaging quality.",
663
632
  },
664
633
  isActive: true,
665
634
  createdBy: "system",
666
635
  },
667
636
  {
668
- question: "Can I track my shipment in real-time?",
669
- answer: "Yes, once shipped, you'll receive a tracking link via SMS and email. The tracking page shows real-time location updates and estimated delivery time.",
670
- category: "shipping",
637
+ question: "Do sellers ship internationally?",
638
+ answer: "<p>Most LetItRip sellers currently ship within India only. International shipping, if offered, is clearly stated in the seller's store page and product listing. Check the listing for delivery country eligibility before ordering.</p>",
639
+ category: "shipping_delivery",
671
640
  showOnHomepage: false,
672
641
  showInFooter: false,
673
642
  isPinned: false,
674
- order: 8,
675
- priority: 7,
676
- tags: ["tracking", "real-time", "delivery"],
643
+ order: 6,
644
+ priority: 6,
645
+ tags: ["international", "worldwide", "shipping", "india-only"],
677
646
  relatedFAQs: [],
678
647
  useSiteSettings: false,
679
- variables: [],
680
- stats: { views: 0, helpful: 0, notHelpful: 0 },
648
+ stats: { views: 410, helpful: 330, notHelpful: 30 },
681
649
  seo: {
682
- slug: "real-time-tracking",
683
- metaTitle: "Real-Time Tracking | LetItRip Shipment Location",
684
- metaDescription: "Track your LetItRip shipment in real-time with SMS and email tracking links. See live location updates.",
650
+ slug: "do-sellers-ship-internationally",
651
+ metaTitle: "Do LetItRip Sellers Ship Internationally? | FAQ",
652
+ metaDescription: "Most LetItRip sellers ship within India. Check each product listing for international shipping availability.",
685
653
  },
686
654
  isActive: true,
687
655
  createdBy: "system",
688
656
  },
689
657
  {
690
- question: "What if my package is damaged during shipping?",
691
- answer: "If your package arrives damaged, take photos and refuse delivery if possible. Contact us immediately at {{supportEmail}} within 24 hours for a replacement or refund.",
692
- category: "shipping",
658
+ question: "Can I change my delivery address after placing an order?",
659
+ answer: "<p>Address changes after order placement depend on whether the seller has already dispatched the item. Contact the seller immediately through your order page. If the item hasn't shipped yet, sellers can usually update the address. Once shipped, address changes are not possible.</p>",
660
+ category: "shipping_delivery",
693
661
  showOnHomepage: false,
694
662
  showInFooter: false,
695
663
  isPinned: false,
696
- order: 9,
664
+ order: 7,
697
665
  priority: 6,
698
- tags: ["damaged", "package", "refund"],
666
+ tags: ["address-change", "delivery-address", "order"],
699
667
  relatedFAQs: [],
700
- useSiteSettings: true,
701
- variables: ["supportEmail"],
702
- stats: { views: 0, helpful: 0, notHelpful: 0 },
668
+ useSiteSettings: false,
669
+ stats: { views: 380, helpful: 300, notHelpful: 22 },
703
670
  seo: {
704
- slug: "damaged-package",
705
- metaTitle: "Damaged Package | LetItRip Shipping Claims",
706
- metaDescription: "Received damaged package? Report within 24 hours with photos for replacement or refund.",
671
+ slug: "change-delivery-address-after-order",
672
+ metaTitle: "Can I Change My Delivery Address After Ordering? | LetItRip",
673
+ metaDescription: "Contact the seller immediately to change your delivery address. Changes are only possible before the item is shipped.",
707
674
  },
708
675
  isActive: true,
709
676
  createdBy: "system",
710
677
  },
711
678
  {
712
- question: "Do you ship to military APO/FPO addresses?",
713
- answer: "No, we currently do not ship to military APO/FPO addresses. We only deliver to physical addresses within India.",
714
- category: "shipping",
679
+ question: "What happens if my package is lost in transit?",
680
+ answer: "<p>If your package is lost:</p><ol><li>First check the tracking status for the latest courier update</li><li>Contact the seller via your order page — they are responsible for filing a claim with the courier</li><li>If the seller is unresponsive within 48 hours, contact LetItRip support at <strong>{{supportEmail}}</strong></li></ol><p>Sellers are encouraged to use insured shipping for high-value cards.</p>",
681
+ category: "shipping_delivery",
715
682
  showOnHomepage: false,
716
683
  showInFooter: false,
717
684
  isPinned: false,
718
- order: 10,
719
- priority: 3,
720
- tags: ["military", "APO", "FPO"],
685
+ order: 8,
686
+ priority: 8,
687
+ tags: ["lost", "lost-package", "courier", "claim", "transit"],
721
688
  relatedFAQs: [],
722
- useSiteSettings: false,
723
- variables: [],
724
- stats: { views: 0, helpful: 0, notHelpful: 0 },
689
+ useSiteSettings: true,
690
+ stats: { views: 620, helpful: 530, notHelpful: 28 },
725
691
  seo: {
726
- slug: "military-address-shipping",
727
- metaTitle: "Military Address Shipping | LetItRip APO/FPO",
728
- metaDescription: "LetItRip does not ship to military APO/FPO addresses. Only physical addresses within India.",
692
+ slug: "package-lost-in-transit",
693
+ metaTitle: "What If My Package Is Lost in Transit? | LetItRip FAQ",
694
+ metaDescription: "Contact your seller first if your package is lost. LetItRip support can assist if the seller is unresponsive.",
729
695
  },
730
696
  isActive: true,
731
697
  createdBy: "system",
732
698
  },
733
699
  {
734
- question: "Can I schedule a specific delivery date?",
735
- answer: "Scheduled delivery is available for select pin codes. Choose your preferred date at checkout if available in your area.",
736
- category: "shipping",
700
+ question: "What if my order arrives damaged?",
701
+ answer: "<p>If your order arrives damaged:</p><ol><li><strong>Photograph the damage immediately</strong> — including the outer packaging and the item</li><li>Contact the seller via the order page within <strong>48 hours of delivery</strong></li><li>Share the photos most sellers will arrange a replacement or refund per their return policy</li><li>If unresolved, contact LetItRip support with your order ID and photos</li></ol>",
702
+ category: "shipping_delivery",
737
703
  showOnHomepage: false,
738
704
  showInFooter: false,
739
705
  isPinned: false,
740
- order: 11,
741
- priority: 4,
742
- tags: ["scheduled", "delivery", "date"],
706
+ order: 9,
707
+ priority: 9,
708
+ tags: ["damaged", "broken", "delivery", "return", "refund"],
743
709
  relatedFAQs: [],
744
710
  useSiteSettings: false,
745
- variables: [],
746
- stats: { views: 0, helpful: 0, notHelpful: 0 },
711
+ stats: { views: 730, helpful: 640, notHelpful: 30 },
747
712
  seo: {
748
- slug: "scheduled-delivery",
749
- metaTitle: "Scheduled Delivery | LetItRip Delivery Date Selection",
750
- metaDescription: "Schedule your delivery date at checkout for select areas. Choose convenient delivery timing.",
713
+ slug: "order-arrived-damaged",
714
+ metaTitle: "What to Do If My Order Arrives Damaged? | LetItRip FAQ",
715
+ metaDescription: "Photograph damage immediately and contact the seller within 48 hours. LetItRip support can escalate if needed.",
751
716
  },
752
717
  isActive: true,
753
718
  createdBy: "system",
754
719
  },
755
720
  {
756
- question: "What courier services do you use?",
757
- answer: "We partner with India Post, BlueDart, Delhivery, DTDC, and other reliable courier services based on your location and product type.",
758
- category: "shipping",
721
+ question: "Does the seller ship to all pincodes?",
722
+ answer: "<p>Not necessarily. Each seller's courier partners may have limited pincode coverage, especially for remote areas. You can check delivery eligibility by entering your pincode on the product listing page before adding to cart.</p>",
723
+ category: "shipping_delivery",
759
724
  showOnHomepage: false,
760
725
  showInFooter: false,
761
726
  isPinned: false,
762
- order: 12,
763
- priority: 4,
764
- tags: ["courier", "delivery partners", "shipping"],
727
+ order: 10,
728
+ priority: 5,
729
+ tags: ["pincode", "delivery", "coverage", "remote"],
765
730
  relatedFAQs: [],
766
731
  useSiteSettings: false,
767
- variables: [],
768
- stats: { views: 0, helpful: 0, notHelpful: 0 },
732
+ stats: { views: 350, helpful: 280, notHelpful: 20 },
769
733
  seo: {
770
- slug: "courier-partners",
771
- metaTitle: "Courier Partners | LetItRip Delivery Services",
772
- metaDescription: "LetItRip partners with India Post, BlueDart, Delhivery, DTDC for reliable deliveries across India.",
734
+ slug: "seller-pincode-coverage",
735
+ metaTitle: "Does the Seller Ship to My Pincode? | LetItRip FAQ",
736
+ metaDescription: "Check your pincode on the product page for delivery eligibility. Coverage varies by seller and courier.",
773
737
  },
774
738
  isActive: true,
775
739
  createdBy: "system",
776
740
  },
741
+ // ============================================
742
+ // RETURNS & REFUNDS — 10 FAQs
743
+ // ============================================
777
744
  {
778
- question: "Is weekend delivery available?",
779
- answer: "Yes, we deliver on Saturdays. Sunday delivery is available in select metro cities for an additional charge.",
780
- category: "shipping",
745
+ question: "What is LetItRip's return policy?",
746
+ answer: "<p>LetItRip does not have a single platform-wide return policy. <strong>Return and refund terms are set by each individual seller</strong>. Before purchasing, always review the seller's return policy listed on their store page or product description. Common seller policies range from no returns to 7-day returns for items not as described.</p>",
747
+ category: "returns_refunds",
781
748
  showOnHomepage: false,
782
- showInFooter: false,
783
- isPinned: false,
784
- order: 13,
785
- priority: 5,
786
- tags: ["weekend", "saturday", "sunday"],
749
+ showInFooter: true,
750
+ isPinned: true,
751
+ order: 1,
752
+ priority: 10,
753
+ tags: ["return-policy", "refund", "seller-policy", "returns"],
787
754
  relatedFAQs: [],
788
755
  useSiteSettings: false,
789
- variables: [],
790
- stats: { views: 0, helpful: 0, notHelpful: 0 },
756
+ stats: { views: 1320, helpful: 1100, notHelpful: 58 },
791
757
  seo: {
792
- slug: "weekend-delivery",
793
- metaTitle: "Weekend Delivery | LetItRip Saturday & Sunday Shipping",
794
- metaDescription: "Saturday delivery included. Sunday delivery available in metro cities for additional charge.",
758
+ slug: "return-policy",
759
+ metaTitle: "What Is the Return Policy on LetItRip? | Refunds FAQ",
760
+ metaDescription: "Return policies on LetItRip are set by individual sellers, not the platform. Check each seller's store page for their policy.",
795
761
  },
796
762
  isActive: true,
797
763
  createdBy: "system",
798
764
  },
799
765
  {
800
- question: "What is the weight limit for shipments?",
801
- answer: "Individual packages are limited to 30kg. For heavier items, sellers may split orders into multiple shipments.",
802
- category: "shipping",
766
+ question: "How do I initiate a return?",
767
+ answer: "<p>To initiate a return:</p><ol><li>Go to <strong>My Orders</strong> and open the relevant order</li><li>Click <strong>Request Return</strong> and describe the reason</li><li>The seller will review your request and respond within their stated timeline</li><li>If approved, you'll receive return shipping instructions from the seller</li></ol><p>Return eligibility, deadlines, and shipping costs are governed by the seller's policy.</p>",
768
+ category: "returns_refunds",
803
769
  showOnHomepage: false,
804
770
  showInFooter: false,
805
771
  isPinned: false,
806
- order: 14,
807
- priority: 3,
808
- tags: ["weight", "limit", "heavy items"],
772
+ order: 2,
773
+ priority: 8,
774
+ tags: ["return", "refund", "how-to", "my-orders"],
809
775
  relatedFAQs: [],
810
776
  useSiteSettings: false,
811
- variables: [],
812
- stats: { views: 0, helpful: 0, notHelpful: 0 },
777
+ stats: { views: 820, helpful: 700, notHelpful: 38 },
813
778
  seo: {
814
- slug: "shipping-weight-limit",
815
- metaTitle: "Shipping Weight Limit | LetItRip Heavy Items",
816
- metaDescription: "Individual packages limited to 30kg. Heavy items may be split into multiple shipments.",
779
+ slug: "how-to-initiate-return",
780
+ metaTitle: "How to Initiate a Return on LetItRip | Step-by-Step Guide",
781
+ metaDescription: "Initiate a return from My Orders. The seller reviews your request and provides return instructions.",
817
782
  },
818
783
  isActive: true,
819
784
  createdBy: "system",
820
785
  },
821
786
  {
822
- question: "Do you offer cash on delivery (COD)?",
823
- answer: "Yes, COD is available for orders up to ₹50,000. A nominal COD handling fee may apply depending on the seller.",
824
- category: "shipping",
787
+ question: "Is return shipping free?",
788
+ answer: "<p><strong>Return shipping costs depend on the seller's policy.</strong> Some sellers cover return shipping for items that are damaged or not as described; others require the buyer to bear return shipping costs. Check the seller's return policy on their store page before purchasing. LetItRip does not reimburse return shipping costs independently of the seller's decision.</p>",
789
+ category: "returns_refunds",
825
790
  showOnHomepage: false,
826
- showInFooter: false,
791
+ showInFooter: true,
827
792
  isPinned: false,
828
- order: 15,
829
- priority: 7,
830
- tags: ["COD", "cash on delivery", "payment"],
793
+ order: 3,
794
+ priority: 9,
795
+ tags: ["return-shipping", "free-returns", "seller-policy", "shipping-cost"],
831
796
  relatedFAQs: [],
832
797
  useSiteSettings: false,
833
- variables: [],
834
- stats: { views: 0, helpful: 0, notHelpful: 0 },
798
+ stats: { views: 980, helpful: 820, notHelpful: 50 },
835
799
  seo: {
836
- slug: "cash-on-delivery",
837
- metaTitle: "Cash on Delivery | LetItRip COD Payment",
838
- metaDescription: "COD available for orders up to ₹50,000. Nominal handling fee may apply depending on seller.",
800
+ slug: "is-return-shipping-free",
801
+ metaTitle: "Is Return Shipping Free on LetItRip? | Returns FAQ",
802
+ metaDescription: "Return shipping costs are set by each seller. Check the seller's policy before purchasing.",
839
803
  },
840
804
  isActive: true,
841
805
  createdBy: "system",
842
806
  },
843
- // ============================================
844
- // RETURNS (12 FAQs)
845
- // ============================================
846
807
  {
847
- question: "What is your return policy?",
848
- answer: "Returns are accepted within 7-14 days of delivery depending on the product category. Items must be unused, in original packaging with tags. Return shipping costs may apply unless mentioned otherwise by the seller.",
849
- category: "returns",
850
- showOnHomepage: true,
808
+ question: "What if I receive the wrong item?",
809
+ answer: "<p>If you receive an item different from what you ordered:</p><ol><li>Photograph the received item next to its packaging</li><li>Contact the seller immediately via your order page with photos</li><li>The seller is responsible for sending the correct item or issuing a full refund, including any return shipping costs</li><li>If the seller doesn't resolve it within <strong>72 hours</strong>, escalate to LetItRip support</li></ol>",
810
+ category: "returns_refunds",
811
+ showOnHomepage: false,
851
812
  showInFooter: false,
852
813
  isPinned: false,
853
- order: 1,
814
+ order: 4,
854
815
  priority: 9,
855
- tags: ["returns", "policy", "refund"],
816
+ tags: ["wrong-item", "incorrect", "return", "refund"],
856
817
  relatedFAQs: [],
857
818
  useSiteSettings: false,
858
- variables: [],
859
- stats: { views: 0, helpful: 0, notHelpful: 0 },
819
+ stats: { views: 690, helpful: 600, notHelpful: 28 },
860
820
  seo: {
861
- slug: "return-policy",
862
- metaTitle: "Return Policy | LetItRip Returns & Refunds",
863
- metaDescription: "Return within 7-14 days. Items must be unused with tags. Return shipping may apply per seller policy.",
821
+ slug: "received-wrong-item",
822
+ metaTitle: "What If I Received the Wrong Item? | LetItRip FAQ",
823
+ metaDescription: "Contact the seller with photos if you receive the wrong Pokemon card. Escalate to LetItRip support if unresolved.",
864
824
  },
865
825
  isActive: true,
866
826
  createdBy: "system",
867
827
  },
868
828
  {
869
- question: "How do I initiate a return?",
870
- answer: 'Go to "My Orders", select the product, click "Return Item", choose a reason, and submit. You\'ll receive return instructions via email within 24 hours.',
871
- category: "returns",
829
+ question: "How long does a refund take?",
830
+ answer: "<p>Once the seller approves your refund, processing times are:</p><ul><li><strong>UPI / Wallets:</strong> 1–3 business days</li><li><strong>Debit/Credit Cards:</strong> 5–7 business days</li><li><strong>Net Banking:</strong> 3–5 business days</li></ul><p>The refund timeline starts after the seller confirms the return, not from the date you raise the request.</p>",
831
+ category: "returns_refunds",
872
832
  showOnHomepage: false,
873
833
  showInFooter: false,
874
834
  isPinned: false,
875
- order: 2,
835
+ order: 5,
876
836
  priority: 8,
877
- tags: ["return", "process", "how to"],
837
+ tags: ["refund", "refund-time", "processing", "upi", "bank"],
878
838
  relatedFAQs: [],
879
839
  useSiteSettings: false,
880
- variables: [],
881
- stats: { views: 0, helpful: 0, notHelpful: 0 },
840
+ stats: { views: 870, helpful: 750, notHelpful: 32 },
882
841
  seo: {
883
- slug: "initiate-return",
884
- metaTitle: "How to Return | LetItRip Return Process",
885
- metaDescription: "Initiate returns from My Orders section. Choose reason and receive return instructions within 24 hours.",
842
+ slug: "how-long-does-refund-take",
843
+ metaTitle: "How Long Does a Refund Take? | LetItRip Refund Timeline",
844
+ metaDescription: "Refunds on LetItRip take 1–7 business days depending on payment method, starting after seller approval.",
886
845
  },
887
846
  isActive: true,
888
847
  createdBy: "system",
889
848
  },
890
849
  {
891
- question: "Who pays for return shipping?",
892
- answer: "Return shipping costs depend on the seller's policy and reason for return. If the product is defective or wrong item, seller covers shipping. For change of mind, customer may bear return costs.",
893
- category: "returns",
850
+ question: "Can I return a graded (PSA/BGS) card?",
851
+ answer: "<p>Returns for graded cards are subject to each seller's policy. Most sellers of graded cards accept returns only if the card is <strong>not as described</strong> (e.g., wrong grade, wrong card, damaged slab). Returns for change-of-mind on graded cards are typically not accepted. Always confirm with the seller before purchasing high-value slabs.</p>",
852
+ category: "returns_refunds",
894
853
  showOnHomepage: false,
895
854
  showInFooter: false,
896
855
  isPinned: false,
897
- order: 3,
856
+ order: 6,
898
857
  priority: 8,
899
- tags: ["return shipping", "cost", "charges"],
858
+ tags: ["graded", "psa", "bgs", "slab", "return", "refund"],
900
859
  relatedFAQs: [],
901
860
  useSiteSettings: false,
902
- variables: [],
903
- stats: { views: 0, helpful: 0, notHelpful: 0 },
861
+ stats: { views: 560, helpful: 490, notHelpful: 28 },
904
862
  seo: {
905
- slug: "return-shipping-cost",
906
- metaTitle: "Return Shipping Cost | LetItRip Who Pays",
907
- metaDescription: "Return shipping costs vary by seller policy. Defective items: seller pays. Change of mind: customer may pay.",
863
+ slug: "return-graded-psa-bgs-card",
864
+ metaTitle: "Can I Return a PSA or BGS Graded Card? | LetItRip FAQ",
865
+ metaDescription: "Returns for graded cards depend on each seller's policy. Most accept returns only for items not as described.",
908
866
  },
909
867
  isActive: true,
910
868
  createdBy: "system",
911
869
  },
912
870
  {
913
- question: "When will I receive my refund?",
914
- answer: "Refunds are processed within 5-7 platform days after the returned item is received and inspected. The amount is credited to your original payment method.",
915
- category: "returns",
871
+ question: "Can I return a sealed booster pack or box?",
872
+ answer: "<p>Sealed products are generally non-returnable once the seal has been broken. If the product was damaged in transit or received in an unsealed condition, contact the seller with photographic evidence immediately. The seller's policy governs whether a return or replacement is offered.</p>",
873
+ category: "returns_refunds",
916
874
  showOnHomepage: false,
917
875
  showInFooter: false,
918
876
  isPinned: false,
919
- order: 4,
877
+ order: 7,
920
878
  priority: 7,
921
- tags: ["refund", "timing", "processing"],
879
+ tags: ["sealed", "booster-pack", "booster-box", "return"],
922
880
  relatedFAQs: [],
923
881
  useSiteSettings: false,
924
- variables: [],
925
- stats: { views: 0, helpful: 0, notHelpful: 0 },
882
+ stats: { views: 490, helpful: 420, notHelpful: 22 },
926
883
  seo: {
927
- slug: "refund-processing-time",
928
- metaTitle: "Refund Processing Time | LetItRip Money Back",
929
- metaDescription: "Refunds processed within 5-7 days after item inspection. Credited to original payment method.",
884
+ slug: "return-sealed-booster-pack",
885
+ metaTitle: "Can I Return a Sealed Booster Pack or Box? | LetItRip FAQ",
886
+ metaDescription: "Sealed products are non-returnable once opened. Damaged or unsealed deliveries follow the seller's return policy.",
930
887
  },
931
888
  isActive: true,
932
889
  createdBy: "system",
933
890
  },
934
891
  {
935
- question: "Can I exchange an item instead of returning it?",
936
- answer: 'Yes, exchanges are available for size or color variations if the same product is in stock. Select "Exchange" option when initiating the return.',
937
- category: "returns",
892
+ question: "Can I get a refund on an auction purchase?",
893
+ answer: "<p>Auction purchases are generally <strong>final and non-refundable</strong> unless the item received is significantly not as described (wrong card, wrong grade, damaged in transit). Buyers are encouraged to ask the seller all questions before bidding. Refunds for auction wins are handled case-by-case by the seller, and LetItRip support can mediate if needed.</p>",
894
+ category: "returns_refunds",
938
895
  showOnHomepage: false,
939
896
  showInFooter: false,
940
897
  isPinned: false,
941
- order: 5,
942
- priority: 6,
943
- tags: ["exchange", "swap", "size"],
898
+ order: 8,
899
+ priority: 8,
900
+ tags: ["auction", "refund", "return", "non-refundable"],
944
901
  relatedFAQs: [],
945
902
  useSiteSettings: false,
946
- variables: [],
947
- stats: { views: 0, helpful: 0, notHelpful: 0 },
903
+ stats: { views: 540, helpful: 460, notHelpful: 35 },
948
904
  seo: {
949
- slug: "product-exchange",
950
- metaTitle: "Product Exchange | LetItRip Size & Color Swap",
951
- metaDescription: "Exchange for different size or color if in stock. Select exchange option when initiating return.",
905
+ slug: "refund-auction-purchase",
906
+ metaTitle: "Can I Get a Refund on an Auction Purchase? | LetItRip FAQ",
907
+ metaDescription: "Auction purchases are final unless the item is significantly not as described. Contact the seller or LetItRip support.",
952
908
  },
953
909
  isActive: true,
954
910
  createdBy: "system",
955
911
  },
956
912
  {
957
- question: "What items cannot be returned?",
958
- answer: 'Non-returnable items include: personal care products, innerwear, food items, customized products, and items marked as "non-returnable" on the product page.',
959
- category: "returns",
913
+ question: "What if the seller refuses my return request?",
914
+ answer: "<p>If a seller refuses a return request you believe is valid (e.g., item not as described, damaged in transit):</p><ol><li>Document everything — photos, order details, and your communication with the seller</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with your order ID</li><li>Our team will mediate and can take action against sellers who violate platform policies</li></ol>",
915
+ category: "returns_refunds",
960
916
  showOnHomepage: false,
961
917
  showInFooter: false,
962
918
  isPinned: false,
963
- order: 6,
964
- priority: 7,
965
- tags: ["non-returnable", "exceptions", "policy"],
919
+ order: 9,
920
+ priority: 9,
921
+ tags: ["return-refused", "dispute", "seller", "mediation", "support"],
966
922
  relatedFAQs: [],
967
- useSiteSettings: false,
968
- variables: [],
969
- stats: { views: 0, helpful: 0, notHelpful: 0 },
923
+ useSiteSettings: true,
924
+ stats: { views: 620, helpful: 560, notHelpful: 28 },
970
925
  seo: {
971
- slug: "non-returnable-items",
972
- metaTitle: "Non-Returnable Items | LetItRip Return Exceptions",
973
- metaDescription: "Personal care, innerwear, food, customized items cannot be returned. Check product page for details.",
926
+ slug: "seller-refused-return-request",
927
+ metaTitle: "What If the Seller Refuses My Return? | LetItRip Dispute",
928
+ metaDescription: "If a seller refuses a valid return, contact LetItRip support. We mediate and enforce platform policies.",
974
929
  },
975
930
  isActive: true,
976
931
  createdBy: "system",
977
932
  },
978
933
  {
979
- question: "Do I need the original packaging for returns?",
980
- answer: "Yes, items must be returned in original packaging with all tags, labels, and accessories intact. Damaged packaging may result in partial refund or rejection.",
981
- category: "returns",
934
+ question: "How do I report a counterfeit or fake card?",
935
+ answer: "<p>If you receive a card you believe to be counterfeit:</p><ol><li>Do <strong>not</strong> return it yet preserve it as evidence</li><li>Take clear photos (front, back, side profile) under good lighting</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with your order ID and photos</li></ol><p>Selling counterfeit cards is a serious violation and results in immediate seller suspension and legal referral where applicable.</p>",
936
+ category: "returns_refunds",
982
937
  showOnHomepage: false,
983
938
  showInFooter: false,
984
939
  isPinned: false,
985
- order: 7,
986
- priority: 6,
987
- tags: ["packaging", "condition", "requirements"],
940
+ order: 10,
941
+ priority: 10,
942
+ tags: ["fake", "counterfeit", "proxy", "fraud", "authenticity"],
988
943
  relatedFAQs: [],
989
- useSiteSettings: false,
990
- variables: [],
991
- stats: { views: 0, helpful: 0, notHelpful: 0 },
944
+ useSiteSettings: true,
945
+ stats: { views: 740, helpful: 680, notHelpful: 22 },
992
946
  seo: {
993
- slug: "return-packaging-requirements",
994
- metaTitle: "Return Packaging | LetItRip Return Conditions",
995
- metaDescription: "Return items in original packaging with tags intact. Damaged packaging may affect refund.",
947
+ slug: "report-counterfeit-fake-card",
948
+ metaTitle: "How to Report a Counterfeit Pokemon Card | LetItRip",
949
+ metaDescription: "Received a fake Pokemon card? Contact LetItRip support with photos. Sellers of counterfeits are immediately suspended.",
996
950
  },
997
951
  isActive: true,
998
952
  createdBy: "system",
999
953
  },
954
+ // ============================================
955
+ // PRODUCT INFORMATION — 10 FAQs
956
+ // ============================================
1000
957
  {
1001
- question: "What if I receive a defective product?",
1002
- answer: "Contact us immediately at {{supportEmail}} with photos of the defect. We'll arrange a free return pickup and provide a full refund or replacement.",
1003
- category: "returns",
958
+ question: "Are all Pokemon cards on LetItRip authentic?",
959
+ answer: "<p>Authenticity is our top priority. All sellers are vetted before listing, and listings are subject to ongoing review. However, as a marketplace, LetItRip relies on sellers to accurately represent their products. We <strong>strongly recommend</strong> purchasing graded cards from sellers with verified badges and reviewing store ratings before buying raw cards. Report any suspected fakes immediately.</p>",
960
+ category: "product_information",
1004
961
  showOnHomepage: false,
1005
962
  showInFooter: false,
1006
- isPinned: false,
1007
- order: 8,
1008
- priority: 8,
1009
- tags: ["defective", "damaged", "quality"],
963
+ isPinned: true,
964
+ order: 1,
965
+ priority: 10,
966
+ tags: ["authentic", "genuine", "fake", "counterfeit", "pokemon", "tcg"],
1010
967
  relatedFAQs: [],
1011
- useSiteSettings: true,
1012
- variables: ["supportEmail"],
1013
- stats: { views: 0, helpful: 0, notHelpful: 0 },
968
+ useSiteSettings: false,
969
+ stats: { views: 1050, helpful: 920, notHelpful: 38 },
1014
970
  seo: {
1015
- slug: "defective-product-return",
1016
- metaTitle: "Defective Product | LetItRip Quality Issues",
1017
- metaDescription: "Received defective item? Contact us with photos for free return pickup and full refund or replacement.",
971
+ slug: "are-cards-authentic",
972
+ metaTitle: "Are Pokemon Cards on LetItRip Authentic? | FAQ",
973
+ metaDescription: "LetItRip vets all sellers for authenticity. Buy graded cards from verified sellers for maximum confidence.",
1018
974
  },
1019
975
  isActive: true,
1020
976
  createdBy: "system",
1021
977
  },
1022
978
  {
1023
- question: "Can I return a gift?",
1024
- answer: "Yes, gifts can be returned within the standard return period. Refunds will be issued as store credit or to the original purchaser's payment method.",
1025
- category: "returns",
979
+ question: "What does '1st Edition' mean for Pokemon cards?",
980
+ answer: "<p>First Edition cards were printed in the very first production run of a Pokemon TCG set. They are identified by a <strong>small '1st Edition' stamp</strong> on the left side of the card art. First Edition Base Set cards (1999) are among the most valuable in the hobby. Non-1st Edition prints from the same set are called <strong>Unlimited</strong> and are more common.</p>",
981
+ category: "product_information",
1026
982
  showOnHomepage: false,
1027
983
  showInFooter: false,
1028
984
  isPinned: false,
1029
- order: 9,
1030
- priority: 5,
1031
- tags: ["gifts", "return", "refund"],
985
+ order: 2,
986
+ priority: 8,
987
+ tags: ["1st-edition", "first-edition", "base-set", "stamp", "value"],
1032
988
  relatedFAQs: [],
1033
989
  useSiteSettings: false,
1034
- variables: [],
1035
- stats: { views: 0, helpful: 0, notHelpful: 0 },
990
+ stats: { views: 870, helpful: 750, notHelpful: 22 },
1036
991
  seo: {
1037
- slug: "gift-return",
1038
- metaTitle: "Gift Returns | LetItRip Gift Policy",
1039
- metaDescription: "Return gifts within standard period. Refund as store credit or to original purchaser payment method.",
992
+ slug: "what-is-1st-edition-pokemon-card",
993
+ metaTitle: "What Does '1st Edition' Mean for Pokemon Cards? | LetItRip",
994
+ metaDescription: "1st Edition Pokemon cards were printed in the first production run of a set and carry a special stamp on the card art.",
1040
995
  },
1041
996
  isActive: true,
1042
997
  createdBy: "system",
1043
998
  },
1044
999
  {
1045
- question: "How do I track my return?",
1046
- answer: 'Once your return is picked up, you\'ll receive a tracking number via email. Track the return status in "My Orders" section under "Returns & Refunds".',
1047
- category: "returns",
1000
+ question: "What is PSA / BGS / CGC grading?",
1001
+ answer: "<p>Professional grading companies evaluate the condition of a card and assign a numeric grade (1–10), then seal it in a tamper-evident protective case called a <strong>slab</strong>:</p><ul><li><strong>PSA</strong> (Professional Sports Authenticator) — industry standard; PSA 10 is near-perfect</li><li><strong>BGS</strong> (Beckett Grading Services) — uses subgrades for centering, corners, edges, surface; BGS 10 is called Pristine</li><li><strong>CGC</strong> — newer, growing in popularity</li></ul><p>Graded cards command premiums over raw cards because of guaranteed authenticity and condition.</p>",
1002
+ category: "product_information",
1048
1003
  showOnHomepage: false,
1049
1004
  showInFooter: false,
1050
1005
  isPinned: false,
1051
- order: 10,
1052
- priority: 5,
1053
- tags: ["return tracking", "status", "updates"],
1006
+ order: 3,
1007
+ priority: 9,
1008
+ tags: ["psa", "bgs", "cgc", "grading", "slab", "grade"],
1054
1009
  relatedFAQs: [],
1055
1010
  useSiteSettings: false,
1056
- variables: [],
1057
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1011
+ stats: { views: 1100, helpful: 980, notHelpful: 30 },
1058
1012
  seo: {
1059
- slug: "track-return",
1060
- metaTitle: "Track Return | LetItRip Return Status",
1061
- metaDescription: "Track your return with tracking number in email or check My Orders section for return status.",
1013
+ slug: "what-is-psa-bgs-cgc-grading",
1014
+ metaTitle: "What Is PSA, BGS, CGC Grading? | Pokemon Card Grades Explained",
1015
+ metaDescription: "PSA, BGS, and CGC are professional grading companies that authenticate Pokemon cards and assign condition grades 1–10.",
1062
1016
  },
1063
1017
  isActive: true,
1064
1018
  createdBy: "system",
1065
1019
  },
1066
1020
  {
1067
- question: "What if my return is rejected?",
1068
- answer: "If your return is rejected due to policy violation or item condition, we'll notify you via email with the reason. The item will be shipped back to you at your expense.",
1069
- category: "returns",
1021
+ question: "What card conditions are used on LetItRip?",
1022
+ answer: "<p>Sellers on LetItRip use standard Pokemon TCG card condition grades:</p><ul><li><strong>Mint (M)</strong> — Near perfect, virtually unplayed</li><li><strong>Near Mint (NM)</strong> — Minimal wear, sharp corners</li><li><strong>Lightly Played (LP)</strong> — Minor edge wear or scratches</li><li><strong>Moderately Played (MP)</strong> — Visible wear on corners, edges, or face</li><li><strong>Heavily Played (HP)</strong> Significant wear, still identifiable</li><li><strong>Damaged (D)</strong> Major physical damage</li></ul><p>Always check the seller's photos and description. For high-value purchases, ask for additional photos.</p>",
1023
+ category: "product_information",
1070
1024
  showOnHomepage: false,
1071
1025
  showInFooter: false,
1072
1026
  isPinned: false,
1073
- order: 11,
1074
- priority: 4,
1075
- tags: ["rejected", "return", "policy"],
1027
+ order: 4,
1028
+ priority: 9,
1029
+ tags: ["condition", "mint", "near-mint", "played", "grading", "wear"],
1076
1030
  relatedFAQs: [],
1077
1031
  useSiteSettings: false,
1078
- variables: [],
1079
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1032
+ stats: { views: 780, helpful: 680, notHelpful: 28 },
1080
1033
  seo: {
1081
- slug: "rejected-return",
1082
- metaTitle: "Rejected Return | LetItRip Return Rejection Policy",
1083
- metaDescription: "Returns may be rejected for policy violations. Item shipped back to you at your expense with reason.",
1034
+ slug: "pokemon-card-conditions",
1035
+ metaTitle: "Pokemon Card Conditions Explained | LetItRip FAQ",
1036
+ metaDescription: "Understand Mint, Near Mint, Lightly Played, Moderately Played, Heavily Played card conditions used on LetItRip.",
1084
1037
  },
1085
1038
  isActive: true,
1086
1039
  createdBy: "system",
1087
1040
  },
1088
1041
  {
1089
- question: "Can I return sale or clearance items?",
1090
- answer: 'Sale and clearance items follow the same return policy unless marked as "final sale" or "non-returnable" on the product page.',
1091
- category: "returns",
1042
+ question: "What is a 'holo rare' card?",
1043
+ answer: "<p>A <strong>holo rare</strong> is a card with a holographic foil pattern on the card illustration (the picture area). Holo rares are denoted by a star symbol (★) in their rarity. In the Base Set, cards like Charizard, Blastoise, and Mewtwo are holo rares. They are generally more valuable than common or uncommon cards from the same set.</p>",
1044
+ category: "product_information",
1092
1045
  showOnHomepage: false,
1093
1046
  showInFooter: false,
1094
1047
  isPinned: false,
1095
- order: 12,
1096
- priority: 5,
1097
- tags: ["sale", "clearance", "final sale"],
1048
+ order: 5,
1049
+ priority: 7,
1050
+ tags: ["holo", "holo-rare", "foil", "rarity", "charizard", "base-set"],
1098
1051
  relatedFAQs: [],
1099
1052
  useSiteSettings: false,
1100
- variables: [],
1101
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1053
+ stats: { views: 680, helpful: 590, notHelpful: 20 },
1102
1054
  seo: {
1103
- slug: "sale-items-return",
1104
- metaTitle: "Sale Items Return | LetItRip Clearance Policy",
1105
- metaDescription: "Sale items returnable unless marked final sale or non-returnable. Check product page for details.",
1055
+ slug: "what-is-holo-rare-card",
1056
+ metaTitle: "What Is a Holo Rare Pokemon Card? | LetItRip FAQ",
1057
+ metaDescription: "Holo rare Pokemon cards have a holographic foil on the illustration. They are rarer and more valuable than common cards.",
1106
1058
  },
1107
1059
  isActive: true,
1108
1060
  createdBy: "system",
1109
1061
  },
1110
- // ============================================
1111
- // PAYMENT (18 FAQs)
1112
- // ============================================
1113
1062
  {
1114
- question: "What payment methods are accepted?",
1115
- answer: "We accept UPI (Google Pay, PhonePe, Paytm), credit/debit cards (Visa, Mastercard, RuPay), net banking, digital wallets, and EMI options on select purchases.",
1116
- category: "payment",
1117
- showOnHomepage: true,
1063
+ question: "What does 'raw' card mean?",
1064
+ answer: "<p>A <strong>raw card</strong> is an ungraded card one that hasn't been submitted to a professional grading company (PSA, BGS, CGC). Raw cards are not in a protective slab and their condition is assessed visually. Raw cards in high grades (NM or better) are often submitted for grading by buyers.</p>",
1065
+ category: "product_information",
1066
+ showOnHomepage: false,
1118
1067
  showInFooter: false,
1119
1068
  isPinned: false,
1120
- order: 1,
1121
- priority: 9,
1122
- tags: ["payment", "methods", "options"],
1069
+ order: 6,
1070
+ priority: 6,
1071
+ tags: ["raw", "ungraded", "condition", "grading"],
1123
1072
  relatedFAQs: [],
1124
1073
  useSiteSettings: false,
1125
- variables: [],
1126
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1074
+ stats: { views: 550, helpful: 480, notHelpful: 18 },
1127
1075
  seo: {
1128
- slug: "payment-methods",
1129
- metaTitle: "Payment Methods | LetItRip Accepted Payments",
1130
- metaDescription: "Pay with UPI, cards, net banking, wallets, or EMI. Multiple secure payment options available.",
1076
+ slug: "what-does-raw-card-mean",
1077
+ metaTitle: "What Does 'Raw Card' Mean in Pokemon TCG? | LetItRip FAQ",
1078
+ metaDescription: "A 'raw' Pokemon card is ungraded and not in a protective slab. Condition is assessed visually by the seller.",
1131
1079
  },
1132
1080
  isActive: true,
1133
1081
  createdBy: "system",
1134
1082
  },
1135
1083
  {
1136
- question: "Is it safe to use my credit card on LetItRip?",
1137
- answer: "Yes, absolutely. We use industry-standard SSL encryption and PCI DSS compliant payment gateways. Your card details are never stored on our servers.",
1138
- category: "payment",
1084
+ question: "Can I ask a seller questions before buying?",
1085
+ answer: "<p>Yes! On any product listing, you can message the seller directly using the <strong>Ask Seller</strong> button. You can request additional photos, clarify the card's condition, or ask about packaging. We recommend doing this for any card valued above ₹1,000.</p>",
1086
+ category: "product_information",
1139
1087
  showOnHomepage: false,
1140
1088
  showInFooter: false,
1141
1089
  isPinned: false,
1142
- order: 2,
1143
- priority: 8,
1144
- tags: ["security", "credit card", "safe"],
1090
+ order: 7,
1091
+ priority: 7,
1092
+ tags: ["ask-seller", "question", "contact", "listing"],
1145
1093
  relatedFAQs: [],
1146
1094
  useSiteSettings: false,
1147
- variables: [],
1148
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1095
+ stats: { views: 460, helpful: 400, notHelpful: 18 },
1149
1096
  seo: {
1150
- slug: "credit-card-security",
1151
- metaTitle: "Credit Card Security | LetItRip Safe Payments",
1152
- metaDescription: "Shop safely with SSL encryption and PCI DSS compliant gateways. Card details never stored.",
1097
+ slug: "ask-seller-questions",
1098
+ metaTitle: "Can I Ask a Seller Questions Before Buying? | LetItRip FAQ",
1099
+ metaDescription: "Use the Ask Seller button on any product page to get clarifications, photos, or condition details before purchasing.",
1153
1100
  },
1154
1101
  isActive: true,
1155
1102
  createdBy: "system",
1156
1103
  },
1157
1104
  {
1158
- question: "Do you offer EMI options?",
1159
- answer: "Yes, EMI is available on orders above ₹3,000 for 3, 6, 9, and 12 months. Select EMI at checkout and choose your preferred bank and tenure.",
1160
- category: "payment",
1105
+ question: "How do I know if the price is fair for a Pokemon card?",
1106
+ answer: "<p>A few ways to gauge fair pricing:</p><ul><li>Compare with other listings of the same card on LetItRip</li><li>Check recent sold prices on international platforms like TCGPlayer or eBay for reference (converted to INR)</li><li>For graded cards, PSA Population Reports show how many of a grade exist rarer grades command higher prices</li><li>Condition matters a lot — an NM Charizard is worth significantly more than an LP one</li></ul>",
1107
+ category: "product_information",
1161
1108
  showOnHomepage: false,
1162
1109
  showInFooter: false,
1163
1110
  isPinned: false,
1164
- order: 3,
1165
- priority: 7,
1166
- tags: ["EMI", "installments", "payment"],
1111
+ order: 8,
1112
+ priority: 6,
1113
+ tags: ["price", "fair-value", "tcgplayer", "ebay", "market-value"],
1167
1114
  relatedFAQs: [],
1168
1115
  useSiteSettings: false,
1169
- variables: [],
1170
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1116
+ stats: { views: 640, helpful: 560, notHelpful: 28 },
1171
1117
  seo: {
1172
- slug: "emi-options",
1173
- metaTitle: "EMI Options | LetItRip Installment Payments",
1174
- metaDescription: "EMI available on orders above ₹3,000. Choose 3, 6, 9, or 12 months at checkout.",
1118
+ slug: "how-to-know-fair-price",
1119
+ metaTitle: "How to Know If a Pokemon Card Price Is Fair | LetItRip FAQ",
1120
+ metaDescription: "Compare listings on LetItRip, check international sold prices on TCGPlayer/eBay, and consider card condition and grade rarity.",
1175
1121
  },
1176
1122
  isActive: true,
1177
1123
  createdBy: "system",
1178
1124
  },
1179
1125
  {
1180
- question: "What is your cancellation and refund policy?",
1181
- answer: "Orders can be cancelled before shipping. Refunds are processed within 5-7 platform days to your original payment method after cancellation or return approval.",
1182
- category: "payment",
1126
+ question: "Are product photos on listings accurate?",
1127
+ answer: "<p>Sellers are required to upload <strong>actual photos of the specific card being sold</strong> (not stock images) for all singles and graded cards. If you're buying a specific item, look for listings with multiple angles showing corners, edges, and surface. If a listing uses a stock image, contact the seller for actual photos before purchasing.</p>",
1128
+ category: "product_information",
1183
1129
  showOnHomepage: false,
1184
1130
  showInFooter: false,
1185
1131
  isPinned: false,
1186
- order: 4,
1132
+ order: 9,
1187
1133
  priority: 7,
1188
- tags: ["cancellation", "refund", "policy"],
1134
+ tags: ["photos", "listing-photos", "stock-image", "condition"],
1189
1135
  relatedFAQs: [],
1190
1136
  useSiteSettings: false,
1191
- variables: [],
1192
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1137
+ stats: { views: 420, helpful: 360, notHelpful: 22 },
1193
1138
  seo: {
1194
- slug: "cancellation-refund-policy",
1195
- metaTitle: "Cancellation & Refund | LetItRip Payment Policy",
1196
- metaDescription: "Cancel before shipping. Refunds in 5-7 days to original payment method after approval.",
1139
+ slug: "are-listing-photos-accurate",
1140
+ metaTitle: "Are Product Photos on LetItRip Accurate? | FAQ",
1141
+ metaDescription: "Sellers must upload actual photos of the card being sold. Ask the seller for more photos if stock images are used.",
1197
1142
  },
1198
1143
  isActive: true,
1199
1144
  createdBy: "system",
1200
1145
  },
1201
1146
  {
1202
- question: "Can I use multiple payment methods for one order?",
1203
- answer: "No, currently only one payment method can be used per order. You can split orders and use different payment methods for each.",
1204
- category: "payment",
1147
+ question: "What is an Elite Trainer Box (ETB)?",
1148
+ answer: "<p>An <strong>Elite Trainer Box (ETB)</strong> is an official Pokemon TCG product that includes booster packs, energy cards, card sleeves, dice, and a collector's box. ETBs are sealed products from The Pokemon Company and are popular with collectors and players. Prices vary by set — older or discontinued ETBs can command high premiums.</p>",
1149
+ category: "product_information",
1205
1150
  showOnHomepage: false,
1206
1151
  showInFooter: false,
1207
1152
  isPinned: false,
1208
- order: 5,
1153
+ order: 10,
1209
1154
  priority: 5,
1210
- tags: ["multiple payments", "split", "order"],
1155
+ tags: ["etb", "elite-trainer-box", "sealed", "booster", "pokemon"],
1211
1156
  relatedFAQs: [],
1212
1157
  useSiteSettings: false,
1213
- variables: [],
1214
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1158
+ stats: { views: 490, helpful: 430, notHelpful: 16 },
1215
1159
  seo: {
1216
- slug: "multiple-payment-methods",
1217
- metaTitle: "Multiple Payments | LetItRip Payment Options",
1218
- metaDescription: "One payment method per order. Split orders to use different payment methods.",
1160
+ slug: "what-is-elite-trainer-box-etb",
1161
+ metaTitle: "What Is an Elite Trainer Box (ETB)? | LetItRip FAQ",
1162
+ metaDescription: "An ETB is an official sealed Pokemon TCG product with booster packs, sleeves, and accessories. Popular with collectors.",
1219
1163
  },
1220
1164
  isActive: true,
1221
1165
  createdBy: "system",
1222
1166
  },
1167
+ // ============================================
1168
+ // ACCOUNT & SECURITY — 8 FAQs
1169
+ // ============================================
1223
1170
  {
1224
- question: "Why was my payment declined?",
1225
- answer: "Payments can be declined due to insufficient funds, incorrect card details, bank security blocks, or payment gateway issues. Contact your bank or try another payment method.",
1226
- category: "payment",
1171
+ question: "How do I create a LetItRip account?",
1172
+ answer: "<p>Click <strong>Sign Up</strong> at the top right of any page. Enter your email address and create a password, or sign up with Google. Verify your email to activate your account. You can start browsing and purchasing immediately after verification.</p>",
1173
+ category: "account_security",
1227
1174
  showOnHomepage: false,
1228
1175
  showInFooter: false,
1229
1176
  isPinned: false,
1230
- order: 6,
1231
- priority: 6,
1232
- tags: ["declined", "failed", "payment"],
1177
+ order: 1,
1178
+ priority: 8,
1179
+ tags: ["sign-up", "register", "account", "email", "google"],
1233
1180
  relatedFAQs: [],
1234
1181
  useSiteSettings: false,
1235
- variables: [],
1236
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1182
+ stats: { views: 620, helpful: 530, notHelpful: 22 },
1237
1183
  seo: {
1238
- slug: "payment-declined",
1239
- metaTitle: "Payment Declined | LetItRip Payment Issues",
1240
- metaDescription: "Payment declined? Check funds, card details, or bank blocks. Try another payment method.",
1184
+ slug: "how-to-create-account",
1185
+ metaTitle: "How to Create a LetItRip Account | Sign Up Guide",
1186
+ metaDescription: "Create your LetItRip account with email or Google. Verify your email to start buying Pokemon TCG cards.",
1241
1187
  },
1242
1188
  isActive: true,
1243
1189
  createdBy: "system",
1244
1190
  },
1245
1191
  {
1246
- question: "Will I receive a payment receipt?",
1247
- answer: 'Yes, a payment confirmation and invoice are sent to your email immediately after successful payment. You can also download invoices from "My Orders".',
1248
- category: "payment",
1192
+ question: "How do I reset my password?",
1193
+ answer: "<p>On the login page, click <strong>Forgot Password</strong> and enter your registered email. You'll receive a password reset link within a few minutes. Check your spam folder if you don't see it. The reset link expires in <strong>30 minutes</strong>.</p>",
1194
+ category: "account_security",
1249
1195
  showOnHomepage: false,
1250
1196
  showInFooter: false,
1251
1197
  isPinned: false,
1252
- order: 7,
1253
- priority: 5,
1254
- tags: ["receipt", "invoice", "confirmation"],
1198
+ order: 2,
1199
+ priority: 7,
1200
+ tags: ["password", "reset", "forgot-password", "login"],
1255
1201
  relatedFAQs: [],
1256
1202
  useSiteSettings: false,
1257
- variables: [],
1258
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1203
+ stats: { views: 530, helpful: 460, notHelpful: 20 },
1259
1204
  seo: {
1260
- slug: "payment-receipt",
1261
- metaTitle: "Payment Receipt | LetItRip Invoice Download",
1262
- metaDescription: "Receive payment confirmation via email. Download invoices from My Orders section anytime.",
1205
+ slug: "how-to-reset-password",
1206
+ metaTitle: "How to Reset My Password | LetItRip Account Help",
1207
+ metaDescription: "Use the Forgot Password link on the login page. A reset link will be emailed to you and expires in 30 minutes.",
1263
1208
  },
1264
1209
  isActive: true,
1265
1210
  createdBy: "system",
1266
1211
  },
1267
1212
  {
1268
- question: "Do you accept international credit cards?",
1269
- answer: "Yes, we accept international Visa, Mastercard, and American Express cards. Currency conversion charges may apply by your card issuer.",
1270
- category: "payment",
1213
+ question: "How do I save items to my wishlist?",
1214
+ answer: "<p>On any product listing, click the <strong>heart icon</strong> to add it to your wishlist. You need to be signed in to use this feature. View and manage your saved items from <strong>My Account → Wishlist</strong>.</p>",
1215
+ category: "account_security",
1271
1216
  showOnHomepage: false,
1272
1217
  showInFooter: false,
1273
1218
  isPinned: false,
1274
- order: 8,
1275
- priority: 4,
1276
- tags: ["international", "credit card", "foreign"],
1219
+ order: 3,
1220
+ priority: 6,
1221
+ tags: ["wishlist", "save", "heart", "favourite"],
1277
1222
  relatedFAQs: [],
1278
1223
  useSiteSettings: false,
1279
- variables: [],
1280
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1224
+ stats: { views: 390, helpful: 340, notHelpful: 14 },
1281
1225
  seo: {
1282
- slug: "international-credit-cards",
1283
- metaTitle: "International Cards | LetItRip Foreign Payments",
1284
- metaDescription: "Accept Visa, Mastercard, AmEx international cards. Currency conversion by card issuer.",
1226
+ slug: "how-to-save-to-wishlist",
1227
+ metaTitle: "How to Save Items to My Wishlist | LetItRip FAQ",
1228
+ metaDescription: "Click the heart icon on any product listing to save it to your wishlist. Manage it from My Account.",
1285
1229
  },
1286
1230
  isActive: true,
1287
1231
  createdBy: "system",
1288
1232
  },
1289
1233
  {
1290
- question: "Can I save my card for future purchases?",
1291
- answer: "Yes, you can securely save your card details in your account for faster checkout. All saved cards are tokenized and encrypted per RBI guidelines.",
1292
- category: "payment",
1234
+ question: "How do I update my delivery address?",
1235
+ answer: "<p>Go to <strong>My Account → Addresses</strong> to add, edit, or delete delivery addresses. You can save multiple addresses and mark one as default. You can also add a new address at checkout without saving it to your account.</p>",
1236
+ category: "account_security",
1293
1237
  showOnHomepage: false,
1294
1238
  showInFooter: false,
1295
1239
  isPinned: false,
1296
- order: 9,
1297
- priority: 5,
1298
- tags: ["save card", "tokenization", "security"],
1240
+ order: 4,
1241
+ priority: 6,
1242
+ tags: ["address", "delivery-address", "update", "account"],
1299
1243
  relatedFAQs: [],
1300
1244
  useSiteSettings: false,
1301
- variables: [],
1302
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1245
+ stats: { views: 420, helpful: 370, notHelpful: 16 },
1303
1246
  seo: {
1304
- slug: "save-card-details",
1305
- metaTitle: "Save Card Details | LetItRip Secure Payments",
1306
- metaDescription: "Securely save cards for faster checkout. Tokenized and encrypted per RBI guidelines.",
1247
+ slug: "update-delivery-address",
1248
+ metaTitle: "How to Update My Delivery Address | LetItRip Account",
1249
+ metaDescription: "Add, edit, or delete delivery addresses from My Account → Addresses. Set a default address for faster checkout.",
1307
1250
  },
1308
1251
  isActive: true,
1309
1252
  createdBy: "system",
1310
1253
  },
1311
1254
  {
1312
- question: "What if I'm charged twice for one order?",
1313
- answer: "Double charges are rare but can occur due to payment gateway delays. Contact us at {{supportEmail}} immediately. The duplicate charge is automatically refunded within 7-10 platform days.",
1314
- category: "payment",
1255
+ question: "Is my personal information secure?",
1256
+ answer: "<p>Yes. LetItRip follows industry best practices for data security:</p><ul><li>Passwords are hashed and never stored in plain text</li><li>Personal data is encrypted at rest and in transit (TLS 1.3)</li><li>We do not sell or share your personal data with third parties for marketing</li><li>Payment details are handled exclusively by Razorpay — we never see your card number</li></ul>",
1257
+ category: "account_security",
1315
1258
  showOnHomepage: false,
1316
1259
  showInFooter: false,
1317
1260
  isPinned: false,
1318
- order: 10,
1319
- priority: 6,
1320
- tags: ["double charge", "refund", "error"],
1261
+ order: 5,
1262
+ priority: 9,
1263
+ tags: ["security", "privacy", "data", "encrypted", "password"],
1321
1264
  relatedFAQs: [],
1322
- useSiteSettings: true,
1323
- variables: ["supportEmail"],
1324
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1265
+ useSiteSettings: false,
1266
+ stats: { views: 580, helpful: 510, notHelpful: 18 },
1325
1267
  seo: {
1326
- slug: "double-charged",
1327
- metaTitle: "Double Charged | LetItRip Payment Error Resolution",
1328
- metaDescription: "Charged twice? Contact support. Duplicate charges automatically refunded in 7-10 days.",
1268
+ slug: "is-personal-information-secure",
1269
+ metaTitle: "Is My Personal Information Secure on LetItRip? | FAQ",
1270
+ metaDescription: "LetItRip encrypts your data at rest and in transit. Payments are handled by Razorpay we never store card details.",
1329
1271
  },
1330
1272
  isActive: true,
1331
1273
  createdBy: "system",
1332
1274
  },
1333
1275
  {
1334
- question: "Do you accept PayPal?",
1335
- answer: "Currently, we do not accept PayPal. We accept UPI, cards, net banking, and digital wallets for Indian transactions.",
1336
- category: "payment",
1276
+ question: "What should I do if my account is compromised?",
1277
+ answer: "<p>If you suspect your account has been accessed without your permission:</p><ol><li><strong>Change your password immediately</strong> from Account → Security</li><li>Check your order history for any unauthorised purchases</li><li>Contact LetItRip support at <strong>{{supportEmail}}</strong> with the subject line 'Account Compromised'</li><li>We'll temporarily lock the account and investigate</li></ol>",
1278
+ category: "account_security",
1337
1279
  showOnHomepage: false,
1338
1280
  showInFooter: false,
1339
1281
  isPinned: false,
1340
- order: 11,
1341
- priority: 3,
1342
- tags: ["PayPal", "payment", "methods"],
1282
+ order: 6,
1283
+ priority: 10,
1284
+ tags: ["hacked", "compromised", "security", "password", "account"],
1343
1285
  relatedFAQs: [],
1344
- useSiteSettings: false,
1345
- variables: [],
1346
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1286
+ useSiteSettings: true,
1287
+ stats: { views: 340, helpful: 310, notHelpful: 12 },
1347
1288
  seo: {
1348
- slug: "paypal-payment",
1349
- metaTitle: "PayPal Payment | LetItRip Payment Methods",
1350
- metaDescription: "PayPal not accepted. Use UPI, cards, net banking, or wallets for payments.",
1289
+ slug: "account-compromised-what-to-do",
1290
+ metaTitle: "What to Do If My Account Is Compromised | LetItRip Security",
1291
+ metaDescription: "Change your password immediately and contact LetItRip support if you suspect unauthorised access to your account.",
1351
1292
  },
1352
1293
  isActive: true,
1353
1294
  createdBy: "system",
1354
1295
  },
1355
1296
  {
1356
- question: "Are there any hidden charges?",
1357
- answer: "No, all charges including product price, shipping, taxes, and any additional fees are clearly displayed at checkout before payment. No hidden charges.",
1358
- category: "payment",
1297
+ question: "Can I have multiple accounts?",
1298
+ answer: "<p>No. Each person is permitted <strong>one buyer account</strong> on LetItRip. Creating multiple accounts to exploit promotions, coupons, or giveaways is a violation of our Terms of Service and may result in all associated accounts being suspended.</p>",
1299
+ category: "account_security",
1359
1300
  showOnHomepage: false,
1360
1301
  showInFooter: false,
1361
1302
  isPinned: false,
1362
- order: 12,
1363
- priority: 6,
1364
- tags: ["charges", "fees", "transparency"],
1303
+ order: 7,
1304
+ priority: 7,
1305
+ tags: ["multiple-accounts", "duplicate", "terms", "suspension"],
1365
1306
  relatedFAQs: [],
1366
1307
  useSiteSettings: false,
1367
- variables: [],
1368
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1308
+ stats: { views: 280, helpful: 240, notHelpful: 18 },
1369
1309
  seo: {
1370
- slug: "hidden-charges",
1371
- metaTitle: "Hidden Charges | LetItRip Transparent Pricing",
1372
- metaDescription: "No hidden charges. All fees displayed at checkout before payment. Complete transparency.",
1310
+ slug: "can-i-have-multiple-accounts",
1311
+ metaTitle: "Can I Have Multiple Accounts on LetItRip? | FAQ",
1312
+ metaDescription: "One account per person is allowed on LetItRip. Multiple accounts violate our Terms of Service.",
1373
1313
  },
1374
1314
  isActive: true,
1375
1315
  createdBy: "system",
1376
1316
  },
1377
1317
  {
1378
- question: "Can I get a tax invoice for my purchase?",
1379
- answer: 'Yes, GST invoice is automatically generated and sent via email after order confirmation. You can also download it from "My Orders" section.',
1380
- category: "payment",
1318
+ question: "How do I close my account?",
1319
+ answer: "<p>To close your account, email us at <strong>{{supportEmail}}</strong> with the subject 'Account Deletion Request'. We'll process it within 7 business days. Note that any pending orders must be resolved before deletion. Closed accounts cannot be restored.</p>",
1320
+ category: "account_security",
1381
1321
  showOnHomepage: false,
1382
1322
  showInFooter: false,
1383
1323
  isPinned: false,
1384
- order: 13,
1324
+ order: 8,
1385
1325
  priority: 5,
1386
- tags: ["tax", "invoice", "GST"],
1326
+ tags: ["close-account", "delete-account", "gdpr", "data"],
1387
1327
  relatedFAQs: [],
1388
- useSiteSettings: false,
1389
- variables: [],
1390
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1328
+ useSiteSettings: true,
1329
+ stats: { views: 220, helpful: 190, notHelpful: 12 },
1391
1330
  seo: {
1392
- slug: "tax-invoice",
1393
- metaTitle: "Tax Invoice | LetItRip GST Invoice Download",
1394
- metaDescription: "GST invoice sent via email and available in My Orders. Download anytime for tax purposes.",
1331
+ slug: "how-to-close-account",
1332
+ metaTitle: "How to Close My LetItRip Account | Account Deletion",
1333
+ metaDescription: "Email support to request account deletion. Processed within 7 business days. Pending orders must be resolved first.",
1395
1334
  },
1396
1335
  isActive: true,
1397
1336
  createdBy: "system",
1398
1337
  },
1338
+ // ============================================
1339
+ // TECHNICAL SUPPORT — 5 FAQs
1340
+ // ============================================
1399
1341
  {
1400
- question: "What is your policy on chargebacks?",
1401
- answer: "Chargebacks should be initiated only after contacting our support team. Unauthorized chargebacks may result in account suspension and legal action.",
1402
- category: "payment",
1342
+ question: "The website is slow or not loading — what should I do?",
1343
+ answer: "<p>Try these steps:</p><ol><li>Refresh the page (Ctrl+R / Cmd+R)</li><li>Clear your browser cache and cookies</li><li>Try a different browser (Chrome, Firefox, or Edge are recommended)</li><li>Check your internet connection</li><li>If the issue persists across browsers, there may be a temporary outage check our social media pages for updates</li></ol>",
1344
+ category: "technical_support",
1403
1345
  showOnHomepage: false,
1404
1346
  showInFooter: false,
1405
1347
  isPinned: false,
1406
- order: 14,
1407
- priority: 4,
1408
- tags: ["chargeback", "dispute", "policy"],
1348
+ order: 1,
1349
+ priority: 7,
1350
+ tags: ["slow", "loading", "browser", "cache", "outage"],
1409
1351
  relatedFAQs: [],
1410
1352
  useSiteSettings: false,
1411
- variables: [],
1412
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1353
+ stats: { views: 380, helpful: 310, notHelpful: 28 },
1413
1354
  seo: {
1414
- slug: "chargeback-policy",
1415
- metaTitle: "Chargeback Policy | LetItRip Payment Disputes",
1416
- metaDescription: "Contact support before initiating chargebacks. Unauthorized chargebacks may lead to suspension.",
1355
+ slug: "website-slow-not-loading",
1356
+ metaTitle: "Website Slow or Not Loading? | LetItRip Technical Help",
1357
+ metaDescription: "Fix a slow or unresponsive LetItRip website by clearing cache, trying a different browser, or checking your connection.",
1417
1358
  },
1418
1359
  isActive: true,
1419
1360
  createdBy: "system",
1420
1361
  },
1421
1362
  {
1422
- question: "How long does it take for refunds to process?",
1423
- answer: "Refunds are processed within 5-7 platform days after return approval. It may take additional 3-5 days for your bank to credit the amount.",
1424
- category: "payment",
1363
+ question: "I can't complete my checkout what's wrong?",
1364
+ answer: "<p>Common checkout issues and fixes:</p><ul><li><strong>Payment not going through:</strong> Try a different payment method or browser</li><li><strong>Address validation error:</strong> Ensure your pincode matches your city and state</li><li><strong>Coupon not applying:</strong> Check the code's expiry and minimum order value</li><li><strong>Cart is empty:</strong> The item may have gone out of stock — refresh and re-add</li></ul><p>If the problem continues, email <strong>{{supportEmail}}</strong> with a screenshot.</p>",
1365
+ category: "technical_support",
1425
1366
  showOnHomepage: false,
1426
1367
  showInFooter: false,
1427
1368
  isPinned: false,
1428
- order: 15,
1429
- priority: 7,
1430
- tags: ["refund", "processing", "time"],
1369
+ order: 2,
1370
+ priority: 8,
1371
+ tags: ["checkout", "payment-error", "cart", "pincode", "coupon"],
1431
1372
  relatedFAQs: [],
1432
- useSiteSettings: false,
1433
- variables: [],
1434
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1373
+ useSiteSettings: true,
1374
+ stats: { views: 490, helpful: 420, notHelpful: 35 },
1435
1375
  seo: {
1436
- slug: "refund-processing-time",
1437
- metaTitle: "Refund Processing | LetItRip Refund Timeline",
1438
- metaDescription: "Refunds in 5-7 days after approval. Bank credit takes additional 3-5 days.",
1376
+ slug: "cant-complete-checkout",
1377
+ metaTitle: "I Can't Complete My Checkout | LetItRip Technical FAQ",
1378
+ metaDescription: "Resolve checkout issues on LetItRip: payment errors, address problems, coupon issues, and empty cart errors.",
1439
1379
  },
1440
1380
  isActive: true,
1441
1381
  createdBy: "system",
1442
1382
  },
1443
1383
  {
1444
- question: "Can I pay using a gift card or voucher?",
1445
- answer: 'Yes, you can apply gift cards, promo codes, or vouchers at checkout. Enter the code in the "Apply Coupon" field before payment.',
1446
- category: "payment",
1384
+ question: "My auction bid isn't registering what do I do?",
1385
+ answer: "<p>If your bid doesn't appear after clicking Place Bid:</p><ol><li>Refresh the page to check if the bid was actually recorded</li><li>Ensure you're signed in bids require an active session</li><li>Check that your bid amount is higher than the current highest bid (plus any minimum increment)</li><li>If the problem persists, contact support with the auction listing URL and your bid amount</li></ol>",
1386
+ category: "technical_support",
1447
1387
  showOnHomepage: false,
1448
1388
  showInFooter: false,
1449
1389
  isPinned: false,
1450
- order: 16,
1451
- priority: 5,
1452
- tags: ["gift card", "voucher", "coupon"],
1390
+ order: 3,
1391
+ priority: 7,
1392
+ tags: ["auction", "bid", "not-registering", "error"],
1453
1393
  relatedFAQs: [],
1454
1394
  useSiteSettings: false,
1455
- variables: [],
1456
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1395
+ stats: { views: 310, helpful: 270, notHelpful: 22 },
1457
1396
  seo: {
1458
- slug: "gift-card-payment",
1459
- metaTitle: "Gift Card Payment | LetItRip Voucher Redemption",
1460
- metaDescription: "Apply gift cards, promo codes, and vouchers at checkout. Enter code before payment.",
1397
+ slug: "auction-bid-not-registering",
1398
+ metaTitle: "My Auction Bid Isn't Registering | LetItRip Technical FAQ",
1399
+ metaDescription: "If your bid doesn't register, refresh the page, check you're signed in, and ensure your bid exceeds the current highest bid.",
1461
1400
  },
1462
1401
  isActive: true,
1463
1402
  createdBy: "system",
1464
1403
  },
1465
1404
  {
1466
- question: "What happens if payment fails but money is deducted?",
1467
- answer: "If payment fails but amount is debited, the transaction is automatically reversed within 5-7 platform days. Contact your bank if not credited within this time.",
1468
- category: "payment",
1405
+ question: "I'm not receiving email notifications how do I fix this?",
1406
+ answer: "<p>If you're not getting emails from LetItRip:</p><ol><li>Check your spam or promotions folder</li><li>Add <strong>noreply@letitrip.in</strong> to your email contacts/safe-senders list</li><li>Verify your email address in Account → Profile</li><li>Check your notification preferences in Account Notifications</li></ol>",
1407
+ category: "technical_support",
1469
1408
  showOnHomepage: false,
1470
1409
  showInFooter: false,
1471
1410
  isPinned: false,
1472
- order: 17,
1411
+ order: 4,
1473
1412
  priority: 6,
1474
- tags: ["failed payment", "deducted", "refund"],
1413
+ tags: ["email", "notifications", "spam", "alerts"],
1475
1414
  relatedFAQs: [],
1476
1415
  useSiteSettings: false,
1477
- variables: [],
1478
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1416
+ stats: { views: 290, helpful: 250, notHelpful: 18 },
1479
1417
  seo: {
1480
- slug: "failed-payment-deduction",
1481
- metaTitle: "Failed Payment Deducted | LetItRip Payment Issues",
1482
- metaDescription: "Money deducted but payment failed? Auto-reversed in 5-7 days. Contact bank if delayed.",
1418
+ slug: "not-receiving-email-notifications",
1419
+ metaTitle: "Not Receiving Email Notifications | LetItRip Technical Help",
1420
+ metaDescription: "Fix missing LetItRip emails by checking spam, whitelisting noreply@letitrip.in, and reviewing notification settings.",
1483
1421
  },
1484
1422
  isActive: true,
1485
1423
  createdBy: "system",
1486
1424
  },
1487
1425
  {
1488
- question: "Do you charge any transaction fees?",
1489
- answer: "No transaction fees for UPI, cards, or net banking. COD orders may have a nominal handling charge. All charges are shown at checkout.",
1490
- category: "payment",
1426
+ question: "How do I report a bug or technical issue?",
1427
+ answer: "<p>Found a bug? We appreciate your help! Email <strong>{{supportEmail}}</strong> with:</p><ul><li>A description of the issue</li><li>The URL where it occurred</li><li>Your browser and device (e.g., Chrome 124 on Android)</li><li>A screenshot if possible</li></ul><p>Our engineering team reviews all bug reports and will acknowledge your report within 2 business days.</p>",
1428
+ category: "technical_support",
1491
1429
  showOnHomepage: false,
1492
1430
  showInFooter: false,
1493
1431
  isPinned: false,
1494
- order: 18,
1495
- priority: 4,
1496
- tags: ["fees", "transaction", "charges"],
1432
+ order: 5,
1433
+ priority: 5,
1434
+ tags: ["bug", "report", "technical", "issue", "feedback"],
1497
1435
  relatedFAQs: [],
1498
- useSiteSettings: false,
1499
- variables: [],
1500
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1436
+ useSiteSettings: true,
1437
+ stats: { views: 240, helpful: 210, notHelpful: 10 },
1501
1438
  seo: {
1502
- slug: "transaction-fees",
1503
- metaTitle: "Transaction Fees | LetItRip Payment Charges",
1504
- metaDescription: "No transaction fees for online payments. COD may have handling charge. All shown at checkout.",
1439
+ slug: "report-bug-technical-issue",
1440
+ metaTitle: "How to Report a Bug on LetItRip | Technical Support",
1441
+ metaDescription: "Report bugs to LetItRip support with a URL, browser details, and screenshot. Acknowledged within 2 business days.",
1505
1442
  },
1506
1443
  isActive: true,
1507
1444
  createdBy: "system",
1508
1445
  },
1509
- // ============================================
1510
- // ACCOUNT (10 FAQs)
1511
- // ============================================
1446
+ // ══════════════════════════════════════════════════════════════════════════
1447
+ // HOT WHEELS — 10 FAQs
1448
+ // ══════════════════════════════════════════════════════════════════════════
1512
1449
  {
1513
- question: "How do I create an account?",
1514
- answer: 'Click "Sign Up" in the top menu, enter your email and password, or sign up with Google/Apple. Verify your email to complete registration.',
1515
- category: "account",
1450
+ question: "What is a Hot Wheels Treasure Hunt (TH) car?",
1451
+ answer: "<p>Treasure Hunts are special variant cars hidden within Hot Wheels mainline assortments. They feature a flame logo on the card, a real rider rubber tire variant (on Super Treasure Hunts), and a subtle 'TH' marking on the car. <strong>Super Treasure Hunts</strong> have a spectraflame metallic paint finish and real rider tires they are rarer and more valuable. Both types are randomly packed: approximately 1 TH per case and 1 STH per several cases.</p>",
1452
+ category: "product_information",
1516
1453
  showOnHomepage: false,
1517
1454
  showInFooter: false,
1518
1455
  isPinned: false,
1519
1456
  order: 1,
1520
1457
  priority: 8,
1521
- tags: ["signup", "registration", "account"],
1458
+ tags: ["hot-wheels", "treasure-hunt", "super-treasure-hunt", "th", "sth"],
1522
1459
  relatedFAQs: [],
1523
1460
  useSiteSettings: false,
1524
- variables: [],
1525
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1461
+ stats: { views: 620, helpful: 540, notHelpful: 22 },
1526
1462
  seo: {
1527
- slug: "create-account",
1528
- metaTitle: "Create Account | LetItRip Registration",
1529
- metaDescription: "Sign up with email or Google/Apple. Verify email to complete LetItRip account registration.",
1463
+ slug: "hot-wheels-treasure-hunt-guide",
1464
+ metaTitle: "What is a Hot Wheels Treasure Hunt? | LetItRip Guide",
1465
+ metaDescription: "Treasure Hunts and Super Treasure Hunts explained rarity, markings, and what makes them collectible.",
1530
1466
  },
1531
1467
  isActive: true,
1532
1468
  createdBy: "system",
1533
1469
  },
1534
1470
  {
1535
- question: "I forgot my password. How do I reset it?",
1536
- answer: 'Click "Forgot Password" on the login page, enter your email, and click "Reset Password". You\'ll receive a reset link via email within 5 minutes.',
1537
- category: "account",
1471
+ question: "What is Hot Wheels Car Culture and how is it different from mainline?",
1472
+ answer: "<p><strong>Hot Wheels Car Culture</strong> is a premium line of cars sold in 5-car packs, featuring realistic licensed vehicles, detailed casting, premium rubber tires, and high-quality paint. Unlike the basic 97p mainline cars, Car Culture series focus on specific themes (e.g., Japan Historics, Germany or Bust, Car Culture Mix) and are sold primarily at specialty retailers. They are not mixed into standard pegs.</p>",
1473
+ category: "product_information",
1538
1474
  showOnHomepage: false,
1539
1475
  showInFooter: false,
1540
1476
  isPinned: false,
1541
1477
  order: 2,
1542
1478
  priority: 7,
1543
- tags: ["password", "reset", "forgot"],
1479
+ tags: ["hot-wheels", "car-culture", "premium", "mainline", "difference"],
1544
1480
  relatedFAQs: [],
1545
1481
  useSiteSettings: false,
1546
- variables: [],
1547
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1482
+ stats: { views: 480, helpful: 410, notHelpful: 18 },
1548
1483
  seo: {
1549
- slug: "reset-password",
1550
- metaTitle: "Reset Password | LetItRip Password Recovery",
1551
- metaDescription: "Forgot password? Get reset link via email in 5 minutes. Click Forgot Password on login page.",
1484
+ slug: "hot-wheels-car-culture-vs-mainline",
1485
+ metaTitle: "Hot Wheels Car Culture vs Mainline | LetItRip FAQ",
1486
+ metaDescription: "Understand the difference between Hot Wheels mainline and premium Car Culture series.",
1552
1487
  },
1553
1488
  isActive: true,
1554
1489
  createdBy: "system",
1555
1490
  },
1556
1491
  {
1557
- question: "Can I change my email address?",
1558
- answer: 'Yes, go to "Account Settings" "Security" "Change Email". Enter your new email and verify it. Your login email will be updated.',
1559
- category: "account",
1492
+ question: "Are Hot Wheels cars on LetItRip authentic and not counterfeit?",
1493
+ answer: "<p>Yes. All Hot Wheels listings on LetItRip go through seller verification. Sellers must provide proof of purchase (retailer invoice or distributor import bill) to list. We strongly encourage buyers to check the card back for the authentic Hot Wheels logo and copyright markings. If you receive a counterfeit, report it immediately and we will take action under our Buyer Protection policy.</p>",
1494
+ category: "product_information",
1560
1495
  showOnHomepage: false,
1561
1496
  showInFooter: false,
1562
1497
  isPinned: false,
1563
1498
  order: 3,
1564
- priority: 6,
1565
- tags: ["email", "change", "account"],
1499
+ priority: 8,
1500
+ tags: ["hot-wheels", "authentic", "counterfeit", "verification"],
1566
1501
  relatedFAQs: [],
1567
1502
  useSiteSettings: false,
1568
- variables: [],
1569
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1503
+ stats: { views: 390, helpful: 340, notHelpful: 14 },
1570
1504
  seo: {
1571
- slug: "change-email-address",
1572
- metaTitle: "Change Email | LetItRip Account Settings",
1573
- metaDescription: "Update your email in Account Settings. Verify new email to complete the change.",
1505
+ slug: "hot-wheels-authenticity-check",
1506
+ metaTitle: "Are Hot Wheels on LetItRip Authentic? | Verification",
1507
+ metaDescription: "How LetItRip ensures Hot Wheels authenticity and what to do if you receive a fake.",
1574
1508
  },
1575
1509
  isActive: true,
1576
1510
  createdBy: "system",
1577
1511
  },
1578
1512
  {
1579
- question: "How do I update my profile information?",
1580
- answer: 'Go to "My Profile" "Edit Profile". You can update your name, phone number, and profile picture. Click "Save Changes" to update.',
1581
- category: "account",
1513
+ question: "How should I store Hot Wheels cars to preserve their value?",
1514
+ answer: "<p>For investment-grade storage: <ul><li>Keep cars <strong>on card</strong> — removing from packaging destroys most value</li><li>Store vertically in acrylic display cases to avoid card creasing</li><li>Avoid direct sunlight UV fades card art and paint</li><li>Control humidity (40–55% RH) to prevent card warping</li><li>Super Treasure Hunts and Car Culture premium cars benefit from individual acrylic protectors</li></ul> For loose cars, separate by casting to prevent paint transfer.</p>",
1515
+ category: "product_information",
1582
1516
  showOnHomepage: false,
1583
1517
  showInFooter: false,
1584
1518
  isPinned: false,
1585
1519
  order: 4,
1586
1520
  priority: 6,
1587
- tags: ["profile", "update", "edit"],
1521
+ tags: ["hot-wheels", "storage", "preservation", "collecting", "value"],
1588
1522
  relatedFAQs: [],
1589
1523
  useSiteSettings: false,
1590
- variables: [],
1591
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1524
+ stats: { views: 310, helpful: 270, notHelpful: 12 },
1592
1525
  seo: {
1593
- slug: "update-profile",
1594
- metaTitle: "Update Profile | LetItRip Profile Settings",
1595
- metaDescription: "Edit your name, phone, and photo in My Profile. Save changes to update account information.",
1526
+ slug: "hot-wheels-storage-tips",
1527
+ metaTitle: "How to Store Hot Wheels to Preserve Value | LetItRip",
1528
+ metaDescription: "Tips for keeping Hot Wheels on card in mint condition to preserve collectible value.",
1596
1529
  },
1597
1530
  isActive: true,
1598
1531
  createdBy: "system",
1599
1532
  },
1600
1533
  {
1601
- question: "Can I have multiple delivery addresses?",
1602
- answer: 'Yes, you can save multiple delivery addresses in "My Addresses". Set one as default for faster checkout or select different addresses for each order.',
1603
- category: "account",
1534
+ question: "Can I request specific Hot Wheels colour variants or casting variants?",
1535
+ answer: "<p>Sellers list specific variants they have in stock — you cannot request custom variants. However, you can <strong>filter by category</strong> or use the search bar to find a specific casting name. If a variant you want isn't listed, you can message a seller directly or check back as inventory updates frequently. You can also use the wishlist feature to be notified when a matching product is listed.</p>",
1536
+ category: "product_information",
1604
1537
  showOnHomepage: false,
1605
1538
  showInFooter: false,
1606
1539
  isPinned: false,
1607
1540
  order: 5,
1608
- priority: 6,
1609
- tags: ["addresses", "delivery", "multiple"],
1541
+ priority: 5,
1542
+ tags: ["hot-wheels", "variant", "casting", "request"],
1610
1543
  relatedFAQs: [],
1611
1544
  useSiteSettings: false,
1612
- variables: [],
1613
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1545
+ stats: { views: 260, helpful: 210, notHelpful: 18 },
1614
1546
  seo: {
1615
- slug: "multiple-addresses",
1616
- metaTitle: "Multiple Addresses | LetItRip Delivery Options",
1617
- metaDescription: "Save multiple delivery addresses. Set default or choose different address per order.",
1547
+ slug: "hot-wheels-variant-request",
1548
+ metaTitle: "Can I Request Hot Wheels Variants? | LetItRip FAQ",
1549
+ metaDescription: "How to find specific Hot Wheels variants and colour editions on LetItRip.",
1618
1550
  },
1619
1551
  isActive: true,
1620
1552
  createdBy: "system",
1621
1553
  },
1622
1554
  {
1623
- question: "How do I delete my account?",
1624
- answer: 'Go to "Account Settings" "Delete Account". Enter your password and confirm deletion. Note: This action is permanent and cannot be undone.',
1625
- category: "account",
1555
+ question: "What is the difference between Hot Wheels basic, premium, and Car Culture?",
1556
+ answer: "<p><strong>Basic mainline</strong> cars are the standard single-blister-card cars sold at retail (≈₹200–₹250 MRP). They use die-cast metal bodies with plastic bases and painted plastic wheels. <strong>Premium</strong> series (e.g., Fast & Furious, Marvel, DC) feature licensed character vehicles, detailed interiors, and often rubber tires. <strong>Car Culture</strong> is the highest tier — themed multi-packs with ultra-detailed casting, real rider tires, and premium finishes.</p>",
1557
+ category: "product_information",
1626
1558
  showOnHomepage: false,
1627
1559
  showInFooter: false,
1628
1560
  isPinned: false,
1629
1561
  order: 6,
1630
- priority: 5,
1631
- tags: ["delete", "account", "remove"],
1562
+ priority: 6,
1563
+ tags: ["hot-wheels", "basic", "premium", "car-culture", "comparison"],
1632
1564
  relatedFAQs: [],
1633
1565
  useSiteSettings: false,
1634
- variables: [],
1635
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1566
+ stats: { views: 420, helpful: 370, notHelpful: 16 },
1636
1567
  seo: {
1637
- slug: "delete-account",
1638
- metaTitle: "Delete Account | LetItRip Account Removal",
1639
- metaDescription: "Delete your account permanently from Account Settings. Action cannot be undone.",
1568
+ slug: "hot-wheels-tiers-comparison",
1569
+ metaTitle: "Hot Wheels Basic vs Premium vs Car Culture | LetItRip FAQ",
1570
+ metaDescription: "Compare Hot Wheels product tiers to understand what you're buying.",
1640
1571
  },
1641
1572
  isActive: true,
1642
1573
  createdBy: "system",
1643
1574
  },
1644
1575
  {
1645
- question: "Why do I need to verify my email?",
1646
- answer: "Email verification ensures account security, enables password reset, and allows us to send order updates and important notifications.",
1647
- category: "account",
1576
+ question: "Do Hot Wheels prices on LetItRip include GST?",
1577
+ answer: "<p>All prices displayed on LetItRip include GST (18% on most hobby/toy items). Individual sellers who are GST-registered will issue a tax invoice upon request. If you need a GST invoice for your business, please share your GSTIN with the seller at checkout or via message before placing the order.</p>",
1578
+ category: "orders_payment",
1648
1579
  showOnHomepage: false,
1649
1580
  showInFooter: false,
1650
1581
  isPinned: false,
1651
- order: 7,
1582
+ order: 13,
1652
1583
  priority: 5,
1653
- tags: ["verification", "email", "security"],
1584
+ tags: ["hot-wheels", "gst", "tax", "invoice", "price"],
1654
1585
  relatedFAQs: [],
1655
1586
  useSiteSettings: false,
1656
- variables: [],
1657
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1587
+ stats: { views: 280, helpful: 240, notHelpful: 12 },
1658
1588
  seo: {
1659
- slug: "email-verification",
1660
- metaTitle: "Email Verification | LetItRip Account Security",
1661
- metaDescription: "Verify email for security, password reset, and order updates. Essential for account protection.",
1589
+ slug: "hot-wheels-gst-pricing",
1590
+ metaTitle: "Are Hot Wheels Prices GST Inclusive on LetItRip?",
1591
+ metaDescription: "LetItRip prices for Hot Wheels include GST. Request a tax invoice from the seller if needed.",
1662
1592
  },
1663
1593
  isActive: true,
1664
1594
  createdBy: "system",
1665
1595
  },
1666
1596
  {
1667
- question: "Can I link my social media accounts?",
1668
- answer: 'Yes, you can link Google and Apple accounts in "Account Settings" "Connected Accounts" for easier login and social features.',
1669
- category: "account",
1597
+ question: "What is a Hot Wheels track set and which sets are compatible?",
1598
+ answer: "<p>Hot Wheels track sets come with flexible orange track segments that connect modularly. All standard Hot Wheels cars (1:64 scale) are compatible with all track sets. Sets range from basic starters (~₹500) to elaborate motorized multi-loop systems (~₹5,000+). When buying track, check the connector type older sets use T-connectors while newer ones use a push-lock connector. Both are compatible with standard cars.</p>",
1599
+ category: "product_information",
1670
1600
  showOnHomepage: false,
1671
1601
  showInFooter: false,
1672
1602
  isPinned: false,
1673
- order: 8,
1674
- priority: 4,
1675
- tags: ["social", "Google", "Apple"],
1603
+ order: 7,
1604
+ priority: 5,
1605
+ tags: ["hot-wheels", "track", "set", "compatibility", "orange-track"],
1676
1606
  relatedFAQs: [],
1677
1607
  useSiteSettings: false,
1678
- variables: [],
1679
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1608
+ stats: { views: 350, helpful: 300, notHelpful: 15 },
1680
1609
  seo: {
1681
- slug: "link-social-accounts",
1682
- metaTitle: "Link Social Accounts | LetItRip Google & Apple",
1683
- metaDescription: "Connect Google and Apple accounts for easier login. Manage in Account Settings.",
1610
+ slug: "hot-wheels-track-sets-compatibility",
1611
+ metaTitle: "Hot Wheels Track Set Compatibility | LetItRip FAQ",
1612
+ metaDescription: "Are Hot Wheels track sets compatible? Learn about connector types and set sizes.",
1684
1613
  },
1685
1614
  isActive: true,
1686
1615
  createdBy: "system",
1687
1616
  },
1688
1617
  {
1689
- question: "How do I manage my email preferences?",
1690
- answer: 'Go to "Account Settings" "Email Preferences" to choose which emails you want to receive: order updates, promotions, newsletters, etc.',
1691
- category: "account",
1618
+ question: "What year is a Hot Wheels car from — how do I identify the year?",
1619
+ answer: "<p>The year of a Hot Wheels car can be identified from the card back (series year is printed at the top or bottom). For loose cars, check the base of the car — the casting year and copyright year are usually stamped there, though note this reflects the casting creation year, not the specific production run year. Card back also lists the series mix letter and car number within that mix.</p>",
1620
+ category: "product_information",
1692
1621
  showOnHomepage: false,
1693
1622
  showInFooter: false,
1694
1623
  isPinned: false,
1695
- order: 9,
1624
+ order: 8,
1696
1625
  priority: 4,
1697
- tags: ["email", "preferences", "notifications"],
1626
+ tags: ["hot-wheels", "year", "identify", "casting", "card-back"],
1698
1627
  relatedFAQs: [],
1699
1628
  useSiteSettings: false,
1700
- variables: [],
1701
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1629
+ stats: { views: 290, helpful: 250, notHelpful: 10 },
1702
1630
  seo: {
1703
- slug: "email-preferences",
1704
- metaTitle: "Email Preferences | LetItRip Notification Settings",
1705
- metaDescription: "Manage email notifications in Account Settings. Choose which emails you want to receive.",
1631
+ slug: "identify-hot-wheels-year",
1632
+ metaTitle: "How to Identify a Hot Wheels Car's Year | LetItRip FAQ",
1633
+ metaDescription: "How to read Hot Wheels card backs and casting bases to identify production year.",
1706
1634
  },
1707
1635
  isActive: true,
1708
1636
  createdBy: "system",
1709
1637
  },
1710
1638
  {
1711
- question: "What if my account is hacked or compromised?",
1712
- answer: "Immediately reset your password and contact {{supportEmail}}. We'll secure your account, review unauthorized activities, and help recover your account.",
1713
- category: "account",
1639
+ question: "Can I sell Hot Wheels on LetItRip even without a business GST registration?",
1640
+ answer: "<p>Yes. Individual collectors who do not hold a GST registration can sell on LetItRip as long as their annual turnover from the platform remains below the GST threshold (currently ₹20 lakh for most states). You will need to provide valid government-issued ID for KYC verification. We recommend consulting a CA if your sales volume grows beyond ₹10 lakh annually.</p>",
1641
+ category: "general",
1714
1642
  showOnHomepage: false,
1715
1643
  showInFooter: false,
1716
1644
  isPinned: false,
1717
- order: 10,
1718
- priority: 7,
1719
- tags: ["security", "hacked", "compromised"],
1645
+ order: 11,
1646
+ priority: 6,
1647
+ tags: ["hot-wheels", "sell", "gst", "registration", "collector"],
1720
1648
  relatedFAQs: [],
1721
- useSiteSettings: true,
1722
- variables: ["supportEmail"],
1723
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1649
+ useSiteSettings: false,
1650
+ stats: { views: 340, helpful: 290, notHelpful: 14 },
1724
1651
  seo: {
1725
- slug: "account-compromised",
1726
- metaTitle: "Account Compromised | LetItRip Security Help",
1727
- metaDescription: "Account hacked? Reset password and contact support immediately for account recovery.",
1652
+ slug: "sell-hot-wheels-without-gst",
1653
+ metaTitle: "Can I Sell Hot Wheels Without GST Registration? | LetItRip",
1654
+ metaDescription: "Individual collectors can sell Hot Wheels on LetItRip without GST registration up to the annual threshold.",
1728
1655
  },
1729
1656
  isActive: true,
1730
1657
  createdBy: "system",
1731
1658
  },
1732
- // ============================================
1733
- // PRODUCTS (15 FAQs)
1734
- // ============================================
1659
+ // ══════════════════════════════════════════════════════════════════════════
1660
+ // BEYBLADE BURST — 10 FAQs
1661
+ // ══════════════════════════════════════════════════════════════════════════
1735
1662
  {
1736
- question: "How do I search for products?",
1737
- answer: "Use the search bar at the top, enter keywords, brands, or product names. You can also filter by category, price range, ratings, and more from the left sidebar.",
1738
- category: "products",
1663
+ question: "What are the four types of Beyblade Burst tops?",
1664
+ answer: "<p>Beyblade Burst tops come in four performance types: <ul><li><strong>Attack</strong> — high aggression, designed to knock opponents out of the stadium. Low stamina.</li><li><strong>Defense</strong> designed to absorb hits and stay in the stadium. Heavy weight distribution.</li><li><strong>Stamina</strong> — designed to outlast opponents by spinning longer. Low aggression.</li><li><strong>Balance</strong> — mixed attributes covering attack, defense, and stamina. Versatile choice.</li></ul> Each top consists of three layers: Energy Layer, Forge Disc, and Performance Tip.</p>",
1665
+ category: "product_information",
1739
1666
  showOnHomepage: false,
1740
1667
  showInFooter: false,
1741
- isPinned: false,
1668
+ isPinned: true,
1742
1669
  order: 1,
1743
- priority: 7,
1744
- tags: ["search", "find", "products"],
1670
+ priority: 9,
1671
+ tags: ["beyblade", "attack", "defense", "stamina", "balance", "type"],
1745
1672
  relatedFAQs: [],
1746
1673
  useSiteSettings: false,
1747
- variables: [],
1748
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1674
+ stats: { views: 780, helpful: 680, notHelpful: 25 },
1749
1675
  seo: {
1750
- slug: "search-products",
1751
- metaTitle: "Search Products | LetItRip Product Discovery",
1752
- metaDescription: "Search by keywords, brands, or names. Filter by category, price, and ratings for easy discovery.",
1676
+ slug: "beyblade-burst-types-explained",
1677
+ metaTitle: "Beyblade Burst Types Explained | LetItRip FAQ",
1678
+ metaDescription: "Attack, Defense, Stamina, and Balance the four Beyblade Burst types explained.",
1753
1679
  },
1754
1680
  isActive: true,
1755
1681
  createdBy: "system",
1756
1682
  },
1757
1683
  {
1758
- question: "How do product auctions work?",
1759
- answer: "Select an auction item, place your bid above the current bid. Bidding closes at the auction end time. Highest bidder wins and receives payment instructions via email.",
1760
- category: "products",
1761
- showOnHomepage: true,
1684
+ question: "What Beyblade Burst series are available on LetItRip?",
1685
+ answer: "<p>We stock tops and accessories from all major Beyblade Burst series: <ul><li>Beyblade Burst (Classic / Original)</li><li>Beyblade Burst Evolution / God Layer</li><li>Beyblade Burst Turbo / Cho-Z</li><li>Beyblade Burst GT / Rise / Gachi</li><li>Beyblade Burst Superking / Sparking</li><li>Beyblade Burst QuadDrive</li><li>Beyblade Burst DB (Dynamite Battle) / MCC</li></ul> Series are not fully compatible — check the layer size and disc compatibility before purchasing parts from different series.</p>",
1686
+ category: "product_information",
1687
+ showOnHomepage: false,
1762
1688
  showInFooter: false,
1763
1689
  isPinned: false,
1764
1690
  order: 2,
1765
1691
  priority: 8,
1766
- tags: ["auction", "bidding", "win"],
1692
+ tags: ["beyblade", "series", "classic", "turbo", "gt", "superking", "quaddrive"],
1767
1693
  relatedFAQs: [],
1768
1694
  useSiteSettings: false,
1769
- variables: [],
1770
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1695
+ stats: { views: 530, helpful: 460, notHelpful: 18 },
1771
1696
  seo: {
1772
- slug: "product-auctions",
1773
- metaTitle: "Product Auctions | LetItRip Bidding Guide",
1774
- metaDescription: "Bid on auction items. Highest bidder at end time wins. Payment instructions sent via email.",
1697
+ slug: "beyblade-burst-series-guide",
1698
+ metaTitle: "Beyblade Burst Series Guide | LetItRip FAQ",
1699
+ metaDescription: "All Beyblade Burst series from Classic to DB/MCC what's available on LetItRip.",
1775
1700
  },
1776
1701
  isActive: true,
1777
1702
  createdBy: "system",
1778
1703
  },
1779
1704
  {
1780
- question: "Can I save products to view later?",
1781
- answer: 'Yes, click the heart icon on any product to add it to your Wishlist. Access your saved items anytime from "My Wishlist" in your account.',
1782
- category: "products",
1705
+ question: "Are different Beyblade Burst series compatible with each other?",
1706
+ answer: "<p>Compatibility depends on the layer size: <ul><li><strong>SwitchStrike / Cho-Z layers</strong> fit on SwitchStrike/Cho-Z discs and performance tips</li><li><strong>GT layers</strong> require GT Chip + Ring not compatible with earlier layers</li><li><strong>Sparking/Superking</strong> layers and bases are generally compatible with Cho-Z and earlier discs/tips</li><li><strong>QuadDrive and MCC</strong> use a new unified base system incompatible with earlier series</li></ul> Always check the layer system before purchasing individual components for custom combinations.</p>",
1707
+ category: "product_information",
1783
1708
  showOnHomepage: false,
1784
1709
  showInFooter: false,
1785
1710
  isPinned: false,
1786
1711
  order: 3,
1787
- priority: 6,
1788
- tags: ["wishlist", "save", "favorites"],
1712
+ priority: 7,
1713
+ tags: ["beyblade", "compatibility", "parts", "series", "custom"],
1789
1714
  relatedFAQs: [],
1790
1715
  useSiteSettings: false,
1791
- variables: [],
1792
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1716
+ stats: { views: 480, helpful: 400, notHelpful: 22 },
1793
1717
  seo: {
1794
- slug: "save-products-wishlist",
1795
- metaTitle: "Wishlist | LetItRip Save Products",
1796
- metaDescription: "Save products to wishlist by clicking heart icon. Access saved items from My Wishlist.",
1718
+ slug: "beyblade-burst-parts-compatibility",
1719
+ metaTitle: "Are Beyblade Burst Parts Compatible Across Series? | FAQ",
1720
+ metaDescription: "Guide to Beyblade Burst cross-series parts compatibility by layer system.",
1797
1721
  },
1798
1722
  isActive: true,
1799
1723
  createdBy: "system",
1800
1724
  },
1801
1725
  {
1802
- question: "How do I know if a product is in stock?",
1803
- answer: 'In-stock products show "Add to Cart" button. Out-of-stock items display "Out of Stock" with option to get notified when available.',
1804
- category: "products",
1726
+ question: "What is a Beyblade Burst Stadium and which one should I buy?",
1727
+ answer: "<p>A Beyblade Burst Stadium (or Battle Stadium) is the arena in which Beyblades battle. Key considerations: <ul><li><strong>Attack Stadiums</strong> — aggressive pocket design that throws tops out easily. Great for Attack-type battles.</li><li><strong>Standard Stadiums</strong> balanced pocket depths for all type battles. Good for beginners.</li><li><strong>Hypersphere/Xtend+</strong> — wall stadiums where tops can travel vertically, unique to certain series</li></ul> For casual play, start with the standard stadium included in dual-pack or entry-level sets.</p>",
1728
+ category: "product_information",
1805
1729
  showOnHomepage: false,
1806
1730
  showInFooter: false,
1807
1731
  isPinned: false,
1808
1732
  order: 4,
1809
- priority: 6,
1810
- tags: ["stock", "availability", "inventory"],
1733
+ priority: 7,
1734
+ tags: ["beyblade", "stadium", "battle-stadium", "guide", "buy"],
1811
1735
  relatedFAQs: [],
1812
1736
  useSiteSettings: false,
1813
- variables: [],
1814
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1737
+ stats: { views: 410, helpful: 350, notHelpful: 16 },
1815
1738
  seo: {
1816
- slug: "product-stock-availability",
1817
- metaTitle: "Product Availability | LetItRip Stock Status",
1818
- metaDescription: "In-stock products show Add to Cart. Out-of-stock items offer notification option.",
1739
+ slug: "beyblade-burst-stadium-guide",
1740
+ metaTitle: "Which Beyblade Stadium Should I Buy? | LetItRip FAQ",
1741
+ metaDescription: "Guide to Beyblade Burst stadiums types, differences, and beginner recommendations.",
1819
1742
  },
1820
1743
  isActive: true,
1821
1744
  createdBy: "system",
1822
1745
  },
1823
1746
  {
1824
- question: "What do product ratings mean?",
1825
- answer: "Ratings are 1-5 stars based on verified customer reviews. 5 stars = excellent, 1 star = poor. Read reviews for detailed feedback on quality, fit, and value.",
1826
- category: "products",
1747
+ question: "Are Takara Tomy Beyblades different from Hasbro Beyblades?",
1748
+ answer: "<p>Yes, there are meaningful differences: <ul><li><strong>Takara Tomy (Japan/Asia)</strong> original manufacturer. Generally higher quality plastic, more consistent performance, considered the 'authentic' competitive version.</li><li><strong>Hasbro (US/International)</strong> — licensed versions with some modified parts and packaging for Western markets. Usually lighter plastic, slight performance differences.</li></ul> Both are physically compatible in most series. Competitive players generally prefer Takara Tomy. All listings on LetItRip specify the manufacturer.</p>",
1749
+ category: "product_information",
1827
1750
  showOnHomepage: false,
1828
1751
  showInFooter: false,
1829
1752
  isPinned: false,
1830
1753
  order: 5,
1831
- priority: 5,
1832
- tags: ["ratings", "reviews", "stars"],
1754
+ priority: 8,
1755
+ tags: ["beyblade", "takara-tomy", "hasbro", "difference", "competitive"],
1833
1756
  relatedFAQs: [],
1834
1757
  useSiteSettings: false,
1835
- variables: [],
1836
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1758
+ stats: { views: 620, helpful: 540, notHelpful: 20 },
1837
1759
  seo: {
1838
- slug: "product-ratings",
1839
- metaTitle: "Product Ratings | LetItRip Review System",
1840
- metaDescription: "1-5 star ratings from verified buyers. Read reviews for quality, fit, and value feedback.",
1760
+ slug: "takara-tomy-vs-hasbro-beyblade",
1761
+ metaTitle: "Takara Tomy vs Hasbro Beyblade — What's the Difference? | FAQ",
1762
+ metaDescription: "Compare Takara Tomy and Hasbro Beyblade Burst: quality, performance, and compatibility.",
1841
1763
  },
1842
1764
  isActive: true,
1843
1765
  createdBy: "system",
1844
1766
  },
1845
1767
  {
1846
- question: "Can I write a product review?",
1847
- answer: 'Yes, after receiving your order, go to "My Orders", select the product, and click "Write Review". Share your experience to help other buyers.',
1848
- category: "products",
1768
+ question: "What launcher do I need for Beyblade Burst?",
1769
+ answer: "<p>Beyblade Burst uses two types of launchers: <ul><li><strong>String Launcher (LR)</strong> — pull-string launch, suitable for all types. Higher spin speed.</li><li><strong>Grip Launcher</strong> — rip-cord mechanism, comes with most starter packs</li></ul> String launchers with a <strong>left-spin (L) or right-spin (R) setting</strong> are recommended for competitive play since some tops have a specific spin direction. Check the spin direction of your top before purchasing a launcher — most tops are right-spin unless labelled 'L' or 'LR'.</p>",
1770
+ category: "product_information",
1849
1771
  showOnHomepage: false,
1850
1772
  showInFooter: false,
1851
1773
  isPinned: false,
1852
1774
  order: 6,
1853
- priority: 5,
1854
- tags: ["reviews", "write", "feedback"],
1775
+ priority: 6,
1776
+ tags: ["beyblade", "launcher", "string-launcher", "grip", "spin-direction"],
1855
1777
  relatedFAQs: [],
1856
1778
  useSiteSettings: false,
1857
- variables: [],
1858
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1779
+ stats: { views: 460, helpful: 390, notHelpful: 18 },
1859
1780
  seo: {
1860
- slug: "write-product-review",
1861
- metaTitle: "Write Review | LetItRip Product Feedback",
1862
- metaDescription: "Write reviews after delivery from My Orders. Share your experience to help other buyers.",
1781
+ slug: "beyblade-burst-launcher-guide",
1782
+ metaTitle: "Which Beyblade Burst Launcher Do I Need? | LetItRip FAQ",
1783
+ metaDescription: "String vs grip launcher for Beyblade Burst and how spin direction matters.",
1863
1784
  },
1864
1785
  isActive: true,
1865
1786
  createdBy: "system",
1866
1787
  },
1867
1788
  {
1868
- question: "What are promoted products?",
1869
- answer: "Promoted products are highlighted listings that sellers pay to advertise. They appear at the top of search results and category pages for better visibility.",
1870
- category: "products",
1789
+ question: "What does 'Burst' mean in Beyblade Burst?",
1790
+ answer: "<p>A 'Burst' occurs when a Beyblade's Energy Layer separates from the Disc and Tip mid-battle due to impact or a locking ratchet being defeated. Bursting a Beyblade counts for 2 points (vs. 1 point for a ring-out). The Burst mechanic introduces a risk/reward system — aggressive Attack types can force bursts but are also vulnerable to bursting themselves. The Burst Stop system on some tops (e.g., Orbit tips) reduces burst risk.</p>",
1791
+ category: "product_information",
1871
1792
  showOnHomepage: false,
1872
1793
  showInFooter: false,
1873
1794
  isPinned: false,
1874
1795
  order: 7,
1875
- priority: 4,
1876
- tags: ["promoted", "ads", "sponsored"],
1796
+ priority: 7,
1797
+ tags: ["beyblade", "burst", "mechanic", "how-it-works", "scoring"],
1877
1798
  relatedFAQs: [],
1878
1799
  useSiteSettings: false,
1879
- variables: [],
1880
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1800
+ stats: { views: 540, helpful: 460, notHelpful: 20 },
1881
1801
  seo: {
1882
- slug: "promoted-products",
1883
- metaTitle: "Promoted Products | LetItRip Sponsored Listings",
1884
- metaDescription: "Promoted products are paid ads appearing at top of search and category pages.",
1802
+ slug: "what-is-beyblade-burst-mechanic",
1803
+ metaTitle: "What Does 'Burst' Mean in Beyblade? | LetItRip FAQ",
1804
+ metaDescription: "The burst mechanic explained what happens when a Beyblade bursts and how scoring works.",
1885
1805
  },
1886
1806
  isActive: true,
1887
1807
  createdBy: "system",
1888
1808
  },
1889
1809
  {
1890
- question: "How do I compare products?",
1891
- answer: 'Click "Compare" on up to 4 products in the same category. A comparison table shows features, prices, ratings, and specifications side-by-side.',
1892
- category: "products",
1810
+ question: "How do I clean and maintain Beyblade Burst performance tips?",
1811
+ answer: "<p>Performance tip maintenance: <ul><li>After each battle session, wipe tips clean with a soft cloth dust causes wobble</li><li>Rubber tips (Xtend, Orbit, Meteo) can be cleaned with isopropyl alcohol on a cotton swab</li><li>Plastic tips need no lubrication — DO NOT apply oil or grease as it increases friction unevenly</li><li>Worn rubber tips can be replaced (sold separately on LetItRip) — rubber degrades after heavy use</li><li>Store Beyblades disassembled to avoid deforming the teeth (ratchet) mechanism</li></ul></p>",
1812
+ category: "product_information",
1893
1813
  showOnHomepage: false,
1894
1814
  showInFooter: false,
1895
1815
  isPinned: false,
1896
1816
  order: 8,
1897
1817
  priority: 5,
1898
- tags: ["compare", "products", "features"],
1818
+ tags: ["beyblade", "maintenance", "clean", "tip", "rubber"],
1899
1819
  relatedFAQs: [],
1900
1820
  useSiteSettings: false,
1901
- variables: [],
1902
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1821
+ stats: { views: 320, helpful: 270, notHelpful: 14 },
1903
1822
  seo: {
1904
- slug: "compare-products",
1905
- metaTitle: "Compare Products | LetItRip Product Comparison",
1906
- metaDescription: "Compare up to 4 products. See features, prices, ratings, and specs side-by-side.",
1823
+ slug: "beyblade-tip-maintenance",
1824
+ metaTitle: "How to Maintain Beyblade Burst Tips | LetItRip FAQ",
1825
+ metaDescription: "Cleaning and maintaining Beyblade Burst performance tips to preserve spinning performance.",
1907
1826
  },
1908
1827
  isActive: true,
1909
1828
  createdBy: "system",
1910
1829
  },
1911
1830
  {
1912
- question: "What is the warranty on products?",
1913
- answer: "Warranty varies by product and seller. Check the product description for warranty terms. Some items come with manufacturer warranty, others with seller warranty.",
1914
- category: "products",
1831
+ question: "What age is Beyblade Burst suitable for?",
1832
+ answer: "<p>Beyblade Burst is officially rated for ages <strong>8 and above</strong> by Takara Tomy and Hasbro. The small parts (metal discs, performance tips) can be a choking hazard for children under 3. String launchers require some hand coordination and strength, which makes 6+ a practical lower limit. For competitive battling, children aged 8–12 pick up the rules quickly. There is no upper age limit — Beyblade has a large adult collector and competitive community.</p>",
1833
+ category: "product_information",
1915
1834
  showOnHomepage: false,
1916
1835
  showInFooter: false,
1917
1836
  isPinned: false,
1918
1837
  order: 9,
1919
- priority: 6,
1920
- tags: ["warranty", "guarantee", "coverage"],
1838
+ priority: 4,
1839
+ tags: ["beyblade", "age", "rating", "kids", "suitable"],
1921
1840
  relatedFAQs: [],
1922
1841
  useSiteSettings: false,
1923
- variables: [],
1924
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1842
+ stats: { views: 290, helpful: 250, notHelpful: 10 },
1925
1843
  seo: {
1926
- slug: "product-warranty",
1927
- metaTitle: "Product Warranty | LetItRip Warranty Information",
1928
- metaDescription: "Warranty terms in product description. Manufacturer or seller warranty depending on item.",
1844
+ slug: "beyblade-burst-age-rating",
1845
+ metaTitle: "What Age is Beyblade Burst Suitable For? | LetItRip FAQ",
1846
+ metaDescription: "Beyblade Burst age rating and safety information for children and adult collectors.",
1929
1847
  },
1930
1848
  isActive: true,
1931
1849
  createdBy: "system",
1932
1850
  },
1933
1851
  {
1934
- question: "Can I request a product not listed?",
1935
- answer: "Yes, use the \"Request Product\" form in the Help section. Provide product details and we'll work with sellers to list it if there's sufficient demand.",
1936
- category: "products",
1852
+ question: "What is the difference between a Beyblade 'Random Booster' and a 'Starter'?",
1853
+ answer: "<p><strong>Starters</strong> contain a single, specific Beyblade top with a launcher you know exactly what you're getting. <strong>Random Boosters</strong> (also called 'blind bag boosters') contain one of several possible tops — you don't know which until you open it. Random Boosters are typically cheaper per top but introduce randomness. Competitive players often prefer Starters for known meta-relevant tops, while casual collectors enjoy the surprise element of Random Boosters.</p>",
1854
+ category: "product_information",
1937
1855
  showOnHomepage: false,
1938
1856
  showInFooter: false,
1939
1857
  isPinned: false,
1940
1858
  order: 10,
1941
- priority: 4,
1942
- tags: ["request", "product", "availability"],
1859
+ priority: 6,
1860
+ tags: ["beyblade", "random-booster", "starter", "blind-bag", "difference"],
1943
1861
  relatedFAQs: [],
1944
1862
  useSiteSettings: false,
1945
- variables: [],
1946
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1863
+ stats: { views: 380, helpful: 320, notHelpful: 16 },
1947
1864
  seo: {
1948
- slug: "request-product",
1949
- metaTitle: "Request Product | LetItRip Product Requests",
1950
- metaDescription: "Request unlisted products via Help section. We work with sellers based on demand.",
1865
+ slug: "beyblade-random-booster-vs-starter",
1866
+ metaTitle: "Beyblade Random Booster vs Starter — What's the Difference? | FAQ",
1867
+ metaDescription: "Compare Beyblade Burst Starters and Random Boosters to choose the right purchase.",
1951
1868
  },
1952
1869
  isActive: true,
1953
1870
  createdBy: "system",
1954
1871
  },
1872
+ // ══════════════════════════════════════════════════════════════════════════
1873
+ // TRANSFORMERS — 8 FAQs
1874
+ // ══════════════════════════════════════════════════════════════════════════
1955
1875
  {
1956
- question: "Are product photos accurate?",
1957
- answer: "We require sellers to use actual product photos. However, slight variations in color may occur due to screen settings. Check product description for details.",
1958
- category: "products",
1876
+ question: "What are the main Transformers toy lines available on LetItRip?",
1877
+ answer: "<p>We stock multiple Transformers lines: <ul><li><strong>Studio Series</strong> movie-accurate figures from live-action films, highly detailed</li><li><strong>Masterpiece (MP)</strong> premium collector-grade figures with maximum accuracy to G1 cartoon/comic designs</li><li><strong>Legacy</strong> homage to classic G1 characters with modern engineering</li><li><strong>Kingdom / War for Cybertron</strong> — G1 designs with battle-damage features</li><li><strong>G1 Vintage (re-issues)</strong> — reissues of original 1984–86 toy designs</li><li><strong>Siege</strong> — Cybertronian mode versions of classic characters</li></ul></p>",
1878
+ category: "product_information",
1959
1879
  showOnHomepage: false,
1960
1880
  showInFooter: false,
1961
- isPinned: false,
1962
- order: 11,
1963
- priority: 5,
1964
- tags: ["photos", "images", "accuracy"],
1881
+ isPinned: true,
1882
+ order: 1,
1883
+ priority: 8,
1884
+ tags: ["transformers", "studio-series", "masterpiece", "legacy", "g1", "line"],
1965
1885
  relatedFAQs: [],
1966
1886
  useSiteSettings: false,
1967
- variables: [],
1968
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1887
+ stats: { views: 540, helpful: 460, notHelpful: 20 },
1969
1888
  seo: {
1970
- slug: "product-photos-accuracy",
1971
- metaTitle: "Product Photos | LetItRip Image Accuracy",
1972
- metaDescription: "Sellers use actual photos. Slight color variations may occur. Check description for details.",
1889
+ slug: "transformers-toy-lines-guide",
1890
+ metaTitle: "Transformers Toy Lines Available on LetItRip | FAQ",
1891
+ metaDescription: "Overview of Transformers toy lines Studio Series, Masterpiece, Legacy, G1 and more.",
1973
1892
  },
1974
1893
  isActive: true,
1975
1894
  createdBy: "system",
1976
1895
  },
1977
1896
  {
1978
- question: "What are the product categories?",
1979
- answer: "Browse categories: Electronics, Fashion, Home & Kitchen, Beauty & Personal Care, Sports & Fitness, Books & Media, Toys & Games, and more. Each category has subcategories for easy navigation.",
1980
- category: "products",
1897
+ question: "What does 'MISB' mean for Transformers figures?",
1898
+ answer: "<p><strong>MISB</strong> stands for <em>Mint in Sealed Box</em> the figure is in its original factory-sealed packaging, never opened. This is the highest condition grade for boxed Transformers. Other common grades: <ul><li><strong>MIB</strong> — Mint in Box (box opened but figure unused)</li><li><strong>MOSC</strong> — Mint on Sealed Card (for smaller carded figures)</li><li><strong>C9/C9.5</strong> — Collector's grade condition scale (C10 = perfect)</li><li><strong>Loose/Complete</strong> — figure removed from packaging, all accessories present</li></ul></p>",
1899
+ category: "product_information",
1981
1900
  showOnHomepage: false,
1982
1901
  showInFooter: false,
1983
1902
  isPinned: false,
1984
- order: 12,
1985
- priority: 4,
1986
- tags: ["categories", "browse", "navigation"],
1903
+ order: 2,
1904
+ priority: 8,
1905
+ tags: ["transformers", "misb", "mib", "condition", "grading", "sealed"],
1987
1906
  relatedFAQs: [],
1988
1907
  useSiteSettings: false,
1989
- variables: [],
1990
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1908
+ stats: { views: 480, helpful: 420, notHelpful: 16 },
1991
1909
  seo: {
1992
- slug: "product-categories",
1993
- metaTitle: "Product Categories | LetItRip Browse Shopping",
1994
- metaDescription: "Shop by category: Electronics, Fashion, Home, Beauty, Sports, Books, Toys, and more.",
1910
+ slug: "transformers-misb-condition-grades",
1911
+ metaTitle: "What Does MISB Mean for Transformers? | LetItRip FAQ",
1912
+ metaDescription: "MISB, MIB, and collector condition grades explained for Transformers figures.",
1995
1913
  },
1996
1914
  isActive: true,
1997
1915
  createdBy: "system",
1998
1916
  },
1999
1917
  {
2000
- question: "How often do you add new products?",
2001
- answer: 'New products are added daily by our sellers. Check "New Arrivals" section or enable notifications for specific categories to stay updated.',
2002
- category: "products",
1918
+ question: "What is the difference between Autobots and Decepticons?",
1919
+ answer: "<p>In the Transformers franchise, the two main factions are: <ul><li><strong>Autobots</strong> led by Optimus Prime. Generally the heroic faction, dedicated to protecting life and freedom. Classic Autobots include Optimus Prime, Bumblebee, Jazz, Ironhide, Ratchet, and the Dinobots.</li><li><strong>Decepticons</strong> — led by Megatron (later Galvatron). The villainous faction seeking Energon and conquest. Classic Decepticons include Megatron, Starscream, Soundwave, Shockwave, and the Constructicons.</li></ul> Most Transformers toy lines are divided between these two factions.</p>",
1920
+ category: "product_information",
2003
1921
  showOnHomepage: false,
2004
1922
  showInFooter: false,
2005
1923
  isPinned: false,
2006
- order: 13,
2007
- priority: 4,
2008
- tags: ["new", "arrivals", "updates"],
1924
+ order: 3,
1925
+ priority: 5,
1926
+ tags: ["transformers", "autobots", "decepticons", "factions", "lore"],
2009
1927
  relatedFAQs: [],
2010
1928
  useSiteSettings: false,
2011
- variables: [],
2012
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1929
+ stats: { views: 420, helpful: 360, notHelpful: 14 },
2013
1930
  seo: {
2014
- slug: "new-products",
2015
- metaTitle: "New Products | LetItRip Latest Arrivals",
2016
- metaDescription: "New products added daily. Check New Arrivals or enable category notifications.",
1931
+ slug: "autobots-vs-decepticons-explained",
1932
+ metaTitle: "Autobots vs Decepticons What's the Difference? | FAQ",
1933
+ metaDescription: "The two main Transformers factions explained for new collectors and fans.",
2017
1934
  },
2018
1935
  isActive: true,
2019
1936
  createdBy: "system",
2020
1937
  },
2021
1938
  {
2022
- question: "Can I report a product listing?",
2023
- answer: 'Yes, if you find inappropriate, counterfeit, or misleading listings, click "Report Product" on the product page or contact {{supportEmail}} with details.',
2024
- category: "products",
1939
+ question: "Are G1 Transformers toys safe and lead-free?",
1940
+ answer: "<p>Original G1 Transformers (1984–1990) were manufactured before modern lead-free toy standards. Some G1 paint formulations from that era may contain lead-based pigments. While the lead risk from casual handling is low, we recommend: <ul><li>Not allowing young children to mouth or chew vintage figures</li><li>Washing hands after extended handling of vintage figures</li><li>Keeping vintage toys on display rather than as play toys for children under 12</li></ul> Hasbro post-2000 and all current production figures comply with modern safety standards.</p>",
1941
+ category: "product_information",
2025
1942
  showOnHomepage: false,
2026
1943
  showInFooter: false,
2027
1944
  isPinned: false,
2028
- order: 14,
2029
- priority: 5,
2030
- tags: ["report", "listing", "inappropriate"],
1945
+ order: 4,
1946
+ priority: 6,
1947
+ tags: ["transformers", "g1", "safety", "lead", "vintage", "children"],
2031
1948
  relatedFAQs: [],
2032
- useSiteSettings: true,
2033
- variables: ["supportEmail"],
2034
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1949
+ useSiteSettings: false,
1950
+ stats: { views: 310, helpful: 270, notHelpful: 12 },
2035
1951
  seo: {
2036
- slug: "report-product-listing",
2037
- metaTitle: "Report Product | LetItRip Report Listings",
2038
- metaDescription: "Report inappropriate or misleading listings. Click Report Product or contact support.",
1952
+ slug: "g1-transformers-safety-lead",
1953
+ metaTitle: "Are G1 Transformers Safe? Lead Paint & Age Safety | FAQ",
1954
+ metaDescription: "Safety information about vintage G1 Transformers toys and modern compliance.",
2039
1955
  },
2040
1956
  isActive: true,
2041
1957
  createdBy: "system",
2042
1958
  },
2043
1959
  {
2044
- question: "Do you offer product recommendations?",
2045
- answer: 'Yes, we provide personalized recommendations based on your browsing history, purchases, and preferences. See "Recommended for You" on the homepage.',
2046
- category: "products",
1960
+ question: "What is a Combiner / Gestalt Transformer?",
1961
+ answer: "<p>Combiners (or Gestalts) are teams of Transformers that physically combine to form one giant robot. Famous examples include <strong>Devastator</strong> (6 Constructicons), <strong>Superion</strong> (5 Aerialbots), and <strong>Menasor</strong> (5 Stunticons). Combiner sets on LetItRip are usually sold as complete team bundles with all figures needed to form the combined mode. Individual members are also sometimes available separately. Combiner engineering varies by line — modern Combiner Wars figures have improved stability vs. vintage G1.</p>",
1962
+ category: "product_information",
2047
1963
  showOnHomepage: false,
2048
1964
  showInFooter: false,
2049
1965
  isPinned: false,
2050
- order: 15,
2051
- priority: 5,
2052
- tags: ["recommendations", "personalized", "suggestions"],
1966
+ order: 5,
1967
+ priority: 6,
1968
+ tags: ["transformers", "combiner", "gestalt", "devastator", "superion"],
2053
1969
  relatedFAQs: [],
2054
1970
  useSiteSettings: false,
2055
- variables: [],
2056
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1971
+ stats: { views: 380, helpful: 320, notHelpful: 14 },
2057
1972
  seo: {
2058
- slug: "product-recommendations",
2059
- metaTitle: "Product Recommendations | LetItRip Personalized Shopping",
2060
- metaDescription: "Get personalized product recommendations based on browsing and purchases.",
1973
+ slug: "transformers-combiner-gestalt-guide",
1974
+ metaTitle: "What is a Combiner Transformer? | LetItRip FAQ",
1975
+ metaDescription: "Combiner and Gestalt Transformers explained what they are and how they combine.",
2061
1976
  },
2062
1977
  isActive: true,
2063
1978
  createdBy: "system",
2064
1979
  },
2065
- // ============================================
2066
- // SELLERS (12 FAQs)
2067
- // ============================================
2068
1980
  {
2069
- question: "How do I become a seller on LetItRip?",
2070
- answer: 'Click "Become a Seller" in the footer, complete the registration form with business details, submit required documents (PAN, GST, bank details), and wait for verification (2-3 platform days).',
2071
- category: "sellers",
1981
+ question: "How do I know if a Transformers figure is official Hasbro or a KO (knock-off)?",
1982
+ answer: "<p>Authentic Hasbro/Takara Tomy figures can be identified by: <ul><li>Hasbro or Takara copyright stamp on the figure (usually on underside or leg)</li><li>Quality of plastic — KOs often use brittle, chalky plastic</li><li>Tight transformation joints — KOs are often loose or snapping</li><li>Packaging barcode validity (search the barcode online)</li><li>Price — unusually cheap 'Studio Series' is a red flag</li></ul> All sellers on LetItRip who list Transformers must provide proof of purchase. Report suspected KOs via our report button.</p>",
1983
+ category: "product_information",
2072
1984
  showOnHomepage: false,
2073
- showInFooter: true,
1985
+ showInFooter: false,
2074
1986
  isPinned: false,
2075
- order: 1,
1987
+ order: 6,
2076
1988
  priority: 8,
2077
- tags: ["seller", "registration", "become seller"],
1989
+ tags: ["transformers", "knock-off", "ko", "authentic", "identify", "fake"],
2078
1990
  relatedFAQs: [],
2079
1991
  useSiteSettings: false,
2080
- variables: [],
2081
- stats: { views: 0, helpful: 0, notHelpful: 0 },
1992
+ stats: { views: 560, helpful: 480, notHelpful: 20 },
2082
1993
  seo: {
2083
- slug: "become-seller",
2084
- metaTitle: "Become a Seller | LetItRip Seller Registration",
2085
- metaDescription: "Register as seller with business details and documents. Verification in 2-3 days.",
1994
+ slug: "identify-transformers-knock-off",
1995
+ metaTitle: "How to Spot a Fake Transformers Figure (KO) | LetItRip FAQ",
1996
+ metaDescription: "Tips to identify authentic Hasbro Transformers vs knock-off (KO) figures.",
2086
1997
  },
2087
1998
  isActive: true,
2088
1999
  createdBy: "system",
2089
2000
  },
2090
2001
  {
2091
- question: "What are the seller fees?",
2092
- answer: "We charge a commission of 10-15% per sale depending on the product category. There are no listing fees, monthly charges, or hidden costs.",
2093
- category: "sellers",
2002
+ question: "What size classes do Transformers figures come in?",
2003
+ answer: "<p>Current Transformers lines use these size classes (smallest to largest): <ul><li><strong>Core Class</strong> — small, ~10 cm, budget figures</li><li><strong>Deluxe Class</strong> ~14 cm, most common size, good detail</li><li><strong>Voyager Class</strong> — ~18 cm, more complex transformation</li><li><strong>Leader Class</strong> — ~22 cm, premium figures with light/sound in some lines</li><li><strong>Commander Class</strong> — ~28 cm, top-tier figures</li><li><strong>Titan Class</strong> — 60+ cm, city-sized figures (e.g., Metroplex, Fortress Maximus)</li></ul> All listings on LetItRip specify the size class.</p>",
2004
+ category: "product_information",
2094
2005
  showOnHomepage: false,
2095
2006
  showInFooter: false,
2096
2007
  isPinned: false,
2097
- order: 2,
2098
- priority: 7,
2099
- tags: ["fees", "commission", "charges"],
2008
+ order: 7,
2009
+ priority: 6,
2010
+ tags: ["transformers", "size-class", "deluxe", "voyager", "leader", "titan"],
2100
2011
  relatedFAQs: [],
2101
2012
  useSiteSettings: false,
2102
- variables: [],
2103
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2013
+ stats: { views: 440, helpful: 380, notHelpful: 16 },
2104
2014
  seo: {
2105
- slug: "seller-fees",
2106
- metaTitle: "Seller Fees | LetItRip Commission Structure",
2107
- metaDescription: "10-15% commission per sale by category. No listing fees or monthly charges.",
2015
+ slug: "transformers-size-classes-guide",
2016
+ metaTitle: "Transformers Figure Size Classes Explained | LetItRip FAQ",
2017
+ metaDescription: "Core, Deluxe, Voyager, Leader, Commander, Titan all Transformers size classes explained.",
2108
2018
  },
2109
2019
  isActive: true,
2110
2020
  createdBy: "system",
2111
2021
  },
2112
2022
  {
2113
- question: "How do I list products?",
2114
- answer: 'Log in to Seller Dashboard, click "Add Product", fill in details (title, description, price, images, specifications), set shipping options, and publish. Your listing goes live immediately after review.',
2115
- category: "sellers",
2023
+ question: "Can I return a Transformers figure if the transformation is too difficult?",
2024
+ answer: "<p>Returns based on 'too difficult to transform' are not covered under our standard return policy — complex transformation is a feature of the product, not a defect. However, if a joint is broken at arrival, a peg is snapped, or a part is missing, this qualifies as a defective item and is eligible for return or replacement within the seller's return window. Always record an unboxing video for high-value figures to document condition on arrival. Reach out to the seller first; escalate to LetItRip support if unresolved.</p>",
2025
+ category: "returns_refunds",
2116
2026
  showOnHomepage: false,
2117
2027
  showInFooter: false,
2118
2028
  isPinned: false,
2119
- order: 3,
2120
- priority: 7,
2121
- tags: ["listing", "products", "add"],
2029
+ order: 11,
2030
+ priority: 6,
2031
+ tags: ["transformers", "return", "defective", "transformation", "difficult"],
2122
2032
  relatedFAQs: [],
2123
2033
  useSiteSettings: false,
2124
- variables: [],
2125
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2034
+ stats: { views: 280, helpful: 240, notHelpful: 20 },
2126
2035
  seo: {
2127
- slug: "list-products",
2128
- metaTitle: "List Products | LetItRip Seller Guide",
2129
- metaDescription: "Add products from Seller Dashboard. Fill details, set shipping, publish. Live after review.",
2036
+ slug: "transformers-return-difficult-transformation",
2037
+ metaTitle: "Can I Return a Transformers Figure if Hard to Transform? | FAQ",
2038
+ metaDescription: "Return eligibility for Transformers figures defects vs difficulty level.",
2130
2039
  },
2131
2040
  isActive: true,
2132
2041
  createdBy: "system",
2133
2042
  },
2043
+ // ══════════════════════════════════════════════════════════════════════════
2044
+ // SELLERS & STORES — 8 additional FAQs
2045
+ // ══════════════════════════════════════════════════════════════════════════
2134
2046
  {
2135
- question: "When do I receive payments?",
2136
- answer: "Payments are released 7 platform days after delivery confirmation. A platform day starts at 10:00 AM IST \u2014 any delivery confirmed before 10 AM counts from that same day's 10 AM start. Funds are transferred to your registered bank account once the 7-day window is complete.",
2137
- category: "sellers",
2138
- showOnHomepage: false,
2047
+ question: "How do I open a store on LetItRip?",
2048
+ answer: "<p>To open a store: <ol><li>Create an account and complete email verification</li><li>Navigate to <strong>Dashboard Become a Seller</strong></li><li>Complete KYC: upload government ID and a selfie for verification</li><li>Set up your store profile name, logo, banner, bio, and location</li><li>Add your first product listing</li><li>Once approved by our team (usually within 24 hours), your store goes live</li></ol> Stores are free to open. Platform fees apply per sale (see our fee schedule).</p>",
2049
+ category: "general",
2050
+ showOnHomepage: true,
2139
2051
  showInFooter: false,
2140
- isPinned: false,
2141
- order: 4,
2142
- priority: 8,
2143
- tags: ["payments", "payout", "seller"],
2052
+ isPinned: true,
2053
+ order: 12,
2054
+ priority: 9,
2055
+ tags: ["seller", "store", "open", "kyc", "how-to", "dashboard"],
2144
2056
  relatedFAQs: [],
2145
2057
  useSiteSettings: false,
2146
- variables: [],
2147
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2058
+ stats: { views: 920, helpful: 810, notHelpful: 28 },
2148
2059
  seo: {
2149
- slug: "seller-payments",
2150
- metaTitle: "Seller Payments | LetItRip Payout Schedule",
2151
- metaDescription: "Payments released 7 platform days after delivery (day starts 10 AM IST). Transferred to bank.",
2060
+ slug: "how-to-open-store-letitrip",
2061
+ metaTitle: "How to Open a Store on LetItRip | Seller Guide",
2062
+ metaDescription: "Step-by-step guide to opening a collectibles store on LetItRip marketplace.",
2152
2063
  },
2153
2064
  isActive: true,
2154
2065
  createdBy: "system",
2155
2066
  },
2156
2067
  {
2157
- question: "Can I promote my products?",
2158
- answer: 'Yes, use the "Promote Product" feature in Seller Dashboard. Promoted listings appear at top of search results. Pricing starts at10/day per product.',
2159
- category: "sellers",
2068
+ question: "What are LetItRip's seller fees?",
2069
+ answer: "<p>LetItRip charges the following fees to sellers: <ul><li><strong>Listing fee</strong>: Free (no charge to list)</li><li><strong>Transaction fee</strong>: 5% of the sale price on completed orders</li><li><strong>Payment processing</strong>: 2% + GST (passed through from payment gateway)</li><li><strong>Promoted listing fee</strong>: 99–₹499 per 7-day promotion window (optional)</li></ul> No subscription fee. Fees are automatically deducted before payout. Full fee schedule available in the Seller Help Centre.</p>",
2070
+ category: "general",
2160
2071
  showOnHomepage: false,
2161
2072
  showInFooter: false,
2162
2073
  isPinned: false,
2163
- order: 5,
2164
- priority: 6,
2165
- tags: ["promotion", "advertising", "sponsored"],
2074
+ order: 13,
2075
+ priority: 8,
2076
+ tags: ["seller", "fees", "commission", "listing", "transaction"],
2166
2077
  relatedFAQs: [],
2167
2078
  useSiteSettings: false,
2168
- variables: [],
2169
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2079
+ stats: { views: 740, helpful: 650, notHelpful: 30 },
2170
2080
  seo: {
2171
- slug: "promote-products",
2172
- metaTitle: "Promote Products | LetItRip Seller Advertising",
2173
- metaDescription: "Promote products from Seller Dashboard. Top search placement starts at ₹10/day.",
2081
+ slug: "letitrip-seller-fees",
2082
+ metaTitle: "LetItRip Seller Fees & Commission Structure | FAQ",
2083
+ metaDescription: "Complete breakdown of seller fees on LetItRip listing, transaction, and payment processing.",
2174
2084
  },
2175
2085
  isActive: true,
2176
2086
  createdBy: "system",
2177
2087
  },
2178
2088
  {
2179
- question: "What documents do I need to register as a seller?",
2180
- answer: "Required: PAN card, GST certificate (if applicable), bank account details, business address proof, and identity proof (Aadhaar/Passport/Driving License).",
2181
- category: "sellers",
2089
+ question: "How long does it take to get paid after a sale?",
2090
+ answer: "<p>Payouts are processed within <strong>7 business days</strong> after the buyer confirms receipt and the return window closes. Payouts go to your linked bank account via NEFT/IMPS. The timeline: <ol><li>Order placed — payment held</li><li>You ship and upload tracking</li><li>Buyer receives item — return window opens (3–7 days depending on product type)</li><li>Return window closes → payout initiated</li><li>Bank credit within 1–3 business days after initiation</li></ol> For auction wins, the same timeline applies.</p>",
2091
+ category: "general",
2182
2092
  showOnHomepage: false,
2183
2093
  showInFooter: false,
2184
2094
  isPinned: false,
2185
- order: 6,
2186
- priority: 7,
2187
- tags: ["documents", "registration", "verification"],
2095
+ order: 14,
2096
+ priority: 8,
2097
+ tags: ["seller", "payout", "payment", "timeline", "bank"],
2188
2098
  relatedFAQs: [],
2189
2099
  useSiteSettings: false,
2190
- variables: [],
2191
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2100
+ stats: { views: 680, helpful: 590, notHelpful: 22 },
2192
2101
  seo: {
2193
- slug: "seller-documents",
2194
- metaTitle: "Seller Documents | LetItRip Registration Requirements",
2195
- metaDescription: "Required docs: PAN, GST, bank details, address proof, ID proof for seller registration.",
2102
+ slug: "seller-payout-timeline",
2103
+ metaTitle: "When Do Sellers Get Paid on LetItRip? | Payout FAQ",
2104
+ metaDescription: "Seller payout timeline explained from order to bank credit on LetItRip.",
2196
2105
  },
2197
2106
  isActive: true,
2198
2107
  createdBy: "system",
2199
2108
  },
2200
2109
  {
2201
- question: "How do I manage inventory?",
2202
- answer: 'Use Seller Dashboard "Inventory Management" to update stock levels, set low-stock alerts, and bulk upload inventory via CSV files.',
2203
- category: "sellers",
2110
+ question: "Can I set my own return policy as a seller?",
2111
+ answer: "<p>Yes. LetItRip gives sellers flexibility to set store-level return policies. You can configure: <ul><li>Return window: 0, 3, 7, or 14 days after delivery</li><li>Return reason requirements: all reasons, buyer's remorse excluded, defect only</li><li>Who pays return shipping: buyer or seller</li></ul> Platform-level minimum: if an item arrives damaged or not-as-described, buyers are always protected regardless of your policy. Your custom policy is shown on every product page.</p>",
2112
+ category: "general",
2204
2113
  showOnHomepage: false,
2205
2114
  showInFooter: false,
2206
2115
  isPinned: false,
2207
- order: 7,
2208
- priority: 6,
2209
- tags: ["inventory", "stock", "management"],
2116
+ order: 15,
2117
+ priority: 7,
2118
+ tags: ["seller", "return", "policy", "custom", "store"],
2210
2119
  relatedFAQs: [],
2211
2120
  useSiteSettings: false,
2212
- variables: [],
2213
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2121
+ stats: { views: 460, helpful: 400, notHelpful: 18 },
2214
2122
  seo: {
2215
- slug: "manage-inventory",
2216
- metaTitle: "Inventory Management | LetItRip Seller Dashboard",
2217
- metaDescription: "Manage stock levels, set alerts, bulk upload via CSV in Seller Dashboard.",
2123
+ slug: "seller-return-policy-settings",
2124
+ metaTitle: "Can Sellers Set Their Own Return Policy? | LetItRip FAQ",
2125
+ metaDescription: "How sellers can configure return windows and policies on LetItRip.",
2218
2126
  },
2219
2127
  isActive: true,
2220
2128
  createdBy: "system",
2221
2129
  },
2222
2130
  {
2223
- question: "What is seller rating and how does it work?",
2224
- answer: "Seller rating (1-5 stars) is based on customer reviews, order fulfillment speed, product quality, and customer service. High ratings improve visibility.",
2225
- category: "sellers",
2131
+ question: "What happens if a buyer raises a dispute against me?",
2132
+ answer: "<p>If a buyer raises a dispute: <ol><li>You receive a notification and have <strong>48 hours</strong> to respond</li><li>Provide evidence: tracking proof, photos of item before shipping, description accuracy</li><li>LetItRip mediation team reviews both sides within 5 business days</li><li>If resolved in your favour, the order completes normally</li><li>If resolved in the buyer's favour, a full or partial refund is issued; item returned to you</li></ol> Always ship with tracking and photograph items before packing to build your evidence trail.</p>",
2133
+ category: "general",
2226
2134
  showOnHomepage: false,
2227
2135
  showInFooter: false,
2228
2136
  isPinned: false,
2229
- order: 8,
2230
- priority: 5,
2231
- tags: ["rating", "reviews", "seller performance"],
2137
+ order: 16,
2138
+ priority: 7,
2139
+ tags: ["seller", "dispute", "resolution", "mediation", "tracking"],
2232
2140
  relatedFAQs: [],
2233
2141
  useSiteSettings: false,
2234
- variables: [],
2235
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2142
+ stats: { views: 520, helpful: 450, notHelpful: 22 },
2236
2143
  seo: {
2237
- slug: "seller-rating",
2238
- metaTitle: "Seller Rating | LetItRip Performance Metrics",
2239
- metaDescription: "1-5 star rating based on reviews, fulfillment, quality, service. High ratings boost visibility.",
2144
+ slug: "seller-dispute-resolution-process",
2145
+ metaTitle: "What Happens If a Buyer Disputes My Order? | LetItRip FAQ",
2146
+ metaDescription: "LetItRip's dispute resolution process for sellers timeline and evidence requirements.",
2240
2147
  },
2241
2148
  isActive: true,
2242
2149
  createdBy: "system",
2243
2150
  },
2244
2151
  {
2245
- question: "Can I offer discounts and coupons?",
2246
- answer: 'Yes, create discount codes in Seller Dashboard "Promotions". Set percentage/fixed discounts, minimum order values, expiry dates, and usage limits.',
2247
- category: "sellers",
2152
+ question: "Can I list pre-order products before they arrive in stock?",
2153
+ answer: "<p>Yes, pre-order listings are fully supported. To list a pre-order: <ol><li>Create a product listing and toggle <strong>Pre-Order Mode</strong> on</li><li>Set the estimated dispatch date and deposit amount</li><li>Add a pre-order note explaining terms (e.g., 'Full payment at dispatch')</li><li>Buyers pay a deposit to reserve the item</li></ol> You must update the listing if dispatch dates change and notify affected buyers. Repeated delays or cancellations can trigger seller rating penalties. Full payment processing happens at dispatch.</p>",
2154
+ category: "general",
2248
2155
  showOnHomepage: false,
2249
2156
  showInFooter: false,
2250
2157
  isPinned: false,
2251
- order: 9,
2252
- priority: 5,
2253
- tags: ["discounts", "coupons", "promotions"],
2158
+ order: 17,
2159
+ priority: 7,
2160
+ tags: ["seller", "pre-order", "listing", "deposit", "dispatch"],
2254
2161
  relatedFAQs: [],
2255
2162
  useSiteSettings: false,
2256
- variables: [],
2257
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2163
+ stats: { views: 390, helpful: 340, notHelpful: 14 },
2258
2164
  seo: {
2259
- slug: "seller-discounts",
2260
- metaTitle: "Seller Discounts | LetItRip Coupon Creation",
2261
- metaDescription: "Create discount codes in Promotions. Set amounts, minimums, expiry, usage limits.",
2165
+ slug: "seller-pre-order-listing-guide",
2166
+ metaTitle: "How to List Pre-Order Products on LetItRip | Seller Guide",
2167
+ metaDescription: "Step-by-step guide to creating pre-order listings on LetItRip as a seller.",
2262
2168
  },
2263
2169
  isActive: true,
2264
2170
  createdBy: "system",
2265
2171
  },
2266
2172
  {
2267
- question: "How do I handle returns and refunds?",
2268
- answer: "Returns are managed in Seller Dashboard. When a return is requested, review the reason, approve/reject within 24 hours, and arrange pickup. Refunds are processed after inspection.",
2269
- category: "sellers",
2173
+ question: "How do I promote a listing on LetItRip?",
2174
+ answer: "<p>Promoted listings appear at the top of search results, category pages, and may be featured on the homepage. To promote: <ol><li>Go to your Dashboard → My Products</li><li>Click the <strong>Promote</strong> button on any active listing</li><li>Choose a duration: 7, 14, or 30 days</li><li>Pay the promotion fee (₹99–₹499 depending on duration and category)</li></ol> Promoted listings show a 'Promoted' badge. Analytics (views, clicks, conversions) are tracked in your dashboard.</p>",
2175
+ category: "general",
2270
2176
  showOnHomepage: false,
2271
2177
  showInFooter: false,
2272
2178
  isPinned: false,
2273
- order: 10,
2179
+ order: 18,
2274
2180
  priority: 6,
2275
- tags: ["returns", "refunds", "seller"],
2181
+ tags: ["seller", "promote", "promotion", "listing", "featured"],
2276
2182
  relatedFAQs: [],
2277
2183
  useSiteSettings: false,
2278
- variables: [],
2279
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2184
+ stats: { views: 380, helpful: 320, notHelpful: 16 },
2280
2185
  seo: {
2281
- slug: "seller-returns",
2282
- metaTitle: "Seller Returns | LetItRip Return Management",
2283
- metaDescription: "Manage returns in Dashboard. Review, approve/reject in 24h, arrange pickup, process refunds.",
2186
+ slug: "how-to-promote-listing",
2187
+ metaTitle: "How to Promote a Listing on LetItRip | Seller FAQ",
2188
+ metaDescription: "How to get your collectibles listings promoted on LetItRip for more visibility.",
2284
2189
  },
2285
2190
  isActive: true,
2286
2191
  createdBy: "system",
2287
2192
  },
2288
2193
  {
2289
- question: "What are the product listing guidelines?",
2290
- answer: "Use clear photos, accurate descriptions, competitive pricing, correct category, and include all specifications. Prohibited: counterfeit goods, illegal items, misleading information.",
2291
- category: "sellers",
2194
+ question: "Can I run a sale or discount on my store products?",
2195
+ answer: "<p>Yes. You can offer discounts via two mechanisms: <ul><li><strong>Direct price edit</strong>: Simply lower the price on any listing. Add 'SALE' to the product title to make it clear.</li><li><strong>Store Coupons</strong>: Create a coupon code (e.g., BEYBLADE10) from Dashboard → Coupons → Create. Set percentage or flat discount, expiry, and per-user limits. Share the code with your social media following or newsletter.</li></ul> Platform-wide sale events (e.g., Diwali Sale) offer additional visibility for participating sellers.</p>",
2196
+ category: "general",
2292
2197
  showOnHomepage: false,
2293
2198
  showInFooter: false,
2294
2199
  isPinned: false,
2295
- order: 11,
2200
+ order: 19,
2296
2201
  priority: 6,
2297
- tags: ["guidelines", "policies", "listing"],
2298
- relatedFAQs: [],
2299
- useSiteSettings: false,
2300
- variables: [],
2301
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2302
- seo: {
2303
- slug: "listing-guidelines",
2304
- metaTitle: "Listing Guidelines | LetItRip Seller Policies",
2305
- metaDescription: "Use clear photos, accurate info, correct category. No counterfeits or misleading content.",
2306
- },
2307
- isActive: true,
2308
- createdBy: "system",
2309
- },
2310
- {
2311
- question: "Can I sell internationally?",
2312
- answer: "Currently, LetItRip only supports domestic sales within India. International selling may be available in the future.",
2313
- category: "sellers",
2314
- showOnHomepage: false,
2315
- showInFooter: false,
2316
- isPinned: false,
2317
- order: 12,
2318
- priority: 4,
2319
- tags: ["international", "selling", "export"],
2202
+ tags: ["seller", "discount", "sale", "coupon", "store"],
2320
2203
  relatedFAQs: [],
2321
2204
  useSiteSettings: false,
2322
- variables: [],
2323
- stats: { views: 0, helpful: 0, notHelpful: 0 },
2205
+ stats: { views: 340, helpful: 290, notHelpful: 12 },
2324
2206
  seo: {
2325
- slug: "international-selling",
2326
- metaTitle: "International Selling | LetItRip Export Options",
2327
- metaDescription: "Currently India-only sales. International selling coming soon.",
2207
+ slug: "seller-discount-sale-coupon",
2208
+ metaTitle: "How to Run Sales and Discounts as a Seller | LetItRip FAQ",
2209
+ metaDescription: "Create discounts, coupons, and sales on your LetItRip store.",
2328
2210
  },
2329
2211
  isActive: true,
2330
2212
  createdBy: "system",
2331
2213
  },
2332
2214
  ];
2333
- // Export with camelCase name for consistency with other seed data files
2334
- export const faqSeedData = FAQ_SEED_DATA.map(normalizeFaqSeed);
2215
+ const NOW = new Date();
2216
+ const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
2217
+ export const faqSeedData = RAW_FAQS.map((faq, i) => ({
2218
+ ...normalizeFaqSeed(faq),
2219
+ createdAt: daysAgo(400 - i * 5),
2220
+ updatedAt: daysAgo(Math.max(1, 60 - i * 1)),
2221
+ }));