@mohasinac/appkit 2.7.53 → 2.7.54

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 (123) hide show
  1. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
  2. package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
  3. package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
  4. package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
  5. package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
  6. package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
  7. package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
  8. package/dist/client.d.ts +2 -0
  9. package/dist/client.js +1 -0
  10. package/dist/constants/field-names.d.ts +4 -3
  11. package/dist/constants/field-names.js +8 -8
  12. package/dist/errors/error-codes.d.ts +3 -0
  13. package/dist/errors/error-codes.js +3 -0
  14. package/dist/errors/messages.d.ts +3 -0
  15. package/dist/errors/messages.js +3 -0
  16. package/dist/features/admin/types/product.types.d.ts +1 -1
  17. package/dist/features/admin/types/product.types.js +2 -3
  18. package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
  19. package/dist/features/auctions/actions/bid-actions.js +61 -0
  20. package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
  21. package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
  22. package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
  23. package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
  24. package/dist/features/auctions/types/index.d.ts +1 -1
  25. package/dist/features/layout/AppLayoutShell.js +1 -1
  26. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
  27. package/dist/features/products/api/[id]/route.js +4 -8
  28. package/dist/features/products/api/route.js +1 -3
  29. package/dist/features/products/components/AuctionsIndexListing.js +3 -11
  30. package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
  31. package/dist/features/products/components/ProductFilters.d.ts +33 -9
  32. package/dist/features/products/components/ProductFilters.js +6 -29
  33. package/dist/features/products/components/ProductForm.js +2 -3
  34. package/dist/features/products/constants/sieve.d.ts +162 -0
  35. package/dist/features/products/constants/sieve.js +95 -0
  36. package/dist/features/products/repository/products.repository.d.ts +5 -0
  37. package/dist/features/products/repository/products.repository.js +23 -3
  38. package/dist/features/products/schemas/firestore.d.ts +4 -4
  39. package/dist/features/products/schemas/firestore.js +2 -3
  40. package/dist/features/products/schemas/index.d.ts +6 -6
  41. package/dist/features/products/schemas/index.js +2 -6
  42. package/dist/features/products/types/index.d.ts +1 -1
  43. package/dist/features/seller/actions/offer-actions.js +2 -2
  44. package/dist/features/wishlist/types/index.d.ts +1 -1
  45. package/dist/index.d.ts +6 -3
  46. package/dist/index.js +6 -4
  47. package/dist/seed/addresses-seed-data.d.ts +2 -18
  48. package/dist/seed/addresses-seed-data.js +137 -203
  49. package/dist/seed/bids-seed-data.d.ts +2 -8
  50. package/dist/seed/bids-seed-data.js +172 -648
  51. package/dist/seed/blog-posts-seed-data.d.ts +0 -5
  52. package/dist/seed/blog-posts-seed-data.js +341 -596
  53. package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
  54. package/dist/seed/carousel-slides-seed-data.js +61 -192
  55. package/dist/seed/carousels-seed-data.js +18 -1
  56. package/dist/seed/cart-seed-data.d.ts +1 -18
  57. package/dist/seed/cart-seed-data.js +116 -293
  58. package/dist/seed/categories-seed-data.d.ts +0 -6
  59. package/dist/seed/categories-seed-data.js +1409 -1537
  60. package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
  61. package/dist/seed/claimed-coupons-seed-data.js +32 -29
  62. package/dist/seed/conversations-seed-data.d.ts +0 -6
  63. package/dist/seed/conversations-seed-data.js +132 -280
  64. package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
  65. package/dist/seed/coupon-usage-seed-data.js +30 -44
  66. package/dist/seed/coupons-seed-data.d.ts +0 -6
  67. package/dist/seed/coupons-seed-data.js +141 -489
  68. package/dist/seed/events-seed-data.d.ts +0 -6
  69. package/dist/seed/events-seed-data.js +201 -379
  70. package/dist/seed/faq-seed-data.d.ts +0 -14
  71. package/dist/seed/faq-seed-data.js +609 -1184
  72. package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
  73. package/dist/seed/grouped-listings-seed-data.js +148 -233
  74. package/dist/seed/history-seed-data.d.ts +0 -7
  75. package/dist/seed/history-seed-data.js +50 -54
  76. package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
  77. package/dist/seed/homepage-sections-seed-data.js +83 -175
  78. package/dist/seed/index.d.ts +1 -1
  79. package/dist/seed/index.js +1 -1
  80. package/dist/seed/manifest.js +2 -2
  81. package/dist/seed/notifications-seed-data.d.ts +0 -6
  82. package/dist/seed/notifications-seed-data.js +309 -196
  83. package/dist/seed/offers-seed-data.d.ts +0 -8
  84. package/dist/seed/offers-seed-data.js +118 -197
  85. package/dist/seed/orders-seed-data.d.ts +2 -8
  86. package/dist/seed/orders-seed-data.js +248 -1510
  87. package/dist/seed/payouts-seed-data.d.ts +0 -6
  88. package/dist/seed/payouts-seed-data.js +102 -441
  89. package/dist/seed/products-auctions-seed-data.d.ts +1 -14
  90. package/dist/seed/products-auctions-seed-data.js +612 -1084
  91. package/dist/seed/products-preorders-seed-data.d.ts +119 -14
  92. package/dist/seed/products-preorders-seed-data.js +154 -455
  93. package/dist/seed/products-standard-seed-data.d.ts +1 -15
  94. package/dist/seed/products-standard-seed-data.js +1355 -4128
  95. package/dist/seed/reviews-seed-data.d.ts +2 -8
  96. package/dist/seed/reviews-seed-data.js +99 -1182
  97. package/dist/seed/scammers-seed-data.d.ts +0 -15
  98. package/dist/seed/scammers-seed-data.js +36 -37
  99. package/dist/seed/sessions-seed-data.d.ts +0 -13
  100. package/dist/seed/sessions-seed-data.js +58 -335
  101. package/dist/seed/site-settings-seed-data.d.ts +0 -4
  102. package/dist/seed/site-settings-seed-data.js +61 -52
  103. package/dist/seed/store-addresses-seed-data.js +27 -151
  104. package/dist/seed/store-extensions-seed-data.d.ts +0 -7
  105. package/dist/seed/store-extensions-seed-data.js +147 -261
  106. package/dist/seed/stores-seed-data.d.ts +0 -5
  107. package/dist/seed/stores-seed-data.js +222 -184
  108. package/dist/seed/sub-listings-seed-data.d.ts +119 -0
  109. package/dist/seed/sub-listings-seed-data.js +447 -0
  110. package/dist/seed/support-tickets-seed-data.d.ts +0 -7
  111. package/dist/seed/support-tickets-seed-data.js +82 -75
  112. package/dist/seed/users-seed-data.d.ts +0 -5
  113. package/dist/seed/users-seed-data.js +279 -634
  114. package/dist/seed/wishlists-seed-data.d.ts +0 -9
  115. package/dist/seed/wishlists-seed-data.js +36 -52
  116. package/dist/seo/json-ld.js +6 -4
  117. package/dist/styles.css +8052 -3
  118. package/dist/utils/index.d.ts +1 -0
  119. package/dist/utils/index.js +1 -0
  120. package/dist/utils/search-tokens.d.ts +2 -0
  121. package/dist/utils/search-tokens.js +21 -0
  122. package/package.json +2 -2
  123. package/scripts/seed-cli.mjs +2 -2
@@ -1,1653 +1,1078 @@
1
- /**
2
- * FAQ Seed Data LetItRip Collectibles Platform
3
- * 53 FAQs across 7 categories. faq- prefix, id === slug.
1
+ /*
2
+ * WHY: Seeds 55 FAQs for LetItRip collectibles marketplace — covers general platform, shipping,
3
+ * returns, payments, auctions, pre-orders, product info, account/security, scam awareness.
4
+ * WHAT: Mix of broad collectibles marketplace FAQs + category-specific FAQs (trading cards, action figures,
5
+ * diecast, Beyblade, model kits, grading, authenticity, bundles, prize draws).
4
6
  *
5
- * Homepage FAQs (showOnHomepage: true): 8 — shown expanded by default for SEO.
6
- * Footer FAQs (showInFooter: true): 5 linked from the site footer.
7
+ * EXPORTS:
8
+ * faqSeedData Array of Partial<FAQDocument> for seed runner
7
9
  *
8
- * Platform tone:
9
- * - Shipping timelines and return policies are set by individual stores.
10
- * Buyers must check each store's About page for their specific rules.
11
- * - LetItRip is a marketplace platform. We verify sellers and mediate
12
- * disputes, but we are not the seller and cannot guarantee every
13
- * transaction. Buying collectibles carries inherent risk.
10
+ * @tag domain:faqs
11
+ * @tag layer:seed
12
+ * @tag pattern:none
13
+ * @tag access:server-only
14
+ * @tag consumers:seed/index.ts,seed/runner.ts,SeedPanel
15
+ * @tag sideEffects:none
14
16
  */
15
17
  const NOW = new Date();
16
18
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
17
19
  const html = (text) => ({ text, format: "html" });
18
20
  const makeStats = (views = 0, helpful = 0) => ({ views, helpful, notHelpful: 0 });
19
21
  export const faqSeedData = [
20
- // ══════════════════════════════════════════════════════════════════════════
21
- // GENERAL (10 FAQs)
22
- // ══════════════════════════════════════════════════════════════════════════
22
+ // ── GENERAL (10) ────────────────────────────────────────────────────────────
23
23
  {
24
24
  id: "faq-what-is-letitrip",
25
25
  question: "What is LetItRip?",
26
- answer: html(`<p><strong>LetItRip</strong> is India's dedicated collectibles marketplace where verified sellers list Pokémon TCG cards, Hot Wheels diecast, Beyblade X tops, anime figures, Gunpla model kits, and rare vintage toys. Every seller on LetItRip is manually reviewed before they can list — so you're always browsing verified inventory.</p><p>LetItRip is a <strong>platform</strong> that connects buyers with independent sellers. We handle payments, escrow, and dispute mediation — but we are not the seller. Each store on LetItRip is an independent business with its own shipping, return, and authenticity policies. Always read a store's About page before you buy.</p>`),
26
+ answer: html(`<p><strong>LetItRip</strong> is India's largest collectibles marketplace trading cards (Pokémon, Yu-Gi-Oh!, One Piece), action figures (Bandai, McFarlane, Good Smile), diecast vehicles (Hot Wheels, Tomica), Beyblades, model kits (Gundam, Zoids), and vintage/rare collectibles. Every seller is manually verified before they can list.</p><p>LetItRip is a <strong>platform</strong> that connects buyers with independent sellers. We handle payments, escrow, and dispute mediation — but we are not the seller. Each store has its own shipping, return, and authenticity policies.</p>`),
27
27
  category: "general",
28
28
  showOnHomepage: true,
29
29
  showInFooter: false,
30
30
  isPinned: true,
31
31
  order: 1,
32
32
  priority: 10,
33
- tags: ["about", "letitrip", "platform", "marketplace"],
34
- relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-does-letitrip-work"],
33
+ tags: ["about", "letitrip", "platform", "marketplace", "collectibles"],
34
+ relatedFAQs: ["faq-is-letitrip-safe", "faq-how-does-letitrip-work"],
35
35
  useSiteSettings: true,
36
36
  variables: {},
37
37
  stats: makeStats(8200, 410),
38
- seo: {
39
- slug: "faq-what-is-letitrip",
40
- metaTitle: "What is LetItRip? India's Collectibles Marketplace",
41
- metaDescription: "LetItRip is India's verified collectibles marketplace for Pokémon TCG, Hot Wheels, Beyblade X, anime figures, and more.",
42
- },
38
+ seo: { slug: "faq-what-is-letitrip", metaTitle: "What is LetItRip? India's Collectibles Marketplace", metaDescription: "LetItRip is India's verified collectibles marketplace for trading cards, action figures, diecast vehicles, and more." },
43
39
  isActive: true,
44
40
  createdBy: "user-admin-letitrip",
45
- createdAt: daysAgo(90),
41
+ createdAt: daysAgo(120),
46
42
  updatedAt: daysAgo(5),
47
43
  },
48
44
  {
49
- id: "faq-is-letitrip-safe-to-use",
50
- question: "Is LetItRip safe to buy and sell on?",
51
- answer: html(`<p>LetItRip takes safety seriously, but like any marketplace, buying and selling collectibles carries <strong>inherent risk</strong> — and we want you to be informed before you transact.</p><p><strong>What LetItRip does to protect you:</strong></p><ul><li><strong>Seller verification</strong> — every store is manually reviewed. Sellers must submit ID and business details before going live.</li><li><strong>Escrow payments</strong> your money is held by Razorpay and only released to the seller after you confirm delivery or after 5 days of confirmed delivery without a dispute.</li><li><strong>Dispute mediation</strong> — if something goes wrong, raise a dispute within 5 days of delivery and our team will review and mediate.</li><li><strong>Counterfeit policy</strong> — confirmed counterfeit items result in a full refund and seller suspension.</li></ul><p><strong>What LetItRip cannot guarantee:</strong></p><ul><li>We are a <strong>platform</strong>, not the seller. Each store is an independent business. We do not inspect or hold physical inventory.</li><li>Shipping timelines and return windows are set by each store — they vary and are not guaranteed by LetItRip.</li><li>Graded slabs (PSA, BGS, CGC) are verified by third-party grading companies — we do not re-grade on your behalf.</li></ul><p>Our advice: read each store's About page before buying, check reviews, and use the escrow window to inspect your item before confirming delivery.</p>`),
45
+ id: "faq-is-letitrip-safe",
46
+ question: "Is LetItRip safe to buy from?",
47
+ answer: html(`<p>Yes. All sellers are verified before they can list. Payments go through secure escrowsellers only get paid after you confirm delivery. If something goes wrong, our support team mediates the dispute.</p>`),
52
48
  category: "general",
53
49
  showOnHomepage: true,
54
50
  showInFooter: false,
55
- isPinned: true,
51
+ isPinned: false,
56
52
  order: 2,
57
- priority: 10,
58
- tags: ["safety", "trust", "risk", "platform", "escrow"],
59
- relatedFAQs: ["faq-what-is-letitrip", "faq-does-letitrip-guarantee-returns", "faq-how-does-escrow-work"],
60
- useSiteSettings: true,
61
- variables: {},
62
- stats: makeStats(6100, 290),
63
- seo: {
64
- slug: "faq-is-letitrip-safe-to-use",
65
- metaTitle: "Is LetItRip Safe? Buyer & Seller Protection Explained",
66
- metaDescription: "LetItRip verifies sellers, holds payments in escrow, and mediates disputes — but we're a platform, not the seller. Learn what's covered.",
67
- },
53
+ priority: 9,
54
+ tags: ["safety", "escrow", "trust"],
55
+ relatedFAQs: ["faq-what-is-letitrip", "faq-what-is-escrow"],
56
+ stats: makeStats(5400, 270),
57
+ seo: { slug: "faq-is-letitrip-safe", metaTitle: "Is LetItRip Safe?", metaDescription: "Learn about LetItRip's seller verification, payment escrow, and buyer protection." },
68
58
  isActive: true,
69
59
  createdBy: "user-admin-letitrip",
70
- createdAt: daysAgo(90),
71
- updatedAt: daysAgo(4),
60
+ createdAt: daysAgo(120),
61
+ updatedAt: daysAgo(10),
72
62
  },
73
63
  {
74
64
  id: "faq-how-does-letitrip-work",
75
- question: "How does LetItRip work?",
76
- answer: html(`<p>LetItRip works like a curated collectibles bazaar — sellers set up stores, list their items, and buyers browse and purchase with escrow-backed payments.</p><ol><li><strong>Browse</strong> — search by category (Pokémon, Hot Wheels, Beyblade X, etc.), filter by condition, price, and seller rating.</li><li><strong>Buy securely</strong> — checkout with UPI, card, or COD. Payment goes into escrow — not to the seller yet.</li><li><strong>Seller dispatches</strong> — the seller ships within their stated timeline (check their About page).</li><li><strong>Confirm receipt</strong> — once your item arrives, inspect it, then click "Confirm Delivery". Payment is released to the seller.</li><li><strong>Dispute window</strong> — if anything is wrong, raise a dispute within 5 days of delivery. Do not confirm delivery if you haven't inspected the item.</li></ol><p>For auctions and pre-orders, the flow has extra steps see the auction and pre-order FAQ sections for details.</p>`),
65
+ question: "How does buying on LetItRip work?",
66
+ answer: html(`<p>Browse verified stores, add items to your cart, and checkout with Razorpay (UPI, cards, net banking). Your payment is held in escrow until you confirm delivery. Sellers ship directly to you — check each store's shipping policy for timelines.</p>`),
77
67
  category: "general",
78
- showOnHomepage: false,
79
- showInFooter: false,
68
+ showOnHomepage: true,
69
+ showInFooter: true,
80
70
  isPinned: false,
81
71
  order: 3,
82
72
  priority: 8,
83
- tags: ["how-to", "buying", "process"],
84
- relatedFAQs: ["faq-what-is-letitrip", "faq-is-letitrip-safe-to-use"],
85
- useSiteSettings: true,
86
- variables: {},
87
- stats: makeStats(4200, 195),
88
- seo: { slug: "faq-how-does-letitrip-work" },
73
+ tags: ["buying", "checkout", "how-it-works"],
74
+ relatedFAQs: ["faq-what-is-escrow", "faq-payment-methods"],
75
+ stats: makeStats(4100, 205),
76
+ seo: { slug: "faq-how-does-letitrip-work", metaTitle: "How Does LetItRip Work?", metaDescription: "Step-by-step guide to buying collectibles on LetItRip." },
89
77
  isActive: true,
90
78
  createdBy: "user-admin-letitrip",
91
- createdAt: daysAgo(90),
92
- updatedAt: daysAgo(6),
79
+ createdAt: daysAgo(110),
80
+ updatedAt: daysAgo(8),
93
81
  },
94
82
  {
95
- id: "faq-what-collectibles-can-i-buy",
96
- question: "What types of collectibles can I buy on LetItRip?",
97
- answer: html(`<p>LetItRip covers six major collectibles categories:</p><ul><li><strong>Trading Cards</strong> Pokémon TCG (sealed boxes, ETBs, raw singles, graded slabs), Yu-Gi-Oh!, Dragon Ball Super Card Game, One Piece</li><li><strong>Diecast Vehicles</strong> Hot Wheels (mainline, Car Culture, premium, RLC), Tomica, Matchbox, Majorette</li><li><strong>Spinning Tops</strong> — Beyblade X (official Takara Tomy imports), Beyblade Burst, Metal Fight</li><li><strong>Action Figures</strong> — Nendoroids, figma, S.H.Figuarts, Funko Pop, NECA, McFarlane</li><li><strong>Model Kits</strong> — Gunpla (HG, MG, RG, PG, SD), Kotobukiya, Hasegawa</li><li><strong>Vintage & Rare</strong> — WOTC-era Pokémon, original Base Set, vintage Hot Wheels Redlines, vintage action figures</li></ul><p>New categories are added based on community demand. If you collect something not listed here, email us at <strong>support@letitrip.in</strong> — we're always expanding.</p>`),
83
+ id: "faq-how-to-sell-on-letitrip",
84
+ question: "How do I become a seller on LetItRip?",
85
+ answer: html(`<p>Go to your Account Become a Seller. Fill in your store details, upload verification documents, and submit for review. Our team typically approves sellers within 48 hours. Once approved, you can start listing immediately.</p>`),
98
86
  category: "general",
99
87
  showOnHomepage: false,
100
- showInFooter: false,
88
+ showInFooter: true,
101
89
  isPinned: false,
102
90
  order: 4,
103
91
  priority: 7,
104
- tags: ["categories", "pokemon", "hot-wheels", "beyblade", "gunpla", "anime"],
105
- relatedFAQs: ["faq-what-is-letitrip"],
106
- useSiteSettings: true,
107
- variables: {},
108
- stats: makeStats(3100, 142),
109
- seo: { slug: "faq-what-collectibles-can-i-buy" },
92
+ tags: ["seller", "registration", "store"],
93
+ relatedFAQs: ["faq-seller-fees", "faq-seller-payout-schedule"],
94
+ stats: makeStats(3200, 160),
95
+ seo: { slug: "faq-how-to-sell-on-letitrip", metaTitle: "How to Sell on LetItRip", metaDescription: "Become a verified seller on India's largest collectibles marketplace." },
110
96
  isActive: true,
111
97
  createdBy: "user-admin-letitrip",
112
- createdAt: daysAgo(88),
113
- updatedAt: daysAgo(7),
98
+ createdAt: daysAgo(100),
99
+ updatedAt: daysAgo(15),
114
100
  },
115
101
  {
116
- id: "faq-how-does-bidding-work",
117
- question: "How does bidding work on LetItRip auctions?",
118
- answer: html(`<p>LetItRip auctions use a <strong>timed open-bid system</strong>:</p><ol><li>Each auction has a starting bid, optional reserve price, and a closing time.</li><li>Click "Place Bid" and enter an amount at least ₹50 (or the stated minimum increment) above the current bid.</li><li>If you are outbid, you receive an instant notification via app, email, and WhatsApp.</li><li>The highest bidder at closing time wins.</li><li>An <strong>auto-extend rule</strong> applies: if a bid is placed in the final 5 minutes, the auction extends by 5 more minutes. This prevents last-second sniping.</li></ol><p><strong>Reserve price:</strong> if set, the auction only closes as a confirmed sale if the reserve is met. If not, the seller may contact the highest bidder to negotiate directly.</p><p><strong>Important:</strong> All bids are binding. You cannot retract a bid once placed — see the bid retraction FAQ for the only exception.</p>`),
102
+ id: "faq-what-categories-available",
103
+ question: "What types of collectibles can I find on LetItRip?",
104
+ answer: html(`<p>LetItRip covers six major categories: <strong>Trading Cards</strong> (Pokémon, Yu-Gi-Oh!, One Piece, Dragon Ball), <strong>Action Figures</strong> (Bandai, McFarlane, Good Smile, NECA, Funko Pop), <strong>Diecast Vehicles</strong> (Hot Wheels, Tomica, Matchbox), <strong>Spinning Tops</strong> (Beyblade X, Burst, Metal Saga), <strong>Model Kits</strong> (Gundam, Zoids, Evangelion), and <strong>Vintage & Rare</strong> collectibles. Each category has subcategories for easy browsing.</p>`),
119
105
  category: "general",
120
- showOnHomepage: true,
106
+ showOnHomepage: false,
121
107
  showInFooter: false,
122
- isPinned: true,
108
+ isPinned: false,
123
109
  order: 5,
124
- priority: 10,
125
- tags: ["auction", "bidding", "how-to"],
126
- relatedFAQs: ["faq-what-happens-when-i-win-an-auction", "faq-can-i-retract-a-bid"],
127
- useSiteSettings: true,
128
- variables: {},
129
- stats: makeStats(6200, 310),
130
- seo: {
131
- slug: "faq-how-does-bidding-work",
132
- metaTitle: "How Do Auctions Work on LetItRip?",
133
- metaDescription: "LetItRip uses a timed open-bid system with auto-extend. Learn how to bid on rare collectibles.",
134
- },
110
+ priority: 6,
111
+ tags: ["categories", "products", "collectibles"],
112
+ relatedFAQs: ["faq-what-is-letitrip"],
113
+ stats: makeStats(2800, 140),
114
+ seo: { slug: "faq-what-categories-available", metaTitle: "What Collectibles Are on LetItRip?", metaDescription: "Browse trading cards, action figures, diecast, Beyblades, model kits, and vintage collectibles." },
135
115
  isActive: true,
136
116
  createdBy: "user-admin-letitrip",
137
- createdAt: daysAgo(90),
138
- updatedAt: daysAgo(3),
117
+ createdAt: daysAgo(95),
118
+ updatedAt: daysAgo(20),
139
119
  },
140
120
  {
141
- id: "faq-what-happens-when-i-win-an-auction",
142
- question: "What happens when I win an auction?",
143
- answer: html(`<p>When you win an auction you receive an instant notification and email with the final amount. Next steps:</p><ol><li>You have <strong>24 hours</strong> to complete payment. The order appears in My Account → Orders with status "Pending Payment".</li><li>After payment, the seller dispatches within their stated timeline (check their store About page — each seller sets their own dispatch window).</li><li>If you do not pay within 24 hours, the win may be offered to the next-highest bidder and your account receives a non-payment strike. Three strikes result in a 30-day auction ban.</li></ol><p><strong>High-value auctions</strong> (above ₹50,000) require a refundable ₹5,000 deposit at time of bidding. This is deducted from the final amount at checkout.</p>`),
121
+ id: "faq-make-an-offer",
122
+ question: "Can I negotiate the price with a seller?",
123
+ answer: html(`<p>Yes! Most listings have a "Make an Offer" button. Submit your offer and the seller can accept, counter, or decline. If accepted, the item is locked at the agreed price for 24 hours so you can complete checkout.</p>`),
144
124
  category: "general",
145
125
  showOnHomepage: false,
146
126
  showInFooter: false,
147
127
  isPinned: false,
148
128
  order: 6,
149
- priority: 8,
150
- tags: ["auction", "winning", "payment"],
151
- relatedFAQs: ["faq-how-does-bidding-work"],
152
- useSiteSettings: true,
153
- variables: {},
154
- stats: makeStats(3800, 172),
155
- seo: { slug: "faq-what-happens-when-i-win-an-auction" },
129
+ priority: 6,
130
+ tags: ["offer", "negotiation", "price"],
131
+ relatedFAQs: ["faq-how-does-letitrip-work"],
132
+ stats: makeStats(2500, 125),
133
+ seo: { slug: "faq-make-an-offer", metaTitle: "Make an Offer on LetItRip", metaDescription: "Negotiate prices with sellers on India's collectibles marketplace." },
156
134
  isActive: true,
157
135
  createdBy: "user-admin-letitrip",
158
- createdAt: daysAgo(90),
159
- updatedAt: daysAgo(4),
136
+ createdAt: daysAgo(88),
137
+ updatedAt: daysAgo(14),
160
138
  },
161
139
  {
162
- id: "faq-can-i-retract-a-bid",
163
- question: "Can I retract a bid once placed?",
164
- answer: html(`<p><strong>Bid retraction is not allowed</strong> on LetItRip. All bids are binding commitments. This protects sellers from price manipulation.</p><p><strong>Exception:</strong> if a seller materially edits the item description or images after you have already bid (for example, adding undisclosed damage), contact LetItRip support with the edit timestamp and evidence. We can void your bid within 1 hour of the edit. Sellers who make material post-bid edits face penalties.</p>`),
140
+ id: "faq-what-is-escrow",
141
+ question: "What is escrow and how does it protect me?",
142
+ answer: html(`<p>Escrow means your payment is held by LetItRip not sent directly to the seller. The seller ships the item, you receive it, and only when you confirm delivery (or 7 days pass without a dispute) does the seller get paid. This protects both buyers and sellers from fraud.</p>`),
165
143
  category: "general",
166
- showOnHomepage: false,
144
+ showOnHomepage: true,
167
145
  showInFooter: false,
168
146
  isPinned: false,
169
147
  order: 7,
170
- priority: 6,
171
- tags: ["auction", "bid", "retract"],
172
- relatedFAQs: ["faq-how-does-bidding-work"],
173
- useSiteSettings: true,
174
- variables: {},
175
- stats: makeStats(1900, 82),
176
- seo: { slug: "faq-can-i-retract-a-bid" },
148
+ priority: 9,
149
+ tags: ["escrow", "trust", "buyer-protection"],
150
+ relatedFAQs: ["faq-is-letitrip-safe", "faq-payment-methods"],
151
+ stats: makeStats(4300, 215),
152
+ seo: { slug: "faq-what-is-escrow", metaTitle: "How Escrow Works on LetItRip", metaDescription: "Understand how escrow protects your collectibles purchases." },
177
153
  isActive: true,
178
154
  createdBy: "user-admin-letitrip",
179
- createdAt: daysAgo(88),
180
- updatedAt: daysAgo(6),
155
+ createdAt: daysAgo(108),
156
+ updatedAt: daysAgo(8),
181
157
  },
182
158
  {
183
- id: "faq-what-is-a-reserve-price",
184
- question: "What is a reserve price in an auction?",
185
- answer: html(`<p>A <strong>reserve price</strong> is the minimum amount a seller is willing to accept. It is kept secret from bidders the listing shows "Reserve not met" or "Reserve met" as bids come in.</p><p>If the final bid does not meet the reserve, the seller is not obligated to sell. They may contact the highest bidder through LetItRip messaging to negotiate a private sale. Sellers use reserve prices mainly on high-value items such as PSA 9/10 slabs or rare vintage collectibles.</p>`),
159
+ id: "faq-wishlists-and-alerts",
160
+ question: "Can I save items and get notified about price drops?",
161
+ answer: html(`<p>Yes! Add any listing to your Wishlist (up to 20 items). You'll receive notifications when a wishlisted item drops in price, gets relisted, or when similar items appear. Your recently viewed items are also saved in your browsing history (up to 50).</p>`),
186
162
  category: "general",
187
163
  showOnHomepage: false,
188
164
  showInFooter: false,
189
165
  isPinned: false,
190
166
  order: 8,
191
167
  priority: 5,
192
- tags: ["auction", "reserve", "price"],
193
- relatedFAQs: ["faq-how-does-bidding-work"],
194
- useSiteSettings: true,
195
- variables: {},
196
- stats: makeStats(1400, 61),
197
- seo: { slug: "faq-what-is-a-reserve-price" },
168
+ tags: ["wishlist", "alerts", "price-drop", "history"],
169
+ relatedFAQs: ["faq-how-does-letitrip-work"],
170
+ stats: makeStats(1800, 90),
171
+ seo: { slug: "faq-wishlists-and-alerts", metaTitle: "Wishlists & Price Alerts", metaDescription: "Save items and get price drop alerts on LetItRip." },
198
172
  isActive: true,
199
173
  createdBy: "user-admin-letitrip",
200
- createdAt: daysAgo(85),
201
- updatedAt: daysAgo(7),
174
+ createdAt: daysAgo(60),
175
+ updatedAt: daysAgo(8),
202
176
  },
203
177
  {
204
- id: "faq-how-do-i-report-a-fake-item",
205
- question: "How do I report a fake or counterfeit item?",
206
- answer: html(`<p>If you receive an item you believe is counterfeit, act immediately:</p><ol><li><strong>Do not confirm delivery</strong> — this keeps your escrow window open.</li><li>Go to My Account → Orders → "Report Issue" and select "Counterfeit / Not as described".</li><li>Upload clear photographs of the item, packaging, and any authentication markings alongside genuine reference images if possible.</li><li>LetItRip will place the payment on hold and open an investigation within 24 hours.</li></ol><p>If confirmed counterfeit, you receive a <strong>full refund</strong> and the seller's store is suspended pending review. We have a zero-tolerance policy for fakes.</p><p>You can also report a suspicious listing before purchasing — use the "Report Listing" flag on any product page. Our team reviews flagged listings within 12 hours.</p>`),
178
+ id: "faq-bundles-and-deals",
179
+ question: "What are bundles and how do they save me money?",
180
+ answer: html(`<p>Bundles are curated sets of related collectibles sold at a discount. For example, a complete Beyblade starter set or a sealed Pokémon booster box + sleeves + playmat combo. Sellers create bundles to offer savings on grouped items look for the savings badge on each bundle listing.</p>`),
207
181
  category: "general",
208
182
  showOnHomepage: false,
209
183
  showInFooter: false,
210
184
  isPinned: false,
211
185
  order: 9,
212
- priority: 8,
213
- tags: ["fake", "counterfeit", "report", "authenticity"],
214
- relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-to-spot-fake-pokemon-cards-authentication"],
215
- useSiteSettings: true,
216
- variables: {},
217
- stats: makeStats(2800, 198),
218
- seo: { slug: "faq-how-do-i-report-a-fake-item" },
186
+ priority: 5,
187
+ tags: ["bundles", "deals", "savings"],
188
+ relatedFAQs: ["faq-what-categories-available"],
189
+ stats: makeStats(1400, 70),
190
+ seo: { slug: "faq-bundles-and-deals", metaTitle: "Bundles & Deals on LetItRip", metaDescription: "Save money on curated collectible bundles on LetItRip." },
219
191
  isActive: true,
220
192
  createdBy: "user-admin-letitrip",
221
- createdAt: daysAgo(87),
193
+ createdAt: daysAgo(30),
222
194
  updatedAt: daysAgo(5),
223
195
  },
224
196
  {
225
- id: "faq-how-do-i-contact-support",
226
- question: "How do I contact LetItRip support?",
227
- answer: html(`<p>You can reach LetItRip support through the following channels:</p><ul><li><strong>Email</strong>: support@letitrip.in we respond within 24 hours (48 hours on weekends)</li><li><strong>Order disputes</strong>: My Account Orders "Report Issue" fastest route for transaction problems as it attaches order context automatically</li><li><strong>WhatsApp community</strong>: join our collectors group for community help and informal guidance</li></ul><p>For <strong>urgent issues</strong> (payment held, suspected fraud, counterfeit item), use the in-order dispute form it escalates to our priority queue and is reviewed within 4 hours during business hours (Mon–Sat, 10am–7pm IST).</p><p>We do not offer phone support at this time. All formal resolutions are handled in writing so there is a clear record.</p>`),
197
+ id: "faq-prize-draws-how-they-work",
198
+ question: "How do prize draws and spin wheels work?",
199
+ answer: html(`<p>LetItRip runs community prize draws tied to events. Enter eligible events for a chance to win rare collectibles. Some events feature a spin wheelspin for instant prizes like discount coupons or free shipping. Winners are selected using cryptographically random selection. Check the Events page for active draws.</p>`),
228
200
  category: "general",
229
201
  showOnHomepage: false,
230
- showInFooter: true,
202
+ showInFooter: false,
231
203
  isPinned: false,
232
204
  order: 10,
233
- priority: 7,
234
- tags: ["support", "contact", "help"],
235
- relatedFAQs: ["faq-how-to-raise-a-dispute"],
236
- useSiteSettings: true,
237
- variables: {},
238
- stats: makeStats(3400, 156),
239
- seo: { slug: "faq-how-do-i-contact-support" },
205
+ priority: 5,
206
+ tags: ["prize-draw", "spin-wheel", "events", "raffle"],
207
+ relatedFAQs: ["faq-community-events"],
208
+ stats: makeStats(1100, 55),
209
+ seo: { slug: "faq-prize-draws-how-they-work", metaTitle: "Prize Draws & Spin Wheels", metaDescription: "Enter prize draws and spin wheels to win rare collectibles on LetItRip." },
240
210
  isActive: true,
241
211
  createdBy: "user-admin-letitrip",
242
- createdAt: daysAgo(86),
243
- updatedAt: daysAgo(4),
212
+ createdAt: daysAgo(20),
213
+ updatedAt: daysAgo(3),
244
214
  },
245
- // ══════════════════════════════════════════════════════════════════════════
246
- // SHIPPING & DELIVERY (7 FAQs)
247
- // ══════════════════════════════════════════════════════════════════════════
215
+ // ── SHIPPING & DELIVERY (7) ────────────────────────────────────────────────
248
216
  {
249
217
  id: "faq-how-long-does-shipping-take",
250
218
  question: "How long does shipping take?",
251
- answer: html(`<p><strong>Important: shipping timelines are set by each individual store on LetItRip, not by the platform.</strong> Before buying, visit the store's About page (click the store name on any listing) to read their specific dispatch and delivery commitments.</p><p>As a general guide, most verified stores on LetItRip ship as follows:</p><ul><li><strong>Metro cities</strong> (Mumbai, Delhi, Bengaluru, Hyderabad, Pune, Chennai): 24 business days</li><li><strong>Tier-2 cities and standard pin codes</strong>: 3–7 business days</li><li><strong>Remote pin codes</strong>: 7–14 business days</li></ul><p>These are typical ranges only — your seller's stated policy takes precedence. Sellers must dispatch within their stated window after payment is confirmed; you receive a tracking link via email and WhatsApp once dispatched. If your order hasn't moved within the seller's stated dispatch window, raise an issue through My Account → Orders.</p>`),
219
+ answer: html(`<p>Shipping timelines depend on the seller's location and chosen courier. Most sellers ship within 13 business days. Domestic delivery typically takes 3–7 business days. Check each store's shipping policy for specifics.</p>`),
252
220
  category: "shipping_delivery",
253
221
  showOnHomepage: true,
254
- showInFooter: true,
255
- isPinned: true,
256
- order: 1,
257
- priority: 10,
258
- tags: ["shipping", "delivery", "timeline"],
259
- relatedFAQs: ["faq-how-do-i-find-store-shipping-policy", "faq-how-to-track-my-order"],
260
- useSiteSettings: true,
261
- variables: {},
262
- stats: makeStats(3200, 148),
263
- seo: {
264
- slug: "faq-how-long-does-shipping-take",
265
- metaTitle: "How Long Does Shipping Take on LetItRip?",
266
- metaDescription: "Shipping timelines on LetItRip are set by each store. Check the store's About page for exact timelines.",
267
- },
268
- isActive: true,
269
- createdBy: "user-admin-letitrip",
270
- createdAt: daysAgo(90),
271
- updatedAt: daysAgo(5),
272
- },
273
- {
274
- id: "faq-how-do-i-find-store-shipping-policy",
275
- question: "Where can I find a store's shipping policy?",
276
- answer: html(`<p>Every store on LetItRip sets its own shipping rules — dispatch windows, carriers used, packaging standards, and whether they offer express options. To find a specific store's policy:</p><ol><li>Open any listing from that store and click the <strong>store name</strong> near the seller details.</li><li>On the store page, click the <strong>About</strong> tab.</li><li>Scroll to the Shipping & Dispatch section.</li></ol><p>Alternatively, the store's policy is shown on the checkout page under "Shipping" before you confirm payment.</p><p><strong>LetItRip strongly recommends reading a store's shipping policy before purchasing</strong>, especially for high-value items or time-sensitive orders (e.g., gifts, tournament deadlines). Stores are independent businesses and their policies vary.</p>`),
277
- category: "shipping_delivery",
278
- showOnHomepage: false,
279
222
  showInFooter: false,
280
223
  isPinned: false,
281
- order: 2,
224
+ order: 11,
282
225
  priority: 9,
283
- tags: ["shipping", "store-policy", "about-page"],
284
- relatedFAQs: ["faq-how-long-does-shipping-take", "faq-does-letitrip-guarantee-returns"],
285
- useSiteSettings: true,
286
- variables: {},
287
- stats: makeStats(1800, 96),
288
- seo: { slug: "faq-how-do-i-find-store-shipping-policy" },
226
+ tags: ["shipping", "delivery", "timeline"],
227
+ relatedFAQs: ["faq-track-my-order", "faq-how-are-cards-packaged"],
228
+ stats: makeStats(6100, 305),
229
+ seo: { slug: "faq-how-long-does-shipping-take", metaTitle: "Shipping Times on LetItRip", metaDescription: "Typical shipping timelines for collectibles orders on LetItRip." },
289
230
  isActive: true,
290
231
  createdBy: "user-admin-letitrip",
291
- createdAt: daysAgo(85),
292
- updatedAt: daysAgo(4),
232
+ createdAt: daysAgo(115),
233
+ updatedAt: daysAgo(7),
293
234
  },
294
235
  {
295
- id: "faq-do-you-offer-free-shipping",
296
- question: "Do you offer free shipping?",
297
- answer: html(`<p>Free shipping availability depends on the <strong>individual store</strong> — LetItRip does not set a platform-wide free shipping threshold. Each seller decides their own shipping charges and free-shipping conditions.</p><p>Many stores on LetItRip offer free standard shipping on orders above a certain value (commonly ₹499–₹999). Look for the <strong>"Free Shipping"</strong> badge on product listings, or check the store's About page for their shipping rates.</p><p>At checkout, shipping costs are shown before you confirm payment so there are no surprises.</p>`),
236
+ id: "faq-how-are-cards-packaged",
237
+ question: "How are collectibles packaged for shipping?",
238
+ answer: html(`<p>All verified sellers follow category-specific packaging standards: <strong>Trading cards</strong> — penny sleeves + top-loaders, rigid mailers. <strong>Action figures</strong> bubble wrap, double-boxed for mint-in-box items. <strong>Diecast/Beyblade</strong> foam inserts, padded boxes. <strong>Graded slabs</strong> padded fitted boxes. If an item arrives damaged due to poor packaging, open a dispute and our team will mediate.</p>`),
298
239
  category: "shipping_delivery",
299
240
  showOnHomepage: false,
300
241
  showInFooter: false,
301
242
  isPinned: false,
302
- order: 3,
243
+ order: 12,
303
244
  priority: 7,
304
- tags: ["shipping", "free-shipping"],
305
- relatedFAQs: ["faq-how-long-does-shipping-take", "faq-how-do-i-find-store-shipping-policy"],
306
- useSiteSettings: true,
307
- variables: {},
308
- stats: makeStats(2100, 94),
309
- seo: { slug: "faq-do-you-offer-free-shipping" },
245
+ tags: ["packaging", "shipping", "protection"],
246
+ relatedFAQs: ["faq-damaged-in-transit"],
247
+ stats: makeStats(3400, 170),
248
+ seo: { slug: "faq-how-are-cards-packaged", metaTitle: "Packaging Standards for Collectibles", metaDescription: "How sellers package collectibles for safe delivery on LetItRip." },
310
249
  isActive: true,
311
250
  createdBy: "user-admin-letitrip",
312
- createdAt: daysAgo(90),
313
- updatedAt: daysAgo(8),
251
+ createdAt: daysAgo(110),
252
+ updatedAt: daysAgo(12),
314
253
  },
315
254
  {
316
- id: "faq-how-to-track-my-order",
317
- question: "How do I track my order?",
318
- answer: html(`<p>Once your order is dispatched you receive a <strong>tracking link</strong> via email and WhatsApp. You can also track directly from your account: go to My Account → Orders and click <strong>"Track"</strong> next to any shipped order.</p><p>LetItRip supports tracking from Shiprocket, India Post, Delhivery, Ekart, and DTDC. If your tracking link does not update within 24 hours of the dispatch notification, message the seller through the order chat — sellers are required to respond within 12 hours. If they do not, raise an issue through My Account → Orders.</p>`),
255
+ id: "faq-free-shipping-available",
256
+ question: "Is free shipping available?",
257
+ answer: html(`<p>Many sellers offer free shipping on orders above a certain amount. Look for the "Free Shipping" badge on product listings. You can also use the FREESHIP999 coupon for free shipping on orders ₹999+.</p>`),
319
258
  category: "shipping_delivery",
320
259
  showOnHomepage: false,
321
260
  showInFooter: false,
322
261
  isPinned: false,
323
- order: 4,
324
- priority: 7,
325
- tags: ["tracking", "order", "shipment"],
326
- relatedFAQs: ["faq-how-long-does-shipping-take"],
327
- useSiteSettings: true,
328
- variables: {},
329
- stats: makeStats(1750, 78),
330
- seo: { slug: "faq-how-to-track-my-order" },
262
+ order: 13,
263
+ priority: 6,
264
+ tags: ["free-shipping", "coupons"],
265
+ relatedFAQs: ["faq-coupons-and-discounts"],
266
+ stats: makeStats(2900, 145),
267
+ seo: { slug: "faq-free-shipping-available", metaTitle: "Free Shipping on LetItRip", metaDescription: "How to get free shipping on your collectibles orders." },
331
268
  isActive: true,
332
269
  createdBy: "user-admin-letitrip",
333
- createdAt: daysAgo(90),
334
- updatedAt: daysAgo(10),
270
+ createdAt: daysAgo(100),
271
+ updatedAt: daysAgo(14),
335
272
  },
336
273
  {
337
- id: "faq-do-you-ship-internationally",
274
+ id: "faq-international-shipping",
338
275
  question: "Do you ship internationally?",
339
- answer: html(`<p>LetItRip currently serves delivery addresses within <strong>India only</strong>. International shipping is on our roadmap.</p><p>If you are an NRI wanting to send a gift to an Indian address, that works fine enter the Indian delivery address at checkout. For international inquiries or high-value cross-border auction arrangements, email <strong>support@letitrip.in</strong> — we handle these on a case-by-case basis.</p>`),
276
+ answer: html(`<p>LetItRip currently operates within India only. International shipping is not supported at this time. We're working on expanding to more countriesstay tuned!</p>`),
340
277
  category: "shipping_delivery",
341
278
  showOnHomepage: false,
342
279
  showInFooter: false,
343
280
  isPinned: false,
344
- order: 5,
281
+ order: 14,
345
282
  priority: 5,
346
283
  tags: ["international", "shipping"],
347
284
  relatedFAQs: [],
348
- useSiteSettings: true,
349
- variables: {},
350
- stats: makeStats(980, 41),
351
- seo: { slug: "faq-do-you-ship-internationally" },
285
+ stats: makeStats(1800, 90),
286
+ seo: { slug: "faq-international-shipping", metaTitle: "International Shipping", metaDescription: "LetItRip currently ships within India only." },
352
287
  isActive: true,
353
288
  createdBy: "user-admin-letitrip",
354
289
  createdAt: daysAgo(90),
355
- updatedAt: daysAgo(15),
290
+ updatedAt: daysAgo(30),
356
291
  },
357
292
  {
358
- id: "faq-what-happens-if-item-damaged-in-transit",
359
- question: "What happens if my item is damaged in transit?",
360
- answer: html(`<p>If your item arrives damaged, <strong>photograph everything before unwrapping further</strong> the outer box, inner packaging, and the damage on the item itself. Then:</p><ol><li>Go to My Account → Orders → <strong>"Report Issue"</strong> within 48 hours of delivery.</li><li>Select "Item damaged in transit" and upload your photographs.</li><li>Do <strong>not</strong> confirm delivery until the dispute is resolved — confirming delivery releases payment to the seller.</li></ol><p>LetItRip will mediate between you and the seller. Most verified sellers carry basic transit insurance; items valued above ₹5,000 are automatically insured at declared value through our shipping partners.</p><p><strong>Note:</strong> packaging standards are set by each seller — LetItRip does not pack or handle physical items. Sellers who repeatedly dispatch inadequately packaged items lose their verified status.</p>`),
293
+ id: "faq-track-my-order",
294
+ question: "How do I track my order?",
295
+ answer: html(`<p>Once your seller ships the order, you'll receive a tracking number via email and in-app notification. Go to Account → My Orders → click the order to see real-time tracking. Most sellers use Shiprocket for automated tracking updates.</p>`),
361
296
  category: "shipping_delivery",
362
297
  showOnHomepage: false,
363
298
  showInFooter: false,
364
299
  isPinned: false,
365
- order: 6,
366
- priority: 6,
367
- tags: ["damaged", "transit", "insurance"],
368
- relatedFAQs: ["faq-what-is-the-return-policy", "faq-how-to-raise-a-dispute"],
369
- useSiteSettings: true,
370
- variables: {},
371
- stats: makeStats(1340, 72),
372
- seo: { slug: "faq-what-happens-if-item-damaged-in-transit" },
300
+ order: 15,
301
+ priority: 8,
302
+ tags: ["tracking", "orders", "shiprocket"],
303
+ relatedFAQs: ["faq-how-long-does-shipping-take"],
304
+ stats: makeStats(4500, 225),
305
+ seo: { slug: "faq-track-my-order", metaTitle: "Track Your Order", metaDescription: "How to track your collectibles order on LetItRip." },
373
306
  isActive: true,
374
307
  createdBy: "user-admin-letitrip",
375
- createdAt: daysAgo(85),
376
- updatedAt: daysAgo(8),
308
+ createdAt: daysAgo(105),
309
+ updatedAt: daysAgo(9),
377
310
  },
378
311
  {
379
- id: "faq-can-i-change-delivery-address-after-order",
380
- question: "Can I change my delivery address after placing an order?",
381
- answer: html(`<p>Address changes after checkout depend on the order status:</p><ul><li><strong>Before dispatch ("Confirmed" or "Processing")</strong>: message the seller directly through the order chat and request the change. Most sellers will accommodate this if they haven't packed yet.</li><li><strong>After dispatch ("Shipped")</strong>: the parcel is already in the carrier's network. You will need to contact the carrier (using the tracking number) to request an address redirect — this is carrier-dependent and not guaranteed.</li></ul><p>LetItRip cannot modify a shipping label once created. Always double-check your delivery address at checkout.</p>`),
312
+ id: "faq-shipping-for-large-items",
313
+ question: "How are large items like statues and display cases shipped?",
314
+ answer: html(`<p>Oversized items (large action figures, resin statues, display shelves) are shipped via specialist couriers with additional insurance. Sellers may charge a higher shipping fee for fragile oversized items. Delivery timelines for these may be 5–10 business days depending on location.</p>`),
382
315
  category: "shipping_delivery",
383
316
  showOnHomepage: false,
384
317
  showInFooter: false,
385
318
  isPinned: false,
386
- order: 7,
319
+ order: 16,
387
320
  priority: 5,
388
- tags: ["address", "delivery", "change"],
389
- relatedFAQs: ["faq-can-i-cancel-my-order"],
390
- useSiteSettings: true,
391
- variables: {},
392
- stats: makeStats(890, 38),
393
- seo: { slug: "faq-can-i-change-delivery-address-after-order" },
321
+ tags: ["large-items", "shipping", "statues", "insurance"],
322
+ relatedFAQs: ["faq-how-are-cards-packaged"],
323
+ stats: makeStats(900, 45),
324
+ seo: { slug: "faq-shipping-for-large-items", metaTitle: "Shipping Large Collectibles", metaDescription: "How oversized items like statues and display cases are shipped on LetItRip." },
394
325
  isActive: true,
395
326
  createdBy: "user-admin-letitrip",
396
- createdAt: daysAgo(82),
397
- updatedAt: daysAgo(9),
327
+ createdAt: daysAgo(45),
328
+ updatedAt: daysAgo(10),
398
329
  },
399
- // ══════════════════════════════════════════════════════════════════════════
400
- // RETURNS & REFUNDS (6 FAQs)
401
- // ══════════════════════════════════════════════════════════════════════════
402
330
  {
403
- id: "faq-what-is-the-return-policy",
404
- question: "What is the return policy on LetItRip?",
405
- answer: html(`<p><strong>Return policies on LetItRip are set by individual stores LetItRip does not impose a platform-wide return window.</strong> Before purchasing, always visit the store's About page to read their specific return rules. Return policies vary significantly between sellers and product types.</p><p>Common patterns among verified stores:</p><ul><li><strong>Sealed products</strong> (booster boxes, ETBs, sealed figures): 7-day return if factory seal is intact and item is in original condition.</li><li><strong>Graded slabs</strong>: 3-day return if the slab arrived cracked or the case is damaged (not for grading disagreements).</li><li><strong>Singles and loose items</strong>: 3-day return if the item is materially different from its description or photographs.</li><li><strong>Opened product</strong>: No returns in most cases — contents cannot be re-verified once opened.</li></ul><p>To initiate a return: My Account → Orders → <strong>"Return Item"</strong>. The seller must respond within 3 business days. LetItRip holds payment in escrow and mediates if the seller is unresponsive or disputes the return. Note that LetItRip's ability to force a refund is limited if the item is within the seller's stated non-returnable policy — we strongly encourage checking before you buy.</p>`),
406
- category: "returns_refunds",
407
- showOnHomepage: true,
408
- showInFooter: true,
409
- isPinned: true,
410
- order: 1,
411
- priority: 9,
412
- tags: ["returns", "refunds", "policy"],
413
- relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-how-long-does-refund-take", "faq-what-if-seller-refuses-return"],
414
- useSiteSettings: true,
415
- variables: {},
416
- stats: makeStats(4100, 204),
417
- seo: {
418
- slug: "faq-what-is-the-return-policy",
419
- metaTitle: "Return Policy on LetItRip — What Buyers Should Know",
420
- metaDescription: "Return policies are set by each store on LetItRip, not the platform. Read the store's About page before buying.",
421
- },
331
+ id: "faq-shiprocket-auto-tracking",
332
+ question: "What is Shiprocket and how does auto-tracking work?",
333
+ answer: html(`<p>Shiprocket is our integrated courier partner. When a seller marks your order as shipped with Shiprocket, tracking is automatically created you'll get real-time SMS and email updates at every milestone (picked up, in transit, out for delivery, delivered). No manual tracking number entry needed.</p>`),
334
+ category: "shipping_delivery",
335
+ showOnHomepage: false,
336
+ showInFooter: false,
337
+ isPinned: false,
338
+ order: 17,
339
+ priority: 6,
340
+ tags: ["shiprocket", "tracking", "automation"],
341
+ relatedFAQs: ["faq-track-my-order"],
342
+ stats: makeStats(1500, 75),
343
+ seo: { slug: "faq-shiprocket-auto-tracking", metaTitle: "Shiprocket Auto-Tracking", metaDescription: "How Shiprocket auto-tracking works for your LetItRip orders." },
422
344
  isActive: true,
423
345
  createdBy: "user-admin-letitrip",
424
- createdAt: daysAgo(90),
425
- updatedAt: daysAgo(4),
346
+ createdAt: daysAgo(40),
347
+ updatedAt: daysAgo(8),
426
348
  },
349
+ // ── RETURNS & REFUNDS (7) ─────────────────────────────────────────────────
427
350
  {
428
- id: "faq-does-letitrip-guarantee-returns",
429
- question: "Does LetItRip guarantee refunds or returns?",
430
- answer: html(`<p><strong>LetItRip is a marketplace platform we are not the seller and cannot guarantee a refund in every situation.</strong> Here is an honest breakdown of what we can and cannot do:</p><p><strong>What LetItRip will do:</strong></p><ul><li>Hold your payment in escrow and only release it after you confirm delivery or after 5 days of confirmed delivery without a dispute.</li><li>Mediate disputes between you and the seller — our team reviews evidence and makes a recommendation.</li><li>Issue a full refund if an item is confirmed counterfeit, or if the seller does not respond within the required window.</li><li>Apply platform penalties (including suspension) to sellers who repeatedly fail buyers.</li></ul><p><strong>What LetItRip cannot guarantee:</strong></p><ul><li>A refund if the item matches the seller's listing description but you changed your mind (buyer's remorse).</li><li>A return if the seller's stated policy does not cover your situation and there is no material listing error.</li><li>Recovery of funds after you have confirmed delivery — confirming delivery releases escrow and closes the dispute window.</li></ul><p>Our best advice: read the store's return policy before buying, inspect every item before confirming delivery, and raise disputes promptly (within 5 days of delivery).</p>`),
351
+ id: "faq-return-policy",
352
+ question: "What is LetItRip's return policy?",
353
+ answer: html(`<p>Each store sets its own return policy. Most stores accept returns within 7 days for items not as described. Graded cards (PSA/BGS/CGC) and sealed products are typically final sale. Always check the store's return policy before purchasing. If a seller doesn't honor their policy, open a support ticket and we'll mediate.</p>`),
431
354
  category: "returns_refunds",
432
- showOnHomepage: false,
433
- showInFooter: false,
355
+ showOnHomepage: true,
356
+ showInFooter: true,
434
357
  isPinned: false,
435
- order: 2,
358
+ order: 18,
436
359
  priority: 9,
437
- tags: ["returns", "guarantee", "platform", "risk", "escrow"],
438
- relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-what-is-the-return-policy", "faq-how-to-raise-a-dispute"],
439
- useSiteSettings: true,
440
- variables: {},
441
- stats: makeStats(2900, 164),
442
- seo: { slug: "faq-does-letitrip-guarantee-returns" },
360
+ tags: ["returns", "refunds", "policy"],
361
+ relatedFAQs: ["faq-how-to-request-refund", "faq-counterfeit-guarantee"],
362
+ stats: makeStats(5800, 290),
363
+ seo: { slug: "faq-return-policy", metaTitle: "Return Policy on LetItRip", metaDescription: "Understand return policies for collectibles purchases on LetItRip." },
443
364
  isActive: true,
444
365
  createdBy: "user-admin-letitrip",
445
- createdAt: daysAgo(88),
446
- updatedAt: daysAgo(3),
366
+ createdAt: daysAgo(115),
367
+ updatedAt: daysAgo(6),
447
368
  },
448
369
  {
449
- id: "faq-what-if-seller-refuses-return",
450
- question: "What if the seller refuses my return request?",
451
- answer: html(`<p>If a seller declines your return and you believe the refusal is unjustified, escalate to LetItRip:</p><ol><li>Go to My Account → Orders → <strong>"Escalate to LetItRip"</strong> (appears after seller declines).</li><li>Provide your evidence — photographs, the original listing description, and chat history with the seller.</li><li>LetItRip's team reviews within 48 hours and issues a binding decision.</li></ol><p><strong>Outcomes LetItRip can enforce:</strong></p><ul><li>Full or partial refund if the item does not match its description or is counterfeit.</li><li>Return at seller's cost if we determine the seller is at fault.</li></ul><p><strong>Outcomes outside LetItRip's control:</strong></p><ul><li>If the item accurately matches the listing and the seller's stated return policy does not cover your situation, we cannot override the seller's policy. This is why reading store policies before buying is so important.</li></ul><p>LetItRip will always try to find a fair resolution, but we are a platform — not an insurer.</p>`),
370
+ id: "faq-how-to-request-refund",
371
+ question: "How do I request a refund?",
372
+ answer: html(`<p>Go to Account → My Orders → select the order Request Refund. Describe the issue and upload photos if the item is damaged or not as described. The seller has 48 hours to respond. If they don't, LetItRip support will step in.</p>`),
452
373
  category: "returns_refunds",
453
374
  showOnHomepage: false,
454
375
  showInFooter: false,
455
376
  isPinned: false,
456
- order: 3,
377
+ order: 19,
457
378
  priority: 8,
458
- tags: ["returns", "dispute", "seller-refusal"],
459
- relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-how-to-raise-a-dispute"],
460
- useSiteSettings: true,
461
- variables: {},
462
- stats: makeStats(2100, 118),
463
- seo: { slug: "faq-what-if-seller-refuses-return" },
379
+ tags: ["refund", "dispute", "support"],
380
+ relatedFAQs: ["faq-return-policy", "faq-refund-timeline"],
381
+ stats: makeStats(3700, 185),
382
+ seo: { slug: "faq-how-to-request-refund", metaTitle: "Request a Refund", metaDescription: "How to request a refund for your LetItRip order." },
464
383
  isActive: true,
465
384
  createdBy: "user-admin-letitrip",
466
- createdAt: daysAgo(86),
467
- updatedAt: daysAgo(5),
385
+ createdAt: daysAgo(100),
386
+ updatedAt: daysAgo(11),
468
387
  },
469
388
  {
470
- id: "faq-how-long-does-refund-take",
471
- question: "How long does a refund take?",
472
- answer: html(`<p>Once a return is approved and the item (where applicable) is received back by the seller, refunds are processed within:</p><ul><li><strong>UPI and bank transfer</strong>: 2–3 business days</li><li><strong>Razorpay (card/net banking/wallet)</strong>: 5–7 business days (subject to your bank's processing time)</li><li><strong>COD orders</strong>: refunded as LetItRip wallet credit, or by bank transfer (takes 3–5 days and requires bank details verification)</li></ul><p>If a refund is not received within 10 business days of approval, contact <strong>support@letitrip.in</strong> with your order ID — we escalate within 24 hours.</p>`),
389
+ id: "faq-card-not-as-described",
390
+ question: "What if the item I received doesn't match the listing?",
391
+ answer: html(`<p>If the condition, edition, brand, or any detail doesn't match what was listed, you're eligible for a full refund. Take clear photos of the item next to the listing screenshots, then open a dispute through Account My Orders. Our team reviews disputes within 24 hours.</p>`),
473
392
  category: "returns_refunds",
474
393
  showOnHomepage: false,
475
394
  showInFooter: false,
476
395
  isPinned: false,
477
- order: 4,
396
+ order: 20,
478
397
  priority: 7,
479
- tags: ["refund", "timeline", "payment"],
480
- relatedFAQs: ["faq-what-is-the-return-policy"],
481
- useSiteSettings: true,
482
- variables: {},
483
- stats: makeStats(2800, 132),
484
- seo: { slug: "faq-how-long-does-refund-take" },
398
+ tags: ["dispute", "condition", "mismatch"],
399
+ relatedFAQs: ["faq-how-to-request-refund"],
400
+ stats: makeStats(2600, 130),
401
+ seo: { slug: "faq-card-not-as-described", metaTitle: "Item Not as Described", metaDescription: "What to do if your collectible doesn't match the listing on LetItRip." },
485
402
  isActive: true,
486
403
  createdBy: "user-admin-letitrip",
487
404
  createdAt: daysAgo(90),
488
- updatedAt: daysAgo(8),
405
+ updatedAt: daysAgo(18),
489
406
  },
490
407
  {
491
- id: "faq-can-i-cancel-my-order",
492
- question: "Can I cancel my order?",
493
- answer: html(`<p>You can cancel an order <strong>before the seller dispatches it</strong>. Once dispatched, cancellation converts to a return request (subject to the seller's return policy).</p><p>To cancel: My Account → Orders → <strong>"Cancel Order"</strong>. A full refund is issued immediately if cancelled pre-dispatch. If the seller has already packed (status "Processing"), they may charge a restocking fee at their discretion — this is shown before you confirm the cancellation.</p><p><strong>Auction wins and pre-order deposits are non-refundable</strong> once the auction has closed or the pre-order window has ended. These are binding commitments — see the relevant FAQ sections for details.</p>`),
408
+ id: "faq-refund-timeline",
409
+ question: "How long do refunds take?",
410
+ answer: html(`<p>Once a refund is approved, it's processed within 3–5 business days. UPI refunds are typically faster (1–2 days). Card and net banking refunds may take up to 7 business days depending on your bank.</p>`),
494
411
  category: "returns_refunds",
495
412
  showOnHomepage: false,
496
413
  showInFooter: false,
497
414
  isPinned: false,
498
- order: 5,
415
+ order: 21,
499
416
  priority: 6,
500
- tags: ["cancel", "order"],
501
- relatedFAQs: ["faq-how-long-does-refund-take"],
502
- useSiteSettings: true,
503
- variables: {},
504
- stats: makeStats(3200, 148),
505
- seo: { slug: "faq-can-i-cancel-my-order" },
417
+ tags: ["refund", "timeline", "processing"],
418
+ relatedFAQs: ["faq-how-to-request-refund"],
419
+ stats: makeStats(2100, 105),
420
+ seo: { slug: "faq-refund-timeline", metaTitle: "Refund Processing Time", metaDescription: "How long refunds take on LetItRip." },
506
421
  isActive: true,
507
422
  createdBy: "user-admin-letitrip",
508
- createdAt: daysAgo(90),
509
- updatedAt: daysAgo(5),
423
+ createdAt: daysAgo(85),
424
+ updatedAt: daysAgo(22),
510
425
  },
511
426
  {
512
- id: "faq-how-to-raise-a-dispute",
513
- question: "How do I raise a dispute on LetItRip?",
514
- answer: html(`<p>The dispute window is open for <strong>5 days after confirmed delivery</strong>. Do not confirm delivery until you have inspected the item confirming delivery closes the dispute window and releases payment to the seller.</p><p>To raise a dispute:</p><ol><li>Go to My Account → Orders → find the relevant order.</li><li>Click <strong>"Report Issue"</strong>.</li><li>Select the issue type (Not as described / Counterfeit / Damaged / Not received).</li><li>Upload supporting evidence (photos, screenshots of the original listing).</li><li>Submit the seller is notified and has 48 hours to respond.</li></ol><p>If the seller does not respond or the dispute is not resolved within 5 business days, click "Escalate to LetItRip" for platform review. We issue a binding decision within 48 hours of escalation.</p>`),
427
+ id: "faq-damaged-in-transit",
428
+ question: "What if my item is damaged during shipping?",
429
+ answer: html(`<p>If an item arrives damaged due to poor packaging or courier handling, take photos immediately before removing the item from the mailer. Open a dispute with the photos attached. Sellers are responsible for packaging quality; LetItRip will mediate if the seller disputes your claim.</p>`),
515
430
  category: "returns_refunds",
516
431
  showOnHomepage: false,
517
432
  showInFooter: false,
518
433
  isPinned: false,
519
- order: 6,
520
- priority: 8,
521
- tags: ["dispute", "report", "issue"],
522
- relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-what-if-seller-refuses-return"],
523
- useSiteSettings: true,
524
- variables: {},
525
- stats: makeStats(2400, 126),
526
- seo: { slug: "faq-how-to-raise-a-dispute" },
434
+ order: 22,
435
+ priority: 7,
436
+ tags: ["damaged", "shipping", "dispute"],
437
+ relatedFAQs: ["faq-how-are-cards-packaged", "faq-how-to-request-refund"],
438
+ stats: makeStats(1900, 95),
439
+ seo: { slug: "faq-damaged-in-transit", metaTitle: "Item Damaged in Transit", metaDescription: "What to do if your collectible arrives damaged." },
527
440
  isActive: true,
528
441
  createdBy: "user-admin-letitrip",
529
- createdAt: daysAgo(85),
530
- updatedAt: daysAgo(4),
442
+ createdAt: daysAgo(80),
443
+ updatedAt: daysAgo(25),
531
444
  },
532
- // ══════════════════════════════════════════════════════════════════════════
533
- // ORDERS & PAYMENT (8 FAQs)
534
- // ══════════════════════════════════════════════════════════════════════════
535
445
  {
536
- id: "faq-what-payment-methods-are-accepted",
537
- question: "What payment methods does LetItRip accept?",
538
- answer: html(`<p>LetItRip accepts all major Indian payment methods via Razorpay:</p><ul><li><strong>UPI</strong> — Google Pay, PhonePe, Paytm, BHIM, any UPI-enabled app</li><li><strong>Debit/Credit Cards</strong> Visa, Mastercard, RuPay, Amex</li><li><strong>Net Banking</strong> all major Indian banks</li><li><strong>EMI</strong> 0% on Bajaj Finserv and select bank cards for orders above ₹3,000</li><li><strong>Cash on Delivery (COD)</strong> — for orders up to ₹10,000 (requires a 20% online deposit at checkout)</li></ul><p>All payments are processed via Razorpay (PCI-DSS Level 1 compliant). LetItRip never stores your card details.</p>`),
539
- category: "orders_payment",
446
+ id: "faq-counterfeit-guarantee",
447
+ question: "What if I receive a counterfeit item?",
448
+ answer: html(`<p>LetItRip has a <strong>zero-tolerance counterfeit policy</strong>. If you receive a counterfeit item, open a dispute with photo evidence. You'll receive a full refund and the seller's account will be reviewed for suspension. For high-value items, we recommend buying graded/certified products which come with third-party authentication.</p>`),
449
+ category: "returns_refunds",
540
450
  showOnHomepage: false,
541
451
  showInFooter: true,
542
- isPinned: true,
543
- order: 1,
544
- priority: 10,
545
- tags: ["payment", "upi", "card", "cod"],
546
- relatedFAQs: ["faq-is-it-safe-to-pay-on-letitrip", "faq-is-cod-available"],
547
- useSiteSettings: true,
548
- variables: {},
549
- stats: makeStats(5100, 248),
550
- seo: { slug: "faq-what-payment-methods-are-accepted" },
452
+ isPinned: false,
453
+ order: 23,
454
+ priority: 9,
455
+ tags: ["counterfeit", "fake", "authenticity", "guarantee"],
456
+ relatedFAQs: ["faq-return-policy", "faq-how-to-verify-authenticity"],
457
+ stats: makeStats(3600, 180),
458
+ seo: { slug: "faq-counterfeit-guarantee", metaTitle: "Counterfeit Protection on LetItRip", metaDescription: "Zero-tolerance counterfeit policy with full refund guarantee." },
551
459
  isActive: true,
552
460
  createdBy: "user-admin-letitrip",
553
- createdAt: daysAgo(90),
554
- updatedAt: daysAgo(5),
461
+ createdAt: daysAgo(100),
462
+ updatedAt: daysAgo(7),
555
463
  },
556
464
  {
557
- id: "faq-how-does-escrow-work",
558
- question: "How does escrow payment work on LetItRip?",
559
- answer: html(`<p>Escrow is the core of LetItRip's buyer protection. Here is exactly how it works:</p><ol><li><strong>You pay at checkout</strong> funds go to Razorpay's secure escrow. The seller does not receive them yet.</li><li><strong>Seller dispatches</strong> — once you have paid, the seller ships within their stated window.</li><li><strong>You inspect and confirm</strong> — when the item arrives, inspect it carefully. If everything is correct, click "Confirm Delivery" in My Account Orders. This releases the payment to the seller.</li><li><strong>Auto-release</strong> — if you do not take action within 5 days of the courier marking the shipment as delivered, the payment is automatically released to the seller.</li></ol><p><strong>Critical:</strong> Do not click "Confirm Delivery" unless you are satisfied. Once confirmed, the escrow window closes and LetItRip's ability to hold funds is limited. For disputes, act within 5 days of delivery.</p>`),
560
- category: "orders_payment",
465
+ id: "faq-partial-refund",
466
+ question: "Can I get a partial refund instead of a full return?",
467
+ answer: html(`<p>Yesif the item is mostly as described but has a minor discrepancy (e.g., slightly different condition grade, missing an accessory), you can negotiate a partial refund with the seller through the dispute system. Both parties must agree to the partial refund amount before it's processed.</p>`),
468
+ category: "returns_refunds",
561
469
  showOnHomepage: false,
562
470
  showInFooter: false,
563
471
  isPinned: false,
564
- order: 2,
565
- priority: 9,
566
- tags: ["escrow", "payment", "protection"],
567
- relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-to-raise-a-dispute"],
568
- useSiteSettings: true,
569
- variables: {},
570
- stats: makeStats(3600, 192),
571
- seo: { slug: "faq-how-does-escrow-work" },
472
+ order: 24,
473
+ priority: 5,
474
+ tags: ["partial-refund", "negotiation", "dispute"],
475
+ relatedFAQs: ["faq-how-to-request-refund"],
476
+ stats: makeStats(800, 40),
477
+ seo: { slug: "faq-partial-refund", metaTitle: "Partial Refunds on LetItRip", metaDescription: "How partial refunds work on LetItRip." },
572
478
  isActive: true,
573
479
  createdBy: "user-admin-letitrip",
574
- createdAt: daysAgo(88),
575
- updatedAt: daysAgo(4),
480
+ createdAt: daysAgo(35),
481
+ updatedAt: daysAgo(10),
576
482
  },
483
+ // ── ORDERS & PAYMENT (7) ──────────────────────────────────────────────────
577
484
  {
578
- id: "faq-is-it-safe-to-pay-on-letitrip",
579
- question: "Is it safe to pay on LetItRip?",
580
- answer: html(`<p>Yes — LetItRip uses an <strong>escrow model</strong> via Razorpay (PCI-DSS Level 1). Your payment is held securely and only released to the seller after you confirm delivery or after 5 days of confirmed delivery without a dispute.</p><p>LetItRip is registered under the Indian IT Act and complies with Consumer Protection (E-Commerce) Rules 2020. Our platform fee (shown transparently at checkout) is the only charge no hidden fees.</p><p>That said, <strong>your vigilance matters too</strong>: inspect every item before confirming delivery, raise disputes within the 5-day window, and never pay outside the LetItRip platform (e.g., UPI to a seller's personal number). LetItRip cannot protect payments made outside our checkout.</p>`),
485
+ id: "faq-payment-methods",
486
+ question: "What payment methods are accepted?",
487
+ answer: html(`<p>LetItRip accepts UPI (GPay, PhonePe, Paytm), credit/debit cards, net banking, and wallets via Razorpay. All payments are processed through secure escrow — the seller only receives funds after you confirm delivery.</p>`),
581
488
  category: "orders_payment",
582
489
  showOnHomepage: false,
583
- showInFooter: false,
490
+ showInFooter: true,
584
491
  isPinned: false,
585
- order: 3,
492
+ order: 25,
586
493
  priority: 8,
587
- tags: ["payment", "security", "escrow", "safe"],
588
- relatedFAQs: ["faq-how-does-escrow-work"],
589
- useSiteSettings: true,
590
- variables: {},
591
- stats: makeStats(2400, 108),
592
- seo: { slug: "faq-is-it-safe-to-pay-on-letitrip" },
494
+ tags: ["payment", "upi", "razorpay", "escrow"],
495
+ relatedFAQs: ["faq-what-is-escrow"],
496
+ stats: makeStats(5100, 255),
497
+ seo: { slug: "faq-payment-methods", metaTitle: "Payment Methods on LetItRip", metaDescription: "UPI, cards, net banking — all payment options on LetItRip." },
593
498
  isActive: true,
594
499
  createdBy: "user-admin-letitrip",
595
- createdAt: daysAgo(90),
500
+ createdAt: daysAgo(110),
596
501
  updatedAt: daysAgo(6),
597
502
  },
598
503
  {
599
- id: "faq-what-are-letitrip-platform-fees",
600
- question: "What are LetItRip's fees for buyers and sellers?",
601
- answer: html(`<p><strong>For buyers:</strong> LetItRip charges no additional fee to buyers. The price you see is the price you pay (plus any shipping set by the seller). Payment processing fees are absorbed by the platform.</p><p><strong>For sellers:</strong> LetItRip charges a commission on successful sales:</p><ul><li><strong>Standard listings</strong>: 5% platform fee + 2.36% Razorpay processing (total ~7.36%)</li><li><strong>Auction listings</strong>: 5% platform fee + 2.36% Razorpay processing on the final hammer price</li><li><strong>Pre-order listings</strong>: 5% platform fee on the total order value at fulfilment</li></ul><p>There are no listing fees — you only pay when you sell. Promoted listings (optional) are charged separately at a flat rate set during promotion setup.</p>`),
504
+ id: "faq-coupons-and-discounts",
505
+ question: "How do I use coupons and discount codes?",
506
+ answer: html(`<p>Enter your coupon code at checkout in the "Apply Coupon" field. Coupons may be platform-wide (from LetItRip) or store-specific (from individual sellers). Some coupons have minimum order requirements, expiry dates, or per-user limits. You cannot stack multiple coupons on a single order unless the coupon explicitly allows it.</p>`),
602
507
  category: "orders_payment",
603
508
  showOnHomepage: false,
604
509
  showInFooter: false,
605
510
  isPinned: false,
606
- order: 4,
511
+ order: 26,
512
+ priority: 6,
513
+ tags: ["coupons", "discount", "promo-code"],
514
+ relatedFAQs: ["faq-free-shipping-available"],
515
+ stats: makeStats(2200, 110),
516
+ seo: { slug: "faq-coupons-and-discounts", metaTitle: "Using Coupons on LetItRip", metaDescription: "How to apply coupons and discount codes on LetItRip." },
517
+ isActive: true,
518
+ createdBy: "user-admin-letitrip",
519
+ createdAt: daysAgo(75),
520
+ updatedAt: daysAgo(12),
521
+ },
522
+ {
523
+ id: "faq-order-cancellation",
524
+ question: "Can I cancel an order after placing it?",
525
+ answer: html(`<p>You can cancel an order if the seller hasn't shipped yet. Go to Account → My Orders → Cancel Order. Once the seller marks the order as shipped, cancellation is no longer available — you'll need to wait for delivery and then request a return if needed.</p>`),
526
+ category: "orders_payment",
527
+ showOnHomepage: false,
528
+ showInFooter: false,
529
+ isPinned: false,
530
+ order: 27,
607
531
  priority: 7,
608
- tags: ["fees", "commission", "platform-fee", "sellers"],
609
- relatedFAQs: ["faq-how-do-seller-payouts-work"],
610
- useSiteSettings: true,
611
- variables: {},
612
- stats: makeStats(2200, 98),
613
- seo: { slug: "faq-what-are-letitrip-platform-fees" },
532
+ tags: ["cancel", "order", "pre-shipment"],
533
+ relatedFAQs: ["faq-how-to-request-refund"],
534
+ stats: makeStats(2800, 140),
535
+ seo: { slug: "faq-order-cancellation", metaTitle: "Cancel an Order on LetItRip", metaDescription: "How to cancel an order before it ships." },
614
536
  isActive: true,
615
537
  createdBy: "user-admin-letitrip",
616
- createdAt: daysAgo(87),
617
- updatedAt: daysAgo(5),
538
+ createdAt: daysAgo(85),
539
+ updatedAt: daysAgo(10),
618
540
  },
619
541
  {
620
- id: "faq-is-cod-available",
621
- question: "Is Cash on Delivery (COD) available?",
622
- answer: html(`<p>COD is available on LetItRip for orders up to <strong>₹10,000</strong>, subject to the seller enabling it for their store. Not all stores offer COD check the payment options on the checkout page for the specific seller.</p><p>COD requires a <strong>20% online deposit</strong> at checkout to confirm the order. The remaining 80% is paid to the delivery agent on delivery. If you refuse delivery, the 20% deposit is non-refundable (it covers the seller's reverse-logistics cost).</p><p>COD is not available for auction wins or pre-orders — these require full online payment.</p>`),
542
+ id: "faq-seller-fees",
543
+ question: "What fees does LetItRip charge sellers?",
544
+ answer: html(`<p>LetItRip charges a platform commission on each sale (percentage varies by category). There are no listing fees or monthly subscription charges. Payout processing fees depend on your payout method (UPI is free, bank transfer has a small fee). Check the Seller Dashboard for current fee schedules.</p>`),
623
545
  category: "orders_payment",
624
546
  showOnHomepage: false,
625
547
  showInFooter: false,
626
548
  isPinned: false,
627
- order: 5,
549
+ order: 28,
628
550
  priority: 6,
629
- tags: ["cod", "cash-on-delivery", "payment"],
630
- relatedFAQs: ["faq-what-payment-methods-are-accepted"],
631
- useSiteSettings: true,
632
- variables: {},
633
- stats: makeStats(1700, 74),
634
- seo: { slug: "faq-is-cod-available" },
551
+ tags: ["fees", "seller", "commission"],
552
+ relatedFAQs: ["faq-seller-payout-schedule"],
553
+ stats: makeStats(1600, 80),
554
+ seo: { slug: "faq-seller-fees", metaTitle: "Seller Fees on LetItRip", metaDescription: "Platform commission and fee structure for sellers on LetItRip." },
635
555
  isActive: true,
636
556
  createdBy: "user-admin-letitrip",
637
- createdAt: daysAgo(86),
638
- updatedAt: daysAgo(7),
557
+ createdAt: daysAgo(70),
558
+ updatedAt: daysAgo(15),
639
559
  },
640
560
  {
641
- id: "faq-can-i-use-multiple-coupons",
642
- question: "Can I use multiple coupon codes on one order?",
643
- answer: html(`<p>Yes LetItRip supports stacking one <strong>platform coupon</strong> (issued by LetItRip) and one <strong>seller coupon</strong> (issued by the store) on the same order. Two platform coupons cannot be stacked the higher-value one is applied automatically.</p><p>Coupon restrictions (minimum order value, applicable categories, first-order only) still apply per coupon. Check the coupon's terms at checkout before assuming it applies to your order.</p>`),
561
+ id: "faq-seller-payout-schedule",
562
+ question: "When do sellers get paid?",
563
+ answer: html(`<p>Payouts are released after the buyer confirms delivery (or after 7 days with no dispute). Payout batches are processed weekly. You can view payout status and history in your Seller Dashboard Payouts. The payout amount reflects the sale price minus platform commission and any refund deductions.</p>`),
644
564
  category: "orders_payment",
645
565
  showOnHomepage: false,
646
566
  showInFooter: false,
647
567
  isPinned: false,
648
- order: 6,
568
+ order: 29,
649
569
  priority: 6,
650
- tags: ["coupon", "discount"],
651
- relatedFAQs: [],
652
- useSiteSettings: true,
653
- variables: {},
654
- stats: makeStats(1900, 82),
655
- seo: { slug: "faq-can-i-use-multiple-coupons" },
570
+ tags: ["payout", "seller", "payment-schedule"],
571
+ relatedFAQs: ["faq-seller-fees"],
572
+ stats: makeStats(1300, 65),
573
+ seo: { slug: "faq-seller-payout-schedule", metaTitle: "Seller Payout Schedule", metaDescription: "When and how sellers receive payouts on LetItRip." },
656
574
  isActive: true,
657
575
  createdBy: "user-admin-letitrip",
658
- createdAt: daysAgo(88),
659
- updatedAt: daysAgo(6),
576
+ createdAt: daysAgo(65),
577
+ updatedAt: daysAgo(12),
660
578
  },
661
579
  {
662
- id: "faq-why-was-my-payment-declined",
663
- question: "Why was my payment declined?",
664
- answer: html(`<p>Common causes:</p><ul><li><strong>Insufficient funds</strong> in your bank account or UPI-linked account</li><li><strong>Daily UPI limit exceeded</strong> UPI has a ₹1 lakh/day limit per bank</li><li><strong>Card not enabled for online/international transactions</strong> enable via your bank's mobile app</li><li><strong>Bank 2FA failed</strong> wrong OTP or OTP expired</li><li><strong>VPN active</strong> Razorpay may block payments from VPN IPs as a fraud precaution</li></ul><p>Try a different payment method or browser. The Razorpay error code shown at checkout identifies the exact cause. Contact <strong>support@letitrip.in</strong> with the error code for faster resolution.</p>`),
580
+ id: "faq-payment-failed",
581
+ question: "My payment failed but money was deducted what do I do?",
582
+ answer: html(`<p>If your payment fails but the amount is deducted, it's usually a temporary hold by your bank. The amount is auto-reversed within 24–48 hours. If it doesn't reverse after 48 hours, contact your bank with the transaction ID (available in your Razorpay receipt email) or reach out to LetItRip support.</p>`),
665
583
  category: "orders_payment",
666
584
  showOnHomepage: false,
667
585
  showInFooter: false,
668
586
  isPinned: false,
669
- order: 7,
670
- priority: 7,
671
- tags: ["payment", "declined", "error"],
672
- relatedFAQs: ["faq-what-payment-methods-are-accepted"],
673
- useSiteSettings: true,
674
- variables: {},
675
- stats: makeStats(2100, 92),
676
- seo: { slug: "faq-why-was-my-payment-declined" },
587
+ order: 30,
588
+ priority: 8,
589
+ tags: ["payment-failed", "bank-hold", "razorpay"],
590
+ relatedFAQs: ["faq-payment-methods"],
591
+ stats: makeStats(3200, 160),
592
+ seo: { slug: "faq-payment-failed", metaTitle: "Payment Failed but Money Deducted", metaDescription: "What to do when payment fails but bank deducts the amount." },
677
593
  isActive: true,
678
594
  createdBy: "user-admin-letitrip",
679
- createdAt: daysAgo(88),
680
- updatedAt: daysAgo(9),
595
+ createdAt: daysAgo(55),
596
+ updatedAt: daysAgo(5),
681
597
  },
682
598
  {
683
- id: "faq-gst-invoice-for-my-order",
684
- question: "Can I get a GST invoice for my order?",
685
- answer: html(`<p>GST invoices are issued by individual sellers. Enter your <strong>GSTIN</strong> in the Billing Details section at checkout. The seller generates a GST-compliant invoice downloadable from My Account → Orders → <strong>"Download Invoice"</strong> once the order is confirmed.</p><p>Not all sellers are GST-registered sellers with turnover below ₹40 lakh are exempt. LetItRip's platform fee (if applicable) is always GST-inclusive at 18%, and a receipt is in your account.</p>`),
599
+ id: "faq-gst-invoice",
600
+ question: "Do I get a GST invoice for my purchase?",
601
+ answer: html(`<p>Yes invoices are auto-generated for every order. Go to Account My Orders → click the order Download Invoice. Sellers who are GST-registered include GST details on the invoice. For bulk/business purchases, contact the seller directly to arrange GST billing.</p>`),
686
602
  category: "orders_payment",
687
603
  showOnHomepage: false,
688
604
  showInFooter: false,
689
605
  isPinned: false,
690
- order: 8,
606
+ order: 31,
691
607
  priority: 5,
692
- tags: ["gst", "invoice", "billing"],
608
+ tags: ["gst", "invoice", "tax"],
693
609
  relatedFAQs: [],
694
- useSiteSettings: true,
695
- variables: {},
696
- stats: makeStats(1100, 48),
697
- seo: { slug: "faq-gst-invoice-for-my-order" },
610
+ stats: makeStats(900, 45),
611
+ seo: { slug: "faq-gst-invoice", metaTitle: "GST Invoice on LetItRip", metaDescription: "How to get a GST invoice for your LetItRip purchase." },
698
612
  isActive: true,
699
613
  createdBy: "user-admin-letitrip",
700
- createdAt: daysAgo(85),
614
+ createdAt: daysAgo(40),
701
615
  updatedAt: daysAgo(10),
702
616
  },
703
- // ══════════════════════════════════════════════════════════════════════════
704
- // PRODUCT INFORMATION (8 FAQs)
705
- // ══════════════════════════════════════════════════════════════════════════
617
+ // ── PRODUCT INFORMATION (8) ───────────────────────────────────────────────
706
618
  {
707
- id: "faq-how-do-pre-orders-work",
708
- question: "How do pre-orders work on LetItRip?",
709
- answer: html(`<p>Pre-orders let you reserve upcoming collectibles before they arrive in India:</p><ol><li>Browse pre-order listings — each shows an estimated delivery window (e.g., "Shipping in 45–60 days").</li><li>Pay a <strong>deposit</strong> (typically 20–30% of the total price) to secure your unit.</li><li>The remaining balance is charged automatically when the item is ready to ship.</li><li>If the seller cancels the pre-order, your deposit is refunded in full within 5 business days.</li></ol><p>Pre-orders are available for Beyblade X new releases, Pokémon booster boxes, S.H.Figuarts, Nendoroids, and Hot Wheels RLC exclusives. <strong>Estimated delivery windows are set by sellers</strong> — delays are possible (see the pre-order delay FAQ).</p>`),
619
+ id: "faq-how-to-verify-authenticity",
620
+ question: "How can I verify if a collectible is authentic?",
621
+ answer: html(`<p>Look for these trust signals on LetItRip: <strong>Verified Seller</strong> badge (store has passed manual review), <strong>Graded</strong> badge (PSA/BGS/CGC certified with certificate number), <strong>Sealed</strong> badge (factory-sealed product). For ungraded items, check the seller's photo quality and description detail. If in doubt, message the seller before purchasing.</p>`),
710
622
  category: "product_information",
711
- showOnHomepage: true,
712
- showInFooter: false,
713
- isPinned: true,
714
- order: 1,
715
- priority: 10,
716
- tags: ["pre-order", "deposit", "how-to"],
717
- relatedFAQs: ["faq-can-i-cancel-a-pre-order", "faq-what-if-preorder-delayed"],
718
- useSiteSettings: true,
719
- variables: {},
720
- stats: makeStats(4700, 224),
721
- seo: {
722
- slug: "faq-how-do-pre-orders-work",
723
- metaTitle: "How Do Pre-Orders Work on LetItRip?",
724
- metaDescription: "Pre-orders on LetItRip let you reserve upcoming Pokémon, Beyblade X, and anime figures with a deposit.",
725
- },
726
- isActive: true,
727
- createdBy: "user-admin-letitrip",
728
- createdAt: daysAgo(90),
729
- updatedAt: daysAgo(2),
730
- },
731
- {
732
- id: "faq-can-i-cancel-a-pre-order",
733
- question: "Can I cancel a pre-order?",
734
- answer: html(`<p>You can cancel a pre-order <strong>before the seller marks it "In Production"</strong> — your deposit is fully refunded within 5 business days. After "In Production" status, cancellation may result in the deposit being forfeited (this is disclosed on the listing before you pay).</p><p>If the estimated delivery date shifts by more than 60 days, LetItRip gives you a 7-day window to cancel with a full deposit refund regardless of production status.</p>`),
735
- category: "product_information",
736
- showOnHomepage: false,
623
+ showOnHomepage: false,
737
624
  showInFooter: false,
738
625
  isPinned: false,
739
- order: 2,
626
+ order: 32,
740
627
  priority: 8,
741
- tags: ["pre-order", "cancel", "deposit"],
742
- relatedFAQs: ["faq-how-do-pre-orders-work"],
743
- useSiteSettings: true,
744
- variables: {},
745
- stats: makeStats(2900, 134),
746
- seo: { slug: "faq-can-i-cancel-a-pre-order" },
628
+ tags: ["authentication", "verification", "trust"],
629
+ relatedFAQs: ["faq-counterfeit-guarantee", "faq-psa-vs-bgs-vs-cgc"],
630
+ stats: makeStats(3800, 190),
631
+ seo: { slug: "faq-how-to-verify-authenticity", metaTitle: "Verify Collectible Authenticity", metaDescription: "How to verify if a collectible is authentic on LetItRip." },
747
632
  isActive: true,
748
633
  createdBy: "user-admin-letitrip",
749
- createdAt: daysAgo(88),
750
- updatedAt: daysAgo(5),
634
+ createdAt: daysAgo(90),
635
+ updatedAt: daysAgo(15),
751
636
  },
752
637
  {
753
- id: "faq-what-if-preorder-delayed",
754
- question: "What if my pre-order is delayed?",
755
- answer: html(`<p>Collectibles pre-orders frequently experience delays due to production issues, customs clearance, or distributor problems this is normal in the hobby. LetItRip's policy:</p><ul><li><strong>Minor delay (under 30 days)</strong>: seller updates the date and notifies you. No action required unless you want to cancel.</li><li><strong>Major delay (30–60 days)</strong>: LetItRip sends a notification. You have 7 days to cancel with a full deposit refund.</li><li><strong>Excessive delay (over 60 days)</strong>: LetItRip may initiate a full refund if the seller cannot provide a confirmed new date within 14 days.</li></ul><p>Track your pre-order's current status in My Account → Orders.</p>`),
638
+ id: "faq-psa-vs-bgs-vs-cgc",
639
+ question: "What's the difference between PSA, BGS, and CGC grading?",
640
+ answer: html(`<p><strong>PSA</strong> (Professional Sports Authenticator) uses a 1–10 scale and is the most widely recognized for trading cards. <strong>BGS</strong> (Beckett Grading Services) uses sub-grades for centering, surface, edges, and corners a BGS 10 "Pristine" or "Black Label" is the highest standard. <strong>CGC</strong> (Certified Guaranty Company) is newer to cards but growing in popularity, also uses sub-grades. All three are trusted; PSA tends to command the highest resale premiums.</p>`),
756
641
  category: "product_information",
757
642
  showOnHomepage: false,
758
643
  showInFooter: false,
759
644
  isPinned: false,
760
- order: 3,
645
+ order: 33,
761
646
  priority: 7,
762
- tags: ["pre-order", "delay"],
763
- relatedFAQs: ["faq-how-do-pre-orders-work", "faq-can-i-cancel-a-pre-order"],
764
- useSiteSettings: true,
765
- variables: {},
766
- stats: makeStats(2100, 94),
767
- seo: { slug: "faq-what-if-preorder-delayed" },
647
+ tags: ["grading", "psa", "bgs", "cgc", "trading-cards"],
648
+ relatedFAQs: ["faq-how-to-verify-authenticity"],
649
+ stats: makeStats(4600, 230),
650
+ seo: { slug: "faq-psa-vs-bgs-vs-cgc", metaTitle: "PSA vs BGS vs CGC Grading", metaDescription: "Compare PSA, BGS, and CGC grading services for trading cards." },
768
651
  isActive: true,
769
652
  createdBy: "user-admin-letitrip",
770
653
  createdAt: daysAgo(85),
771
- updatedAt: daysAgo(7),
654
+ updatedAt: daysAgo(10),
772
655
  },
773
656
  {
774
- id: "faq-are-preorder-products-authentic",
775
- question: "Are pre-order products guaranteed to be authentic?",
776
- answer: html(`<p>All pre-orders on LetItRip must be from <strong>verified sellers</strong> sourcing directly from official distributors or brand-authorised retailers. Every pre-order listing must include proof of distributor agreement reviewed by LetItRip before going live.</p><p>For pre-orders above ₹10,000, sellers must provide a distributor invoice at dispatch. Confirmed counterfeit = full refund + immediate seller suspension.</p><p>That said, LetItRip does not physically inspect pre-order stock before dispatch. We rely on seller documentation and post-delivery buyer reporting. If you receive something that appears non-authentic, raise a dispute immediately do not confirm delivery.</p>`),
657
+ id: "faq-how-to-verify-1st-edition",
658
+ question: "How do I know if a Yu-Gi-Oh! card is 1st Edition?",
659
+ answer: html(`<p>1st Edition cards have a gold "1st Edition" stamp below the card artwork on the left side. On older cards (LOB, MRD era), the stamp is more prominent. Unlimited prints lack this stamp. For graded cards, the PSA/BGS/CGC label will indicate "1ST EDITION" in the certification details.</p>`),
777
660
  category: "product_information",
778
661
  showOnHomepage: false,
779
662
  showInFooter: false,
780
663
  isPinned: false,
781
- order: 4,
664
+ order: 34,
782
665
  priority: 6,
783
- tags: ["pre-order", "authentic", "verified"],
784
- relatedFAQs: ["faq-how-do-i-report-a-fake-item"],
785
- useSiteSettings: true,
786
- variables: {},
787
- stats: makeStats(1500, 66),
788
- seo: { slug: "faq-are-preorder-products-authentic" },
666
+ tags: ["authentication", "1st-edition", "ygo", "grading"],
667
+ relatedFAQs: ["faq-psa-vs-bgs-vs-cgc"],
668
+ stats: makeStats(3800, 190),
669
+ seo: { slug: "faq-how-to-verify-1st-edition", metaTitle: "Identify 1st Edition YGO Cards", metaDescription: "How to verify if your Yu-Gi-Oh! card is a genuine 1st Edition." },
789
670
  isActive: true,
790
671
  createdBy: "user-admin-letitrip",
791
- createdAt: daysAgo(82),
792
- updatedAt: daysAgo(9),
672
+ createdAt: daysAgo(90),
673
+ updatedAt: daysAgo(15),
793
674
  },
794
675
  {
795
- id: "faq-what-condition-grades-does-letitrip-use",
796
- question: "What item condition grades does LetItRip use?",
797
- answer: html(`<p>All listings on LetItRip must disclose item condition using our standard grading scale:</p><ul><li><strong>Mint / Brand New (M)</strong> — factory sealed or never used, no imperfections</li><li><strong>Near Mint (NM)</strong>opened but essentially perfect; minimal handling, no visible wear</li><li><strong>Lightly Played (LP)</strong> — minor wear visible under close inspection; no creases, scratches, or heavy marks</li><li><strong>Moderately Played (MP)</strong> — visible wear, minor scratches or edge wear; still functional/displayable</li><li><strong>Heavily Played (HP)</strong> — significant wear; creases, heavy edge wear, or discolouration present</li><li><strong>Damaged (D)</strong> — major defects; cracks, tears, or heavy damage disclosed in listing</li></ul><p>For graded cards or figures, the grade is set by the grading company (PSA, BGS, CGC, AFA) — not by LetItRip or the seller. Grading disputes must be raised with the grading company directly.</p>`),
676
+ id: "faq-condition-grading-guide",
677
+ question: "What do condition grades like NM, LP, MP mean?",
678
+ answer: html(`<p>Sellers use standard condition grades for ungraded items: <strong>NM</strong> (Near Mint) — virtually perfect, minimal handling wear. <strong>LP</strong> (Lightly Played) — minor edge wear, small scratches. <strong>MP</strong> (Moderately Played) — visible wear, light creasing. <strong>HP</strong> (Heavily Played) — significant wear, creases, whitening. <strong>Sealed</strong> — factory sealed, never opened. Always check the seller's photos for the actual condition.</p>`),
798
679
  category: "product_information",
799
680
  showOnHomepage: false,
800
681
  showInFooter: false,
801
682
  isPinned: false,
802
- order: 5,
683
+ order: 35,
803
684
  priority: 7,
804
- tags: ["condition", "grading", "near-mint"],
805
- relatedFAQs: ["faq-what-is-a-graded-slab-psa-bgs"],
806
- useSiteSettings: true,
807
- variables: {},
808
- stats: makeStats(1800, 84),
809
- seo: { slug: "faq-what-condition-grades-does-letitrip-use" },
685
+ tags: ["condition", "grading", "nm", "lp", "mp"],
686
+ relatedFAQs: ["faq-how-to-verify-authenticity"],
687
+ stats: makeStats(2900, 145),
688
+ seo: { slug: "faq-condition-grading-guide", metaTitle: "Condition Grading Guide", metaDescription: "What NM, LP, MP condition grades mean for collectibles on LetItRip." },
810
689
  isActive: true,
811
690
  createdBy: "user-admin-letitrip",
812
- createdAt: daysAgo(84),
813
- updatedAt: daysAgo(6),
691
+ createdAt: daysAgo(70),
692
+ updatedAt: daysAgo(12),
814
693
  },
815
694
  {
816
- id: "faq-what-is-a-graded-slab-psa-bgs",
817
- question: "What is a graded card or slab (PSA, BGS, CGC)?",
818
- answer: html(`<p>A <strong>graded slab</strong> is a trading card that has been professionally authenticated and graded by a third-party grading company and encapsulated in a tamper-evident hard plastic case.</p><p>The major grading companies:</p><ul><li><strong>PSA (Professional Sports Authenticator)</strong> the most recognised. Grades on a 1–10 scale. PSA 10 = Gem Mint (the highest).</li><li><strong>BGS (Beckett Grading Services)</strong> — also 1–10, with sub-grades for centering, corners, edges, and surface. BGS 9.5 "Gem Mint" is highly sought after.</li><li><strong>CGC (Certified Guaranty Company)</strong> originally a comics grader, now popular for Pokémon. CGC 10 = Pristine.</li></ul><p>On LetItRip, all graded slab listings must display the cert/certificate number so buyers can verify the grade on the grading company's website before purchasing. If a slab arrives with a cracked case or mismatched cert number, raise a dispute immediately.</p>`),
695
+ id: "faq-beyblade-compatibility",
696
+ question: "Are Beyblade parts compatible across different series?",
697
+ answer: html(`<p><strong>Beyblade X</strong> parts are NOT compatible with Burst or older systems different launcher and layer design. <strong>Burst</strong> layers, discs, and drivers are cross-compatible within the Burst line (standard, superking, dynamite battle, BU). <strong>Metal Saga</strong> (Metal Fusion/Masters/Fury) parts interchange within that line. Always check the listing's "Compatible System" tag before purchasing.</p>`),
819
698
  category: "product_information",
820
699
  showOnHomepage: false,
821
700
  showInFooter: false,
822
701
  isPinned: false,
823
- order: 6,
824
- priority: 7,
825
- tags: ["graded-slab", "psa", "bgs", "cgc", "pokemon", "authentication"],
826
- relatedFAQs: ["faq-what-condition-grades-does-letitrip-use", "faq-how-to-spot-fake-pokemon-cards-authentication"],
827
- useSiteSettings: true,
828
- variables: {},
829
- stats: makeStats(2400, 114),
830
- seo: { slug: "faq-what-is-a-graded-slab-psa-bgs" },
831
- isActive: true,
832
- createdBy: "user-admin-letitrip",
833
- createdAt: daysAgo(83),
834
- updatedAt: daysAgo(5),
835
- },
836
- {
837
- id: "faq-how-to-spot-fake-pokemon-cards-authentication",
838
- question: "How do I spot fake Pokémon cards and authenticate collectibles?",
839
- answer: html(`<p>Counterfeit collectibles are a real risk in secondary markets. Here's how to protect yourself on LetItRip and in general:</p><p><strong>Pokémon Cards:</strong></p><ul><li><strong>Light test</strong> — hold the card up to a bright light. Genuine cards have a black layer in the middle that blocks most light; fakes are often lighter or fully translucent.</li><li><strong>Bend test</strong> — real cards have a slight snap and return to shape. Fakes feel flimsy or don't snap back. (Only do this on cards you already own.)</li><li><strong>Print quality</strong> — genuine cards have sharp, fine printing; fakes often show dot patterns, blurry text, or washed-out colours.</li><li><strong>Rip test</strong> — genuine cards have a distinctive black inner layer. Never do this to a card you're buying — ask the seller for a light test video.</li></ul><p><strong>Graded Slabs:</strong></p><ul><li>Verify the cert number on PSA's, BGS's, or CGC's official website before paying.</li><li>Inspect the slab for tampering — the label should be sealed inside with no gaps.</li></ul><p><strong>Hot Wheels Redlines / Vintage:</strong></p><ul><li>Repainted castings are common — look for matching wheel colours, original tampos (decals), and period-correct packaging.</li></ul><p>If you're unsure about a listing, ask the seller for additional photos or a video authentication. Sellers on LetItRip are required to respond to authentication requests within 24 hours.</p>`),
840
- category: "product_information",
841
- showOnHomepage: true,
842
- showInFooter: false,
843
- isPinned: false,
844
- order: 7,
845
- priority: 8,
846
- tags: ["fake", "counterfeit", "pokemon", "authentication", "graded-slab"],
847
- relatedFAQs: ["faq-how-do-i-report-a-fake-item", "faq-what-is-a-graded-slab-psa-bgs"],
848
- useSiteSettings: true,
849
- variables: {},
850
- stats: makeStats(5200, 278),
851
- seo: {
852
- slug: "faq-how-to-spot-fake-pokemon-cards-authentication",
853
- metaTitle: "How to Spot Fake Pokémon Cards and Authenticate Collectibles",
854
- metaDescription: "Light test, print quality, graded slab cert checks — a buyer's guide to authenticating Pokémon cards, slabs, and collectibles.",
855
- },
702
+ order: 36,
703
+ priority: 6,
704
+ tags: ["beyblade", "compatibility", "parts", "spinning-tops"],
705
+ relatedFAQs: ["faq-what-categories-available"],
706
+ stats: makeStats(1600, 80),
707
+ seo: { slug: "faq-beyblade-compatibility", metaTitle: "Beyblade Part Compatibility", metaDescription: "Which Beyblade parts are compatible across series — X, Burst, and Metal Saga." },
856
708
  isActive: true,
857
709
  createdBy: "user-admin-letitrip",
858
- createdAt: daysAgo(80),
859
- updatedAt: daysAgo(3),
710
+ createdAt: daysAgo(50),
711
+ updatedAt: daysAgo(8),
860
712
  },
861
713
  {
862
- id: "faq-what-is-beyblade-x",
863
- question: "What is Beyblade X and where can I buy it in India?",
864
- answer: html(`<p><strong>Beyblade X</strong> is the latest generation of Beyblade, launched by Takara Tomy in Japan in 2023. It features a new "X" gear system inside the bit — when activated, the top accelerates and launches out of the stadium for dramatic finishes. Beyblade X tops are officially called <em>Beys</em> and require an XStadium for correct play.</p><p>On LetItRip, verified sellers import official Takara Tomy Beyblade X products directly from Japan. You can buy:</p><ul><li>Individual tops (Dran Sword, Hells Scythe, Knight Shield, and more)</li><li>Launchers and cords</li><li>XStadiums (full-size and compact)</li><li>Booster and starter sets</li></ul><p>Browse the <strong>Beyblade X category</strong> on LetItRip and filter by seller rating to find trusted importers. Always confirm you are buying official Takara Tomy product — cheap Chinese counterfeits are common and do not perform correctly.</p>`),
714
+ id: "faq-hot-wheels-treasure-hunt",
715
+ question: "How do I identify Hot Wheels Treasure Hunts and Supers?",
716
+ answer: html(`<p><strong>Regular Treasure Hunts</strong> have a small flame logo on the card. <strong>Super Treasure Hunts (STH)</strong> have Spectraflame paint (metallic/candy-colored), Real Riders rubber tires, and a "TH" logo somewhere on the car. STHs are rare (1 in ~15 cases) and command premium prices. Sellers on LetItRip mark STHs with a "Super Treasure Hunt" badge.</p>`),
865
717
  category: "product_information",
866
718
  showOnHomepage: false,
867
719
  showInFooter: false,
868
720
  isPinned: false,
869
- order: 8,
721
+ order: 37,
870
722
  priority: 6,
871
- tags: ["beyblade-x", "takara-tomy", "spinning-tops", "india"],
872
- relatedFAQs: ["faq-how-do-i-report-a-fake-item"],
873
- useSiteSettings: true,
874
- variables: {},
875
- stats: makeStats(3800, 178),
876
- seo: {
877
- slug: "faq-what-is-beyblade-x",
878
- metaTitle: "What is Beyblade X? Buy Official Takara Tomy in India",
879
- metaDescription: "Beyblade X is the latest Beyblade generation. Buy official Takara Tomy imports in India on LetItRip.",
880
- },
881
- isActive: true,
882
- createdBy: "user-admin-letitrip",
883
- createdAt: daysAgo(78),
884
- updatedAt: daysAgo(4),
885
- },
886
- // ══════════════════════════════════════════════════════════════════════════
887
- // ACCOUNT & SECURITY (7 FAQs)
888
- // ══════════════════════════════════════════════════════════════════════════
889
- {
890
- id: "faq-how-do-i-create-an-account",
891
- question: "How do I create a LetItRip account?",
892
- answer: html(`<p>Creating a LetItRip account is free and takes under a minute:</p><ol><li>Click <strong>Sign Up</strong> on any page.</li><li>Enter your email address and create a password, or sign up with Google.</li><li>Verify your email address — we send a verification link immediately.</li><li>Complete your profile (display name, optional phone number for WhatsApp updates).</li></ol><p>You can browse and wishlist items without an account, but you need an account to buy, bid, or sell. Phone verification is required for COD orders and bidding on auctions above ₹5,000.</p>`),
893
- category: "account_security",
894
- showOnHomepage: false,
895
- showInFooter: false,
896
- isPinned: false,
897
- order: 1,
898
- priority: 8,
899
- tags: ["account", "sign-up", "register"],
900
- relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
901
- useSiteSettings: true,
902
- variables: {},
903
- stats: makeStats(2200, 98),
904
- seo: { slug: "faq-how-do-i-create-an-account" },
905
- isActive: true,
906
- createdBy: "user-admin-letitrip",
907
- createdAt: daysAgo(88),
908
- updatedAt: daysAgo(6),
909
- },
910
- {
911
- id: "faq-how-do-i-become-a-verified-seller",
912
- question: "How do I become a verified seller on LetItRip?",
913
- answer: html(`<p>Selling on LetItRip requires manual verification — we review every store before approval. To apply:</p><ol><li>Go to My Account → <strong>Become a Seller</strong>.</li><li>Fill in your store details: store name, category, bio, and shipping policy.</li><li>Complete KYC: submit a government-issued ID (Aadhaar, PAN, or passport) and a selfie for identity verification.</li><li>Provide bank account or UPI details for payouts.</li><li>Our team reviews your application within 2–3 business days and approves or requests more information.</li></ol><p>Approval criteria include: valid KYC documents, a credible store description, and no history of fraudulent activity on LetItRip or associated platforms. Individual sellers and small businesses are both welcome.</p>`),
914
- category: "account_security",
915
- showOnHomepage: false,
916
- showInFooter: true,
917
- isPinned: false,
918
- order: 2,
919
- priority: 9,
920
- tags: ["seller", "verification", "kyc", "store"],
921
- relatedFAQs: ["faq-what-is-kyc-verification", "faq-how-do-seller-payouts-work"],
922
- useSiteSettings: true,
923
- variables: {},
924
- stats: makeStats(3100, 148),
925
- seo: {
926
- slug: "faq-how-do-i-become-a-verified-seller",
927
- metaTitle: "How to Become a Verified Seller on LetItRip",
928
- metaDescription: "Apply to sell collectibles on LetItRip. Manual KYC verification and 2–3 day approval for Indian sellers.",
929
- },
930
- isActive: true,
931
- createdBy: "user-admin-letitrip",
932
- createdAt: daysAgo(87),
933
- updatedAt: daysAgo(4),
934
- },
935
- {
936
- id: "faq-what-is-kyc-verification",
937
- question: "What is KYC verification and why is it required?",
938
- answer: html(`<p>KYC (Know Your Customer) is a mandatory identity verification process required by Indian financial regulations for any platform that processes payments. LetItRip requires KYC for sellers (to enable payouts) and for buyers making high-value purchases or COD orders above ₹5,000.</p><p><strong>What KYC involves:</strong></p><ul><li>A government-issued photo ID (Aadhaar card, PAN card, or passport)</li><li>A selfie for liveness verification</li><li>Bank account or UPI details (sellers only, for payouts)</li></ul><p>Your KYC data is stored encrypted and is never shared with sellers, buyers, or third parties beyond what is required by law. LetItRip uses a DPDP-compliant document verification partner.</p>`),
939
- category: "account_security",
940
- showOnHomepage: false,
941
- showInFooter: false,
942
- isPinned: false,
943
- order: 3,
944
- priority: 7,
945
- tags: ["kyc", "verification", "identity", "aadhaar"],
946
- relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
947
- useSiteSettings: true,
948
- variables: {},
949
- stats: makeStats(1900, 88),
950
- seo: { slug: "faq-what-is-kyc-verification" },
723
+ tags: ["hot-wheels", "treasure-hunt", "sth", "diecast"],
724
+ relatedFAQs: ["faq-what-categories-available"],
725
+ stats: makeStats(2100, 105),
726
+ seo: { slug: "faq-hot-wheels-treasure-hunt", metaTitle: "Hot Wheels Treasure Hunt Guide", metaDescription: "How to identify regular and Super Treasure Hunt Hot Wheels." },
951
727
  isActive: true,
952
728
  createdBy: "user-admin-letitrip",
953
- createdAt: daysAgo(86),
954
- updatedAt: daysAgo(5),
729
+ createdAt: daysAgo(45),
730
+ updatedAt: daysAgo(10),
955
731
  },
956
732
  {
957
- id: "faq-how-do-i-reset-my-password",
958
- question: "How do I reset my password?",
959
- answer: html(`<p>On the login page, click <strong>"Forgot Password"</strong> and enter your registered email address. We send a password reset link immediately — it expires in 1 hour.</p><p>If you signed up with Google and don't have a password, use the "Continue with Google" button there is no separate LetItRip password to reset.</p><p>If you no longer have access to your registered email, contact <strong>support@letitrip.in</strong> with your registered phone number for account recovery.</p>`),
960
- category: "account_security",
733
+ id: "faq-funko-pop-exclusives",
734
+ question: "Are Funko Pop exclusives available on LetItRip?",
735
+ answer: html(`<p>Yes verified sellers list convention exclusives (SDCC, NYCC, Funko Fair), store exclusives (Amazon, Hot Topic, BoxLunch), and chase variants. Look for the "Exclusive" or "Chase" badge on listings. All Funko Pops include the pop number and series in the listing title for easy search.</p>`),
736
+ category: "product_information",
961
737
  showOnHomepage: false,
962
738
  showInFooter: false,
963
739
  isPinned: false,
964
- order: 4,
965
- priority: 6,
966
- tags: ["password", "reset", "login"],
967
- relatedFAQs: ["faq-how-do-i-protect-my-account"],
968
- useSiteSettings: true,
969
- variables: {},
970
- stats: makeStats(1400, 64),
971
- seo: { slug: "faq-how-do-i-reset-my-password" },
740
+ order: 38,
741
+ priority: 5,
742
+ tags: ["funko", "pop", "exclusive", "chase", "action-figures"],
743
+ relatedFAQs: ["faq-what-categories-available"],
744
+ stats: makeStats(1300, 65),
745
+ seo: { slug: "faq-funko-pop-exclusives", metaTitle: "Funko Pop Exclusives on LetItRip", metaDescription: "Find convention and store exclusive Funko Pops on LetItRip." },
972
746
  isActive: true,
973
747
  createdBy: "user-admin-letitrip",
974
- createdAt: daysAgo(85),
748
+ createdAt: daysAgo(35),
975
749
  updatedAt: daysAgo(7),
976
750
  },
977
751
  {
978
- id: "faq-can-i-have-multiple-accounts",
979
- question: "Can I have multiple LetItRip accounts?",
980
- answer: html(`<p><strong>No.</strong> LetItRip permits one account per individual. Operating multiple buyer or seller accounts (for example, to bypass a suspension, accumulate separate feedback, or exploit welcome offers) is a violation of our Terms of Service and will result in all associated accounts being permanently banned.</p><p>If you are a business with multiple trading entities, contact <strong>support@letitrip.in</strong> before creating a second store we have a process for multi-brand sellers under a single verified identity.</p>`),
981
- category: "account_security",
752
+ id: "faq-gundam-grade-differences",
753
+ question: "What's the difference between HG, MG, RG, and PG Gundam kits?",
754
+ answer: html(`<p><strong>HG</strong> (High Grade, 1/144) beginner-friendly, ~100 parts. <strong>RG</strong> (Real Grade, 1/144) high detail at small scale, ~200 parts. <strong>MG</strong> (Master Grade, 1/100) detailed inner frame, ~400 parts, intermediate. <strong>PG</strong> (Perfect Grade, 1/60) premium, ~800+ parts, LED-ready. All Bandai kits on LetItRip list the grade, scale, and part count in the product details.</p>`),
755
+ category: "product_information",
982
756
  showOnHomepage: false,
983
757
  showInFooter: false,
984
758
  isPinned: false,
985
- order: 5,
759
+ order: 39,
986
760
  priority: 5,
987
- tags: ["account", "multiple", "ban"],
988
- relatedFAQs: [],
989
- useSiteSettings: true,
990
- variables: {},
991
- stats: makeStats(820, 36),
992
- seo: { slug: "faq-can-i-have-multiple-accounts" },
761
+ tags: ["gundam", "model-kits", "bandai", "hg", "mg", "rg", "pg"],
762
+ relatedFAQs: ["faq-what-categories-available"],
763
+ stats: makeStats(1700, 85),
764
+ seo: { slug: "faq-gundam-grade-differences", metaTitle: "Gundam Kit Grades Explained", metaDescription: "HG vs MG vs RG vs PG — understand Gundam model kit grades on LetItRip." },
993
765
  isActive: true,
994
766
  createdBy: "user-admin-letitrip",
995
- createdAt: daysAgo(84),
767
+ createdAt: daysAgo(40),
996
768
  updatedAt: daysAgo(8),
997
769
  },
770
+ // ── AUCTIONS (5) ──────────────────────────────────────────────────────────
998
771
  {
999
- id: "faq-how-do-i-delete-my-account",
1000
- question: "How do I delete my LetItRip account?",
1001
- answer: html(`<p>You can request account deletion from My Account Settings → <strong>"Delete Account"</strong>. Before deletion:</p><ul><li>All open orders must be completed or cancelled.</li><li>Any active listings must be closed.</li><li>Any pending seller payouts will be processed before the account is removed.</li></ul><p>Account deletion is <strong>permanent and irreversible</strong> your order history, reviews, and profile data will be removed within 30 days in accordance with DPDP regulations. If you only want to take a break, you can deactivate your account instead (My Account Settings → "Deactivate Account") — this hides your profile and listings without deleting data.</p>`),
1002
- category: "account_security",
1003
- showOnHomepage: false,
1004
- showInFooter: false,
1005
- isPinned: false,
1006
- order: 6,
1007
- priority: 5,
1008
- tags: ["delete", "account", "privacy"],
1009
- relatedFAQs: [],
1010
- useSiteSettings: true,
1011
- variables: {},
1012
- stats: makeStats(740, 32),
1013
- seo: { slug: "faq-how-do-i-delete-my-account" },
1014
- isActive: true,
1015
- createdBy: "user-admin-letitrip",
1016
- createdAt: daysAgo(82),
1017
- updatedAt: daysAgo(9),
1018
- },
1019
- {
1020
- id: "faq-how-do-i-protect-my-account",
1021
- question: "How do I keep my LetItRip account secure?",
1022
- answer: html(`<p>Best practices for account security on LetItRip:</p><ul><li><strong>Use a strong, unique password</strong> — don't reuse passwords from other sites.</li><li><strong>Enable 2-Step Verification</strong> (2FA) in My Account → Settings → Security. We support SMS OTP and authenticator apps.</li><li><strong>Never share your login details</strong> — LetItRip support will never ask for your password.</li><li><strong>Watch for phishing</strong> — all official LetItRip emails come from @letitrip.in. Be suspicious of any message asking you to click a payment link outside the platform.</li><li><strong>Never pay outside LetItRip</strong> — if a seller asks you to UPI them directly or use a third-party app, report it immediately. Off-platform payments are not covered by escrow.</li></ul><p>If you suspect your account has been compromised, change your password immediately and contact <strong>support@letitrip.in</strong>.</p>`),
1023
- category: "account_security",
1024
- showOnHomepage: false,
1025
- showInFooter: false,
1026
- isPinned: false,
1027
- order: 7,
1028
- priority: 7,
1029
- tags: ["security", "2fa", "phishing", "password"],
1030
- relatedFAQs: ["faq-how-do-i-reset-my-password"],
1031
- useSiteSettings: true,
1032
- variables: {},
1033
- stats: makeStats(1200, 56),
1034
- seo: { slug: "faq-how-do-i-protect-my-account" },
1035
- isActive: true,
1036
- createdBy: "user-admin-letitrip",
1037
- createdAt: daysAgo(81),
1038
- updatedAt: daysAgo(6),
1039
- },
1040
- // ══════════════════════════════════════════════════════════════════════════
1041
- // TECHNICAL SUPPORT (7 FAQs)
1042
- // ══════════════════════════════════════════════════════════════════════════
1043
- {
1044
- id: "faq-app-not-loading",
1045
- question: "The LetItRip website or app is not loading — what should I do?",
1046
- answer: html(`<p>Try these steps in order:</p><ol><li><strong>Refresh the page</strong> and wait 10 seconds — brief server timeouts are usually self-resolving.</li><li><strong>Clear your browser cache</strong> (Ctrl+Shift+R on desktop; Safari → Settings → Clear History on iOS).</li><li><strong>Check your internet connection</strong> — try loading another website or switching between WiFi and mobile data.</li><li><strong>Disable browser extensions</strong> — ad blockers occasionally interfere with our checkout flow.</li><li><strong>Try a different browser</strong> — LetItRip works best on Chrome, Firefox, and Safari (latest versions).</li></ol><p>If the issue persists, check our status page or email <strong>support@letitrip.in</strong> describing the error (screenshot if possible) and your browser/device details.</p>`),
1047
- category: "technical_support",
772
+ id: "faq-how-does-bidding-work",
773
+ question: "How does bidding work on LetItRip?",
774
+ answer: html(`<p>Place a bid on any active auction listing. You'll be notified if you're outbid. When the auction ends, the highest bidder wins. Some auctions have a Buy It Now (BIN) priceyou can skip bidding and purchase immediately at the BIN price. Auctions auto-extend by 2 minutes if a bid is placed in the final 2 minutes to prevent sniping.</p>`),
775
+ category: "general",
1048
776
  showOnHomepage: false,
1049
- showInFooter: false,
777
+ showInFooter: true,
1050
778
  isPinned: false,
1051
- order: 1,
1052
- priority: 7,
1053
- tags: ["app", "loading", "technical", "browser"],
1054
- relatedFAQs: ["faq-how-do-i-contact-support"],
1055
- useSiteSettings: true,
1056
- variables: {},
1057
- stats: makeStats(1100, 48),
1058
- seo: { slug: "faq-app-not-loading" },
779
+ order: 40,
780
+ priority: 8,
781
+ tags: ["auction", "bidding", "bin", "auto-extend"],
782
+ relatedFAQs: ["faq-auction-ending-rules", "faq-can-i-cancel-bid"],
783
+ stats: makeStats(4200, 210),
784
+ seo: { slug: "faq-how-does-bidding-work", metaTitle: "How Bidding Works", metaDescription: "Learn how to bid on collectibles auctions on LetItRip." },
1059
785
  isActive: true,
1060
786
  createdBy: "user-admin-letitrip",
1061
- createdAt: daysAgo(80),
1062
- updatedAt: daysAgo(7),
787
+ createdAt: daysAgo(105),
788
+ updatedAt: daysAgo(8),
1063
789
  },
1064
790
  {
1065
- id: "faq-why-was-my-listing-rejected",
1066
- question: "Why was my listing rejected?",
1067
- answer: html(`<p>Listings are reviewed before going live. Common rejection reasons:</p><ul><li><strong>Insufficient photographs</strong> — all listings require at least 3 photos from different angles; condition flaws must be photographed and disclosed.</li><li><strong>Missing or incomplete condition disclosure</strong> — every item's condition grade must be explicitly stated.</li><li><strong>Prohibited items</strong> — bootlegs, unlicensed proxies, opened-and-resealed products (without disclosure), and items with removed serial stickers are not permitted.</li><li><strong>Misleading title or description</strong> — using brand names inaccurately (e.g., listing a non-Nintendo product as "official Nintendo").</li><li><strong>Price below platform minimum</strong> — listings must meet a minimum price threshold to cover payment processing costs.</li></ul><p>Rejection emails include the specific reason. Fix the issue and resubmit — resubmissions are reviewed within 12 hours. If you believe the rejection was in error, email <strong>support@letitrip.in</strong> with your listing ID.</p>`),
1068
- category: "technical_support",
791
+ id: "faq-auction-ending-rules",
792
+ question: "What happens when an auction ends?",
793
+ answer: html(`<p>The highest bidder wins. You'll receive a notification and the item is added to your checkout. You have 48 hours to complete payment. If you don't pay within 48 hours, the auction may be offered to the next highest bidder.</p>`),
794
+ category: "general",
1069
795
  showOnHomepage: false,
1070
796
  showInFooter: false,
1071
797
  isPinned: false,
1072
- order: 2,
798
+ order: 41,
1073
799
  priority: 7,
1074
- tags: ["listing", "rejected", "seller"],
1075
- relatedFAQs: ["faq-can-i-edit-a-listing-after-publishing"],
1076
- useSiteSettings: true,
1077
- variables: {},
1078
- stats: makeStats(1600, 72),
1079
- seo: { slug: "faq-why-was-my-listing-rejected" },
1080
- isActive: true,
1081
- createdBy: "user-admin-letitrip",
1082
- createdAt: daysAgo(79),
1083
- updatedAt: daysAgo(5),
1084
- },
1085
- {
1086
- id: "faq-how-do-i-upload-product-images",
1087
- question: "What are the image requirements for listings?",
1088
- answer: html(`<p>Image requirements for all LetItRip listings:</p><ul><li><strong>Minimum 3 photos</strong> — front, back, and at least one close-up of condition-relevant areas</li><li><strong>Format</strong>: JPG or PNG, minimum 800×800px, maximum 20MB per image</li><li><strong>Background</strong>: clean, neutral background preferred (white or grey); avoid busy backgrounds that obscure the item</li><li><strong>No watermarks or stock photos</strong> — all photos must be of the actual item you are selling</li><li><strong>Condition flaws must be photographed</strong> — any scratches, dents, creases, or missing parts must appear in at least one photo; failure to disclose is grounds for a refund and listing removal</li></ul><p>Listings with more photos (6–10) statistically sell faster and receive fewer disputes. Use natural lighting where possible.</p>`),
1089
- category: "technical_support",
1090
- showOnHomepage: false,
1091
- showInFooter: false,
1092
- isPinned: false,
1093
- order: 3,
1094
- priority: 6,
1095
- tags: ["images", "listing", "seller", "photos"],
1096
- relatedFAQs: ["faq-why-was-my-listing-rejected"],
1097
- useSiteSettings: true,
1098
- variables: {},
1099
- stats: makeStats(1300, 58),
1100
- seo: { slug: "faq-how-do-i-upload-product-images" },
800
+ tags: ["auction", "winning", "payment"],
801
+ relatedFAQs: ["faq-how-does-bidding-work"],
802
+ stats: makeStats(3100, 155),
803
+ seo: { slug: "faq-auction-ending-rules", metaTitle: "Auction Ending Rules", metaDescription: "What happens when you win a collectibles auction on LetItRip." },
1101
804
  isActive: true,
1102
805
  createdBy: "user-admin-letitrip",
1103
- createdAt: daysAgo(78),
1104
- updatedAt: daysAgo(6),
806
+ createdAt: daysAgo(100),
807
+ updatedAt: daysAgo(12),
1105
808
  },
1106
809
  {
1107
- id: "faq-why-is-my-account-suspended",
1108
- question: "Why has my account been suspended?",
1109
- answer: html(`<p>Accounts are suspended automatically or manually for the following reasons:</p><ul><li><strong>Seller</strong>: multiple confirmed counterfeit reports, 3+ non-dispatch strikes, sustained negative buyer feedback below 3.0 stars, or a chargeback ratio above platform limits</li><li><strong>Buyer</strong>: 3+ non-payment strikes on won auctions, confirmed fraudulent returns, or off-platform payment solicitation</li><li><strong>Both</strong>: KYC documents found to be fraudulent, multiple account creation, or a court or regulatory order</li></ul><p>You will receive an email explaining the suspension reason. To appeal: reply to the suspension email with your explanation and any supporting evidence. Appeals are reviewed within 5 business days. If your suspension was triggered automatically (e.g., by a fraud algorithm), many are reversed on review.</p>`),
1110
- category: "technical_support",
810
+ id: "faq-can-i-cancel-bid",
811
+ question: "Can I cancel a bid?",
812
+ answer: html(`<p>Bids are binding. Once placed, a bid cannot be cancelled except in exceptional circumstances (e.g., the seller significantly changed the listing description after your bid). Contact support if you believe your case qualifies.</p>`),
813
+ category: "general",
1111
814
  showOnHomepage: false,
1112
815
  showInFooter: false,
1113
816
  isPinned: false,
1114
- order: 4,
817
+ order: 42,
1115
818
  priority: 6,
1116
- tags: ["suspension", "account", "ban"],
1117
- relatedFAQs: ["faq-how-do-i-contact-support"],
1118
- useSiteSettings: true,
1119
- variables: {},
1120
- stats: makeStats(980, 44),
1121
- seo: { slug: "faq-why-is-my-account-suspended" },
819
+ tags: ["auction", "cancel-bid"],
820
+ relatedFAQs: ["faq-how-does-bidding-work"],
821
+ stats: makeStats(2400, 120),
822
+ seo: { slug: "faq-can-i-cancel-bid", metaTitle: "Can I Cancel a Bid?", metaDescription: "Understanding bid cancellation on LetItRip auctions." },
1122
823
  isActive: true,
1123
824
  createdBy: "user-admin-letitrip",
1124
- createdAt: daysAgo(77),
1125
- updatedAt: daysAgo(7),
825
+ createdAt: daysAgo(95),
826
+ updatedAt: daysAgo(20),
1126
827
  },
1127
828
  {
1128
- id: "faq-how-to-leave-a-review",
1129
- question: "How do I leave a review for a seller?",
1130
- answer: html(`<p>Reviews can be left after confirmed delivery. Go to My Account → Orders → find the completed order click <strong>"Leave Review"</strong>.</p><p>Review guidelines:</p><ul><li>Rate on a <strong>1–5 star scale</strong> covering item accuracy, packaging quality, and shipping speed</li><li>Write a brief title and a description of your experience</li><li>You can add up to 5 photos (great for showing item condition on arrival)</li><li>Reviews must be based on your actual purchase — reviews that are abusive, off-topic, or clearly fake will be removed</li></ul><p>Sellers can post a single public reply to any review. LetItRip does not allow sellers to request review removal except in cases of policy violation. Your review helps other collectors make informed decisions.</p>`),
1131
- category: "technical_support",
829
+ id: "faq-auction-reserve-price",
830
+ question: "What is a reserve price on auctions?",
831
+ answer: html(`<p>Some sellers set a hidden reserve price the minimum they'll accept. If bidding doesn't reach the reserve, the auction ends without a winner. You'll see "Reserve not met" during the auction. There's no way to see the reserve price, but you can ask the seller via messages if they're willing to share a hint.</p>`),
832
+ category: "general",
1132
833
  showOnHomepage: false,
1133
834
  showInFooter: false,
1134
835
  isPinned: false,
1135
- order: 5,
1136
- priority: 6,
1137
- tags: ["review", "feedback", "seller-rating"],
1138
- relatedFAQs: [],
1139
- useSiteSettings: true,
1140
- variables: {},
1141
- stats: makeStats(1500, 66),
1142
- seo: { slug: "faq-how-to-leave-a-review" },
836
+ order: 43,
837
+ priority: 5,
838
+ tags: ["auction", "reserve-price"],
839
+ relatedFAQs: ["faq-how-does-bidding-work"],
840
+ stats: makeStats(1200, 60),
841
+ seo: { slug: "faq-auction-reserve-price", metaTitle: "Auction Reserve Price", metaDescription: "What reserve prices mean on LetItRip auctions." },
1143
842
  isActive: true,
1144
843
  createdBy: "user-admin-letitrip",
1145
- createdAt: daysAgo(76),
1146
- updatedAt: daysAgo(5),
844
+ createdAt: daysAgo(50),
845
+ updatedAt: daysAgo(10),
1147
846
  },
1148
847
  {
1149
- id: "faq-can-i-edit-a-listing-after-publishing",
1150
- question: "Can I edit a listing after it has been published?",
1151
- answer: html(`<p>Yes, with restrictions:</p><ul><li><strong>Standard listings with no pending orders</strong>: price, description, images, and condition can be edited. Edits go through a quick re-review (usually within 2 hours).</li><li><strong>Listings with active bids (auctions)</strong>: <strong>material edits are not permitted</strong> once bidding has started. You may only update minor typos or add supplementary photos. Any edit that materially changes the item description (condition, contents, authenticity) after bids are placed is a policy violation and buyers may be entitled to bid retraction.</li><li><strong>Sold or completed listings</strong>: cannot be edited.</li></ul><p>Always ensure your listing is accurate and complete before publishing to avoid disputes.</p>`),
1152
- category: "technical_support",
848
+ id: "faq-auction-bid-increment",
849
+ question: "What are the minimum bid increments?",
850
+ answer: html(`<p>Bid increments are automatic and scale with the current price: ₹10 increments up to ₹500, ₹25 up to ₹2,000, ₹50 up to ₹5,000, ₹100 up to ₹20,000, and ₹500 above ₹20,000. You can always bid more than the minimum increment.</p>`),
851
+ category: "general",
1153
852
  showOnHomepage: false,
1154
853
  showInFooter: false,
1155
854
  isPinned: false,
1156
- order: 6,
1157
- priority: 6,
1158
- tags: ["listing", "edit", "seller"],
1159
- relatedFAQs: ["faq-can-i-retract-a-bid"],
1160
- useSiteSettings: true,
1161
- variables: {},
1162
- stats: makeStats(1200, 54),
1163
- seo: { slug: "faq-can-i-edit-a-listing-after-publishing" },
855
+ order: 44,
856
+ priority: 5,
857
+ tags: ["auction", "bid-increment", "pricing"],
858
+ relatedFAQs: ["faq-how-does-bidding-work"],
859
+ stats: makeStats(1000, 50),
860
+ seo: { slug: "faq-auction-bid-increment", metaTitle: "Auction Bid Increments", metaDescription: "Minimum bid increment rules on LetItRip auctions." },
1164
861
  isActive: true,
1165
862
  createdBy: "user-admin-letitrip",
1166
- createdAt: daysAgo(75),
1167
- updatedAt: daysAgo(6),
863
+ createdAt: daysAgo(45),
864
+ updatedAt: daysAgo(8),
1168
865
  },
866
+ // ── PRE-ORDERS (3) ────────────────────────────────────────────────────────
1169
867
  {
1170
- id: "faq-how-do-seller-payouts-work",
1171
- question: "How do seller payouts work on LetItRip?",
1172
- answer: html(`<p>Seller payouts are processed on a <strong>weekly cycle</strong> (every Monday for orders confirmed the previous week):</p><ol><li>Buyer confirms delivery (or 5-day auto-release triggers).</li><li>LetItRip deducts the platform fee (5%) and Razorpay processing fee (~2.36%).</li><li>The net amount is credited to your registered bank account or UPI ID.</li><li>Payout appears in My Store → Payouts with a breakdown per order.</li></ol><p>First-time sellers have a 7-day holding period after their first confirmed sale before payout is initiated — this is a fraud prevention measure and is lifted automatically after your first successful payout.</p><p>If a payout is delayed beyond 5 business days from the expected date, contact <strong>support@letitrip.in</strong> with your store ID and the affected payout period.</p>`),
1173
- category: "technical_support",
868
+ id: "faq-pre-orders-how-they-work",
869
+ question: "How do pre-orders work?",
870
+ answer: html(`<p>Pre-orders let you reserve upcoming products with a deposit (typically 20–30% of the retail price). When the product releases and ships, you pay the remaining balance. If the seller cancels the pre-order, you receive a full refund of your deposit. Pre-orders are available for upcoming trading card sets, action figure releases, and model kit drops.</p>`),
871
+ category: "general",
1174
872
  showOnHomepage: false,
1175
873
  showInFooter: false,
1176
874
  isPinned: false,
1177
- order: 7,
875
+ order: 45,
1178
876
  priority: 7,
1179
- tags: ["payout", "seller", "earnings", "bank"],
1180
- relatedFAQs: ["faq-what-are-letitrip-platform-fees", "faq-how-do-i-become-a-verified-seller"],
1181
- useSiteSettings: true,
1182
- variables: {},
1183
- stats: makeStats(2600, 122),
1184
- seo: { slug: "faq-how-do-seller-payouts-work" },
877
+ tags: ["pre-order", "deposit", "reservation"],
878
+ relatedFAQs: ["faq-pre-order-release-delay"],
879
+ stats: makeStats(2200, 110),
880
+ seo: { slug: "faq-pre-orders-how-they-work", metaTitle: "Pre-Orders on LetItRip", metaDescription: "Reserve upcoming collectibles with a deposit on LetItRip." },
1185
881
  isActive: true,
1186
882
  createdBy: "user-admin-letitrip",
1187
- createdAt: daysAgo(74),
1188
- updatedAt: daysAgo(4),
883
+ createdAt: daysAgo(82),
884
+ updatedAt: daysAgo(16),
1189
885
  },
1190
- // ══════════════════════════════════════════════════════════════════════════
1191
- // BUNDLES + PRIZE DRAWS (SB5-B — 6 FAQs)
1192
- // ══════════════════════════════════════════════════════════════════════════
1193
- // Filed under `product_information` because the schema enum doesn't carry
1194
- // a dedicated "listings" bucket. Tags identify the surface — clients can
1195
- // filter on tag instead.
1196
886
  {
1197
- id: "faq-what-is-bundle",
1198
- question: "What is a bundle on LetItRip?",
1199
- answer: html(`<p>A <strong>bundle</strong> is a curated multi-product listing 3 to 16 individual items grouped under one fixed price. Sellers use bundles to ship combos that work together: starter packs, themed sets, multi-card lots, or "buy the whole collection" deals. Each item in a bundle must be in the seller's catalogue first; bundles never invent new SKUs.</p><p>Bundles are always one of two listing kinds: <strong>standard bundles</strong> (every item ships immediately) or <strong>pre-order bundles</strong> (every item is upcoming). Auctions and prize draws cannot be bundled — the price-discovery mechanics don't compose.</p><p>When any item inside a bundle sells through another channel, the bundle automatically flips to <em>out of stock</em> — you'll never end up with a half-fulfilled bundle.</p>`),
1200
- category: "product_information",
887
+ id: "faq-pre-order-release-delay",
888
+ question: "What happens if a pre-order product is delayed?",
889
+ answer: html(`<p>Manufacturers sometimes delay release dates. The seller will update the expected ship date on the listing and you'll receive a notification. If the delay is more than 60 days past the original date, you can cancel for a full deposit refund. You are never charged the remaining balance until the product actually ships.</p>`),
890
+ category: "general",
1201
891
  showOnHomepage: false,
1202
892
  showInFooter: false,
1203
893
  isPinned: false,
1204
- order: 30,
894
+ order: 46,
1205
895
  priority: 6,
1206
- tags: ["bundle", "listings", "multi-item"],
1207
- relatedFAQs: ["faq-how-create-bundle", "faq-what-is-prize-draw"],
1208
- useSiteSettings: true,
1209
- variables: {},
1210
- stats: makeStats(0, 0),
1211
- seo: {
1212
- slug: "faq-what-is-bundle",
1213
- metaTitle: "What is a bundle? — LetItRip",
1214
- metaDescription: "Bundles group 3–16 items into one fixed-price listing. Standard or pre-order, never auctions or prize draws.",
1215
- },
896
+ tags: ["pre-order", "delay", "refund"],
897
+ relatedFAQs: ["faq-pre-orders-how-they-work"],
898
+ stats: makeStats(1100, 55),
899
+ seo: { slug: "faq-pre-order-release-delay", metaTitle: "Pre-Order Delay Policy", metaDescription: "What happens when a pre-order is delayed on LetItRip." },
1216
900
  isActive: true,
1217
901
  createdBy: "user-admin-letitrip",
1218
- createdAt: daysAgo(2),
1219
- updatedAt: daysAgo(2),
902
+ createdAt: daysAgo(60),
903
+ updatedAt: daysAgo(12),
1220
904
  },
1221
905
  {
1222
- id: "faq-how-create-bundle",
1223
- question: "How do I create a bundle?",
1224
- answer: html(`<p>From your store dashboard, open <strong>Listings → Bundles → New bundle</strong>. Steps:</p><ol><li>Title + description for the bundle.</li><li>Pick 3–16 items from your catalogue using the inline picker. All items must share the same listing type (all standard, or all pre-order).</li><li>Set the bundle price — usually lower than the sum of the individual prices.</li><li>(Optional) Set a per-customer limit if you want to cap repeat purchases.</li><li>Save as <em>Draft</em> to keep iterating, or <em>Published</em> to make it live.</li></ol><p>Once published the bundle appears at <code>/bundles/{your-slug}</code> and in the public bundle list. Every product inside the bundle automatically picks up a "In bundle: …" badge linking back to the bundle.</p>`),
1225
- category: "product_information",
906
+ id: "faq-pre-order-cancel",
907
+ question: "Can I cancel a pre-order?",
908
+ answer: html(`<p>You can cancel a pre-order any time before the seller marks it as shipped. Your deposit is refunded within 3–5 business days. Once the product ships and the remaining balance is charged, standard return policies apply.</p>`),
909
+ category: "general",
1226
910
  showOnHomepage: false,
1227
911
  showInFooter: false,
1228
912
  isPinned: false,
1229
- order: 31,
913
+ order: 47,
1230
914
  priority: 5,
1231
- tags: ["bundle", "seller", "create-listing"],
1232
- relatedFAQs: ["faq-what-is-bundle"],
1233
- useSiteSettings: true,
1234
- variables: {},
1235
- stats: makeStats(0, 0),
1236
- seo: {
1237
- slug: "faq-how-create-bundle",
1238
- metaTitle: "How to create a bundle — LetItRip seller guide",
1239
- metaDescription: "Step-by-step: pick 3–16 items, set the bundle price, publish. Standard or pre-order only.",
1240
- },
915
+ tags: ["pre-order", "cancel", "deposit-refund"],
916
+ relatedFAQs: ["faq-pre-orders-how-they-work"],
917
+ stats: makeStats(800, 40),
918
+ seo: { slug: "faq-pre-order-cancel", metaTitle: "Cancel a Pre-Order", metaDescription: "How to cancel a pre-order and get your deposit back on LetItRip." },
1241
919
  isActive: true,
1242
920
  createdBy: "user-admin-letitrip",
1243
- createdAt: daysAgo(2),
1244
- updatedAt: daysAgo(2),
921
+ createdAt: daysAgo(55),
922
+ updatedAt: daysAgo(10),
1245
923
  },
924
+ // ── ACCOUNT & SECURITY (4) ────────────────────────────────────────────────
1246
925
  {
1247
- id: "faq-what-is-prize-draw",
1248
- question: "What is a prize draw?",
1249
- answer: html(`<p>A <strong>prize draw</strong> is a single listing with a fixed pool of distinct items (called a <em>collage</em>) where each paid entry wins exactly one item from the pool at random. The seller sets the price per entry, the maximum number of entries, and a fixed reveal window during which winners discover which item they won.</p><p>Prize draws differ from raffles in that <strong>every paid entry wins</strong> the only randomness is which item from the pool you get. The pool is finite: once an item is won, it's removed for everyone else. If the pool is exhausted before all entries reveal, the remaining entries are auto-refunded.</p><p>Prize draw payments are <strong>non-refundable</strong> once the reveal window opens (subject to the pool-exhaustion fallback). You'll see an explicit consent prompt at checkout.</p>`),
1250
- category: "product_information",
926
+ id: "faq-how-to-create-account",
927
+ question: "How do I create a LetItRip account?",
928
+ answer: html(`<p>Sign up with your Google account (one-tap) or email. Google sign-up is recommended — it's faster and more secure. After sign-up, complete your profile with a display name and optional avatar. You can start browsing and buying immediately.</p>`),
929
+ category: "account_security",
1251
930
  showOnHomepage: false,
1252
931
  showInFooter: false,
1253
932
  isPinned: false,
1254
- order: 32,
933
+ order: 48,
1255
934
  priority: 7,
1256
- tags: ["prize-draw", "listings", "non-refundable"],
1257
- relatedFAQs: [
1258
- "faq-prize-draw-fairness",
1259
- "faq-prize-draw-refund",
1260
- "faq-prize-draw-reveal",
1261
- ],
1262
- useSiteSettings: true,
1263
- variables: {},
1264
- stats: makeStats(0, 0),
1265
- seo: {
1266
- slug: "faq-what-is-prize-draw",
1267
- metaTitle: "What is a prize draw? — LetItRip",
1268
- metaDescription: "Each paid entry wins one item from the seller's pool at random. Finite pool, fixed reveal window, non-refundable.",
1269
- },
935
+ tags: ["account", "sign-up", "google", "registration"],
936
+ relatedFAQs: ["faq-how-to-sell-on-letitrip"],
937
+ stats: makeStats(2600, 130),
938
+ seo: { slug: "faq-how-to-create-account", metaTitle: "Create a LetItRip Account", metaDescription: "How to sign up for a LetItRip account with Google or email." },
1270
939
  isActive: true,
1271
940
  createdBy: "user-admin-letitrip",
1272
- createdAt: daysAgo(2),
1273
- updatedAt: daysAgo(2),
941
+ createdAt: daysAgo(100),
942
+ updatedAt: daysAgo(15),
1274
943
  },
1275
944
  {
1276
- id: "faq-prize-draw-fairness",
1277
- question: "How does LetItRip make prize draws fair?",
1278
- answer: html(`<p>Two guarantees underpin every prize draw:</p><ol><li><strong>Cryptographic randomness.</strong> The winning item is selected by <code>crypto.randomInt()</code> over the current pool of unwon items at the exact moment you click <em>Reveal My Prize</em>. The seller cannot influence which item you receive.</li><li><strong>Open source RNG code.</strong> Every prize draw links to the exact Git commit of the reveal API that ran on your entry. Click <em>View RNG Source Code</em> on the prize draw detail page to inspect the code yourself.</li></ol><p>The pool is finite — once an item is won, it's removed for everyone else. If the pool is exhausted before all entries reveal (rare; usually means the seller mispriced entries vs pool size), the remaining entries are auto-refunded and notified.</p>`),
1279
- category: "product_information",
945
+ id: "faq-account-security-tips",
946
+ question: "How do I keep my account secure?",
947
+ answer: html(`<p>Use Google sign-in for the strongest security. Never share your login credentials. If you signed up with email, use a strong unique password. LetItRip will never ask for your password via email or chat. If you notice suspicious activity, go to Account Sessions to see active devices and revoke any you don't recognize.</p>`),
948
+ category: "account_security",
1280
949
  showOnHomepage: false,
1281
950
  showInFooter: false,
1282
951
  isPinned: false,
1283
- order: 33,
1284
- priority: 7,
1285
- tags: ["prize-draw", "fairness", "randomness", "rng", "open-source"],
1286
- relatedFAQs: ["faq-what-is-prize-draw", "faq-prize-draw-refund"],
1287
- useSiteSettings: true,
1288
- variables: {},
1289
- stats: makeStats(0, 0),
1290
- seo: {
1291
- slug: "faq-prize-draw-fairness",
1292
- metaTitle: "Are prize draws fair? — LetItRip RNG explained",
1293
- metaDescription: "crypto.randomInt over the live pool, source-code linked per draw. Pool exhaustion auto-refunds.",
1294
- },
952
+ order: 49,
953
+ priority: 8,
954
+ tags: ["security", "password", "sessions", "account"],
955
+ relatedFAQs: ["faq-how-to-create-account"],
956
+ stats: makeStats(1500, 75),
957
+ seo: { slug: "faq-account-security-tips", metaTitle: "Account Security on LetItRip", metaDescription: "Tips to keep your LetItRip account secure." },
1295
958
  isActive: true,
1296
959
  createdBy: "user-admin-letitrip",
1297
- createdAt: daysAgo(2),
1298
- updatedAt: daysAgo(2),
960
+ createdAt: daysAgo(80),
961
+ updatedAt: daysAgo(10),
1299
962
  },
1300
963
  {
1301
- id: "faq-prize-draw-refund",
1302
- question: "Can I get a refund on a prize draw entry?",
1303
- answer: html(`<p>Prize draw entries are <strong>non-refundable once the reveal window opens</strong>. You'll see an explicit consent dialog at checkout — your "Enter Draw" click is the binding action.</p><p>The exceptions, all automatic:</p><ul><li><strong>Pool exhausted before you reveal.</strong> If every item in the pool is won before you click <em>Reveal My Prize</em>, your entry is auto-refunded in full and you're notified.</li><li><strong>Reveal deadline missed.</strong> If you don't reveal within the deadline (default 3 days after the reveal window opens), the system auto-refunds and the item returns to the pool.</li><li><strong>Draw cancelled by the seller.</strong> Sellers may cancel a draw before the reveal window opens — every paid entry is auto-refunded.</li></ul><p>Refunds reverse via Razorpay to your original payment method within 5–7 business days (UPI: 1–2 business days).</p>`),
1304
- category: "product_information",
964
+ id: "faq-delete-my-account",
965
+ question: "Can I delete my LetItRip account?",
966
+ answer: html(`<p>Yes go to Account Settings Delete Account. This permanently removes your profile, addresses, and browsing history. Open orders will still be fulfilled. If you're a seller with active listings, you must close your store first. Account deletion is irreversible.</p>`),
967
+ category: "account_security",
1305
968
  showOnHomepage: false,
1306
969
  showInFooter: false,
1307
970
  isPinned: false,
1308
- order: 34,
1309
- priority: 7,
1310
- tags: ["prize-draw", "refund", "non-refundable", "policy"],
1311
- relatedFAQs: ["faq-what-is-prize-draw", "faq-prize-draw-reveal"],
1312
- useSiteSettings: true,
1313
- variables: {},
1314
- stats: makeStats(0, 0),
1315
- seo: {
1316
- slug: "faq-prize-draw-refund",
1317
- metaTitle: "Prize draw refund policy — LetItRip",
1318
- metaDescription: "Non-refundable once reveal opens. Pool exhaustion, missed deadlines, and cancellations auto-refund.",
1319
- },
971
+ order: 50,
972
+ priority: 5,
973
+ tags: ["delete-account", "privacy", "data"],
974
+ relatedFAQs: ["faq-account-security-tips"],
975
+ stats: makeStats(600, 30),
976
+ seo: { slug: "faq-delete-my-account", metaTitle: "Delete Your LetItRip Account", metaDescription: "How to permanently delete your LetItRip account." },
1320
977
  isActive: true,
1321
978
  createdBy: "user-admin-letitrip",
1322
- createdAt: daysAgo(2),
1323
- updatedAt: daysAgo(2),
979
+ createdAt: daysAgo(50),
980
+ updatedAt: daysAgo(20),
1324
981
  },
1325
982
  {
1326
- id: "faq-prize-draw-reveal",
1327
- question: "How does prize draw reveal work?",
1328
- answer: html(`<p>After you pay for a prize draw entry, the system places your order. You then wait for the reveal to do anything:</p><ol><li><strong>Reveal window opens.</strong> The seller publishes a fixed window (e.g. "Reveal opens June 15, closes June 22"). You get an in-app + email notification when it opens.</li><li><strong>Click "Reveal My Prize".</strong> On your order detail page, click <em>Reveal My Prize</em>. The system picks one of the still-available items at random, marks it as won, and shows you the result with a card-flip animation.</li><li><strong>Reveal deadline.</strong> You have until the deadline (default 3 days after window open, capped at window close) to reveal. Miss the deadline → auto-refund + item goes back into the pool.</li><li><strong>Seller ships.</strong> The seller dispatches your revealed item within their stated timeline. Tracking appears on the order detail page as usual.</li></ol><p>You can re-open the order detail page to see your won item any time — the reveal is permanent.</p>`),
1329
- category: "product_information",
983
+ id: "faq-notification-preferences",
984
+ question: "How do I manage my notifications?",
985
+ answer: html(`<p>Go to Account Settings Notification Preferences. You can toggle each notification type (order updates, auction alerts, price drops, community events) per channel in-app, email, and WhatsApp. High-priority notifications (order shipped, auction won) are always sent in-app and cannot be fully disabled.</p>`),
986
+ category: "account_security",
1330
987
  showOnHomepage: false,
1331
988
  showInFooter: false,
1332
989
  isPinned: false,
1333
- order: 35,
1334
- priority: 6,
1335
- tags: ["prize-draw", "reveal", "deadline", "shipping"],
1336
- relatedFAQs: ["faq-what-is-prize-draw", "faq-prize-draw-refund"],
1337
- useSiteSettings: true,
1338
- variables: {},
1339
- stats: makeStats(0, 0),
1340
- seo: {
1341
- slug: "faq-prize-draw-reveal",
1342
- metaTitle: "How to reveal a prize draw entry — LetItRip",
1343
- metaDescription: "Reveal window opens, click 'Reveal My Prize', seller ships. Miss the deadline → auto-refund.",
1344
- },
1345
- isActive: true,
1346
- createdBy: "user-admin-letitrip",
1347
- createdAt: daysAgo(2),
1348
- updatedAt: daysAgo(2),
1349
- },
1350
- // ══════════════════════════════════════════════════════════════════════════
1351
- // SCAM AWARENESS (12 FAQs)
1352
- // ══════════════════════════════════════════════════════════════════════════
1353
- {
1354
- id: "faq-how-to-spot-fake-seller",
1355
- question: "How do I spot a fake or scam seller on LetItRip?",
1356
- answer: html(`<p>Verified LetItRip sellers have a green <strong>Verified</strong> badge on their store page. Before buying, check for:</p><ul><li><strong>No badge or pending badge</strong> — the seller has not completed verification.</li><li><strong>Zero reviews or suspiciously perfect ratings</strong> — be cautious if every review is 5-star and very recent.</li><li><strong>Prices too good to be true</strong> — PSA 10 Charizard Base Set does not sell for ₹1,000.</li><li><strong>Urgency tactics</strong> — "Only 1 left, buy in 5 minutes or it's gone" is a classic pressure technique.</li><li><strong>Requests to pay outside LetItRip</strong> — any seller asking for UPI/bank transfer outside the platform is violating our Terms and likely attempting fraud.</li></ul><p>When in doubt, message the seller through LetItRip's secure messaging, check their store history, and read recent reviews carefully.</p>`),
1357
- category: "scam_awareness",
1358
- showOnHomepage: false,
1359
- showInFooter: false,
1360
- isPinned: true,
1361
- order: 1,
1362
- priority: 10,
1363
- tags: ["scam", "fake seller", "verification", "trust"],
1364
- relatedFAQs: ["faq-off-platform-payment-scam", "faq-counterfeit-collectible"],
1365
- useSiteSettings: true,
1366
- variables: {},
1367
- stats: makeStats(3200, 290),
1368
- seo: {
1369
- slug: "faq-how-to-spot-fake-seller",
1370
- metaTitle: "How to spot a fake seller on LetItRip",
1371
- metaDescription: "Signs of a scam seller: no verification badge, suspiciously perfect reviews, prices too low, off-platform payment requests.",
1372
- },
1373
- isActive: true,
1374
- createdBy: "user-admin-letitrip",
1375
- createdAt: daysAgo(30),
1376
- updatedAt: daysAgo(5),
1377
- },
1378
- {
1379
- id: "faq-off-platform-payment-scam",
1380
- question: "A seller asked me to pay via UPI or bank transfer outside LetItRip — is that safe?",
1381
- answer: html(`<p><strong>No. Never pay outside LetItRip.</strong> This is the most common scam on collectibles platforms.</p><p>When you pay through LetItRip, Razorpay holds your money in escrow and only releases it to the seller after you confirm delivery (or after 5 days without a dispute). You are protected.</p><p>If you pay via UPI, NEFT, or any method outside the platform:</p><ul><li>LetItRip has <strong>no visibility</strong> into the transaction.</li><li>We <strong>cannot refund</strong> or mediate — we are not party to that transaction.</li><li>You have no buyer protection.</li></ul><p><strong>What to do:</strong> Report the seller immediately via the "Report seller" button on their store page, or email us at trust@letitrip.in. We will investigate and suspend the seller if confirmed.</p><p>Asking buyers to pay off-platform is an <strong>immediate permanent ban</strong> on LetItRip.</p>`),
1382
- category: "scam_awareness",
1383
- showOnHomepage: false,
1384
- showInFooter: false,
1385
- isPinned: true,
1386
- order: 2,
1387
- priority: 10,
1388
- tags: ["scam", "UPI", "off-platform", "payment", "fraud"],
1389
- relatedFAQs: ["faq-how-to-spot-fake-seller", "faq-how-to-report-scam"],
1390
- useSiteSettings: true,
1391
- variables: {},
1392
- stats: makeStats(5100, 480),
1393
- seo: {
1394
- slug: "faq-off-platform-payment-scam",
1395
- metaTitle: "Off-platform UPI payment scam — LetItRip",
1396
- metaDescription: "Never pay via UPI or bank transfer outside LetItRip. Escrow only protects on-platform payments.",
1397
- },
990
+ order: 51,
991
+ priority: 5,
992
+ tags: ["notifications", "settings", "preferences", "whatsapp", "email"],
993
+ relatedFAQs: [],
994
+ stats: makeStats(700, 35),
995
+ seo: { slug: "faq-notification-preferences", metaTitle: "Notification Preferences", metaDescription: "Manage your notification preferences on LetItRip." },
1398
996
  isActive: true,
1399
997
  createdBy: "user-admin-letitrip",
1400
998
  createdAt: daysAgo(30),
1401
999
  updatedAt: daysAgo(5),
1402
1000
  },
1001
+ // ── SCAM AWARENESS (4) ────────────────────────────────────────────────────
1403
1002
  {
1404
- id: "faq-counterfeit-collectible",
1405
- question: "What if I receive a counterfeit or fake collectible?",
1406
- answer: html(`<p>LetItRip has a strict <strong>zero-tolerance counterfeit policy</strong>. If you suspect your item is fake:</p><ol><li><strong>Do not confirm delivery</strong> you have 5 days after the carrier marks delivered to dispute.</li><li>Open a dispute via the Order Detail page: "I have a problem with this order" → "Item is fake or counterfeit".</li><li>Upload clear photos of the item, packaging, and any authentication details (holograms, print quality, card stock, etc.).</li><li>Our Trust team will review within 48 hours.</li></ol><p><strong>If confirmed counterfeit:</strong></p><ul><li>You receive a <strong>full refund</strong> including shipping.</li><li>The seller's listing is taken down immediately.</li><li>The seller's account is flagged for review repeated violations result in permanent ban.</li></ul><p>For PSA/BGS/CGC graded slabs: we verify the slab cert number against the respective grading company's public database before closing the dispute in your favor.</p>`),
1407
- category: "scam_awareness",
1408
- showOnHomepage: false,
1409
- showInFooter: false,
1410
- isPinned: false,
1411
- order: 3,
1412
- priority: 9,
1413
- tags: ["counterfeit", "fake", "refund", "dispute", "graded"],
1414
- relatedFAQs: ["faq-how-to-spot-fake-seller", "faq-how-to-report-scam"],
1415
- useSiteSettings: true,
1416
- variables: {},
1417
- stats: makeStats(2800, 260),
1418
- seo: {
1419
- slug: "faq-counterfeit-collectible",
1420
- metaTitle: "Received a counterfeit collectible? — LetItRip",
1421
- metaDescription: "Open a dispute within 5 days, upload photos. Confirmed fakes get a full refund and seller is banned.",
1422
- },
1423
- isActive: true,
1424
- createdBy: "user-admin-letitrip",
1425
- createdAt: daysAgo(28),
1426
- updatedAt: daysAgo(4),
1427
- },
1428
- {
1429
- id: "faq-how-to-report-scam",
1430
- question: "How do I report a scammer or suspicious account on LetItRip?",
1431
- answer: html(`<p>You can report a suspicious account through any of these channels:</p><ul><li><strong>Store page</strong> — click the three-dot menu (⋮) on any store page → "Report this store".</li><li><strong>Order dispute</strong> — if you already placed an order, use the dispute flow in Order Details.</li><li><strong>Scam Registry</strong> — visit <a href="/scams/report">/scams/report</a> to submit a detailed scam report including phone numbers, UPI IDs, and a description of what happened. This helps warn other buyers.</li><li><strong>Email</strong> — trust@letitrip.in for urgent cases.</li></ul><p>When reporting, include:</p><ul><li>The seller's LetItRip store name or URL</li><li>Any phone numbers, UPI IDs, or social media handles used in the scam</li><li>Screenshots of conversations (especially off-platform payment requests)</li><li>Order ID if a transaction was involved</li></ul><p>We review all scam reports within 24–48 hours. Reports go directly to our Trust & Safety team.</p>`),
1432
- category: "scam_awareness",
1433
- showOnHomepage: false,
1434
- showInFooter: false,
1435
- isPinned: true,
1436
- order: 4,
1437
- priority: 9,
1438
- tags: ["report", "scam", "trust & safety", "fraud"],
1439
- relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-spot-fake-seller"],
1440
- useSiteSettings: true,
1441
- variables: {},
1442
- stats: makeStats(1900, 180),
1443
- seo: {
1444
- slug: "faq-how-to-report-scam",
1445
- metaTitle: "How to report a scammer on LetItRip",
1446
- metaDescription: "Report scammers via the store page, order dispute, scam registry, or trust@letitrip.in.",
1447
- },
1448
- isActive: true,
1449
- createdBy: "user-admin-letitrip",
1450
- createdAt: daysAgo(28),
1451
- updatedAt: daysAgo(4),
1452
- },
1453
- {
1454
- id: "faq-phishing-fake-letitrip",
1455
- question: "I received a message claiming to be LetItRip asking for my password or OTP — is it real?",
1456
- answer: html(`<p><strong>No. LetItRip will never ask for your password, OTP, or payment details via WhatsApp, SMS, or email.</strong></p><p>Common phishing tactics targeting collectibles buyers:</p><ul><li>Fake "LetItRip support" WhatsApp numbers asking to "verify your order" via an OTP.</li><li>SMS links to fake login pages that steal your credentials.</li><li>Emails claiming your account will be suspended unless you click a link and re-enter your card number.</li></ul><p><strong>What LetItRip actually sends:</strong></p><ul><li>Order confirmation and shipping emails from noreply@letitrip.in.</li><li>OTPs for login — we never ask you to read the OTP back to anyone.</li><li>We never contact you via personal WhatsApp or unofficial numbers.</li></ul><p>If you received a suspicious message, do not click any links. Report the number/email to trust@letitrip.in and change your LetItRip password immediately if you've already entered credentials on an unknown site.</p>`),
1457
- category: "scam_awareness",
1458
- showOnHomepage: false,
1459
- showInFooter: false,
1460
- isPinned: false,
1461
- order: 5,
1462
- priority: 8,
1463
- tags: ["phishing", "OTP", "password", "impersonation", "WhatsApp"],
1464
- relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-report-scam"],
1465
- useSiteSettings: true,
1466
- variables: {},
1467
- stats: makeStats(2200, 200),
1468
- seo: {
1469
- slug: "faq-phishing-fake-letitrip",
1470
- metaTitle: "Fake LetItRip messages asking for OTP or password",
1471
- metaDescription: "LetItRip never asks for OTPs or passwords via WhatsApp or SMS. These are phishing scams.",
1472
- },
1473
- isActive: true,
1474
- createdBy: "user-admin-letitrip",
1475
- createdAt: daysAgo(25),
1476
- updatedAt: daysAgo(3),
1477
- },
1478
- {
1479
- id: "faq-advance-payment-scam",
1480
- question: "A seller asked me to pay an 'advance' or 'booking amount' outside the order system — is that legitimate?",
1481
- answer: html(`<p><strong>No. LetItRip does not have an "advance" or "booking amount" system.</strong> This is a well-known scam pattern in the Indian collectibles market.</p><p>How it works: a scammer (posing as a seller) messages you about a rare item, asks for a 20–30% advance via UPI to "hold" it, and then disappears — or demands more money before shipping.</p><p><strong>If a seller contacts you outside LetItRip</strong> (Instagram DM, WhatsApp, Telegram) and asks for an advance to hold an item:</p><ul><li>The item may not exist.</li><li>You have no recourse once you transfer money.</li><li>LetItRip's escrow and buyer protection does NOT apply to off-platform transactions.</li></ul><p>Legitimate pre-orders on LetItRip are handled through the Pre-Orders section — all payments go through Razorpay and are fully protected. If a seller is asking you to deviate from this, report them immediately.</p>`),
1482
- category: "scam_awareness",
1483
- showOnHomepage: false,
1484
- showInFooter: false,
1485
- isPinned: false,
1486
- order: 6,
1487
- priority: 8,
1488
- tags: ["advance payment", "booking amount", "pre-order scam", "fraud"],
1489
- relatedFAQs: ["faq-off-platform-payment-scam", "faq-how-to-report-scam"],
1490
- useSiteSettings: true,
1491
- variables: {},
1492
- stats: makeStats(1600, 150),
1493
- seo: {
1494
- slug: "faq-advance-payment-scam",
1495
- metaTitle: "Advance payment / booking amount scam — LetItRip",
1496
- metaDescription: "LetItRip has no advance or booking system. Sellers asking for off-platform advances are scammers.",
1497
- },
1498
- isActive: true,
1499
- createdBy: "user-admin-letitrip",
1500
- createdAt: daysAgo(25),
1501
- updatedAt: daysAgo(3),
1502
- },
1503
- {
1504
- id: "faq-graded-slab-scam",
1505
- question: "How do I verify a PSA/BGS/CGC graded card is genuine?",
1506
- answer: html(`<p>Graded slabs are a prime target for forgery. Before buying, always verify independently:</p><ul><li><strong>PSA</strong> — visit <a href="https://www.psacard.com/cert" target="_blank" rel="noopener noreferrer">psacard.com/cert</a> and enter the cert number visible on the label.</li><li><strong>BGS (Beckett)</strong> — visit <a href="https://www.beckett.com/grading" target="_blank" rel="noopener noreferrer">beckett.com/grading</a> → Cert Verification.</li><li><strong>CGC</strong> — visit <a href="https://www.cgccards.com/certlookup/" target="_blank" rel="noopener noreferrer">cgccards.com/certlookup</a>.</li></ul><p>Common signs of a fake slab:</p><ul><li>Cert number does not appear in the grading company's database.</li><li>Label font, hologram, or case seam looks slightly off compared to genuine slabs.</li><li>Seller refuses to show a clear close-up of the cert number label.</li></ul><p>Ask the seller to share a close-up photo of the label before buying. If the cert doesn't verify, do not purchase, and report the listing via the "Report listing" button.</p>`),
1507
- category: "scam_awareness",
1508
- showOnHomepage: false,
1509
- showInFooter: false,
1510
- isPinned: false,
1511
- order: 7,
1512
- priority: 7,
1513
- tags: ["PSA", "BGS", "CGC", "graded", "cert verification", "fake slab"],
1514
- relatedFAQs: ["faq-counterfeit-collectible", "faq-how-to-spot-fake-seller"],
1515
- useSiteSettings: true,
1516
- variables: {},
1517
- stats: makeStats(3400, 310),
1518
- seo: {
1519
- slug: "faq-graded-slab-scam",
1520
- metaTitle: "Verify PSA / BGS / CGC graded card is genuine — LetItRip",
1521
- metaDescription: "Always verify the cert number at psacard.com, beckett.com, or cgccards.com before buying a graded slab.",
1522
- },
1523
- isActive: true,
1524
- createdBy: "user-admin-letitrip",
1525
- createdAt: daysAgo(22),
1526
- updatedAt: daysAgo(2),
1527
- },
1528
- {
1529
- id: "faq-social-media-seller-scam",
1530
- question: "I found a LetItRip seller on Instagram. Can I buy from them directly?",
1531
- answer: html(`<p><strong>Always buy through LetItRip — never through DMs, Instagram, or WhatsApp links.</strong></p><p>Many LetItRip sellers promote their stores on social media, which is perfectly fine. But the moment a seller asks you to complete a transaction outside LetItRip (even if they show you their LetItRip store as "proof"), you lose all buyer protection:</p><ul><li>No escrow — money goes directly to them.</li><li>No dispute mediation — LetItRip cannot intervene.</li><li>No refund guarantee.</li></ul><p>The correct flow: find the seller's official LetItRip store via their bio link or at letitrip.in/stores, and complete the purchase through the platform. If a seller's "LetItRip link" leads to a site that looks different from letitrip.in, it may be a phishing clone — verify the URL is exactly <strong>letitrip.in</strong> or <strong>www.letitrip.in</strong>.</p>`),
1532
- category: "scam_awareness",
1533
- showOnHomepage: false,
1534
- showInFooter: false,
1535
- isPinned: false,
1536
- order: 8,
1537
- priority: 7,
1538
- tags: ["Instagram", "social media", "DM", "off-platform", "fraud"],
1539
- relatedFAQs: ["faq-off-platform-payment-scam", "faq-phishing-fake-letitrip"],
1540
- useSiteSettings: true,
1541
- variables: {},
1542
- stats: makeStats(1800, 165),
1543
- seo: {
1544
- slug: "faq-social-media-seller-scam",
1545
- metaTitle: "Buying from LetItRip sellers on Instagram — safe?",
1546
- metaDescription: "Always complete purchases on letitrip.in. Social media DM sales bypass buyer protection.",
1547
- },
1548
- isActive: true,
1549
- createdBy: "user-admin-letitrip",
1550
- createdAt: daysAgo(20),
1551
- updatedAt: daysAgo(2),
1552
- },
1553
- {
1554
- id: "faq-scam-registry",
1555
- question: "What is the LetItRip Scam Registry?",
1556
- answer: html(`<p>The <strong>LetItRip Scam Registry</strong> is a publicly searchable database of phone numbers, UPI IDs, and display names associated with confirmed or reported collectibles scams in India.</p><p><strong>What's in the registry:</strong></p><ul><li>Phone numbers and UPI IDs reported by buyers and verified by our Trust team.</li><li>The type of scam (advance payment, fake listing, counterfeit slab, etc.).</li><li>Verification status: <em>pending review</em>, <em>verified</em>, or <em>rejected</em>.</li></ul><p><strong>How to use it:</strong> Before transferring money to any individual for a collectible — even outside LetItRip — search their phone number or UPI ID in the registry at <a href="/scams">/scams</a>. A verified hit is a strong warning to walk away.</p><p><strong>How to submit:</strong> Use the <a href="/scams/report">/scams/report</a> form. Provide as much detail as possible — more evidence means faster verification.</p><p>The registry is maintained by LetItRip's Trust & Safety team and is reviewed daily.</p>`),
1003
+ id: "faq-spot-a-scam-listing",
1004
+ question: "How do I spot a scam listing?",
1005
+ answer: html(`<p>Red flags: price too good to be true, stock photos instead of actual product photos, brand-new account with no reviews, pressure to pay outside LetItRip ("DM me on WhatsApp for discount"), and vague descriptions. LetItRip's verified seller program eliminates most scams, but always check the seller's reviews and store age before high-value purchases.</p>`),
1557
1006
  category: "scam_awareness",
1558
1007
  showOnHomepage: false,
1559
1008
  showInFooter: true,
1560
1009
  isPinned: false,
1561
- order: 9,
1010
+ order: 52,
1562
1011
  priority: 8,
1563
- tags: ["scam registry", "phone number", "UPI", "trust", "database"],
1564
- relatedFAQs: ["faq-how-to-report-scam", "faq-how-to-spot-fake-seller"],
1565
- useSiteSettings: true,
1566
- variables: {},
1567
- stats: makeStats(2600, 240),
1568
- seo: {
1569
- slug: "faq-scam-registry",
1570
- metaTitle: "LetItRip Scam Registry — search reported scammers",
1571
- metaDescription: "Search phone numbers and UPI IDs in the LetItRip Scam Registry to check if a collectibles seller has been reported.",
1572
- },
1012
+ tags: ["scam", "fraud", "red-flags", "safety"],
1013
+ relatedFAQs: ["faq-report-a-scammer", "faq-counterfeit-guarantee"],
1014
+ stats: makeStats(2800, 140),
1015
+ seo: { slug: "faq-spot-a-scam-listing", metaTitle: "Spot a Scam Listing", metaDescription: "How to identify scam listings on collectibles marketplaces." },
1573
1016
  isActive: true,
1574
1017
  createdBy: "user-admin-letitrip",
1575
- createdAt: daysAgo(18),
1576
- updatedAt: daysAgo(1),
1018
+ createdAt: daysAgo(70),
1019
+ updatedAt: daysAgo(8),
1577
1020
  },
1578
1021
  {
1579
- id: "faq-buyer-protection-limits",
1580
- question: "Does LetItRip buyer protection cover all purchases?",
1581
- answer: html(`<p>LetItRip buyer protection covers <strong>all purchases made through the platform</strong> — standard products, auctions, and pre-orders. Here's what's covered and what isn't:</p><p><strong>Covered:</strong></p><ul><li>Item not received within the stated shipping window.</li><li>Item significantly not as described (wrong item, wrong grade, wrong condition).</li><li>Confirmed counterfeit or fake item.</li><li>Seller cancels after payment.</li></ul><p><strong>Not covered:</strong></p><ul><li>Purchases made outside LetItRip (UPI transfers, social media DMs, etc.).</li><li>Prize draw results the randomness of draws is not a dispute ground.</li><li>Buyer's remorse changed your mind after delivery.</li><li>Damage caused by the buyer after delivery.</li><li>Disputes raised after the 5-day post-delivery window (unless extended by a pending dispute).</li></ul><p>To ensure full protection, always: pay through LetItRip, inspect your item within 5 days of delivery, and open a dispute <em>before</em> confirming delivery if something is wrong.</p>`),
1022
+ id: "faq-report-a-scammer",
1023
+ question: "How do I report a scammer?",
1024
+ answer: html(`<p>Click the "Report" button on any listing or store page. Select the issue type (counterfeit, misleading description, off-platform payment request, etc.) and provide evidence. Our moderation team reviews reports within 24 hours. Confirmed scammers are permanently banned and added to our public scam registry.</p>`),
1582
1025
  category: "scam_awareness",
1583
1026
  showOnHomepage: false,
1584
1027
  showInFooter: false,
1585
1028
  isPinned: false,
1586
- order: 10,
1029
+ order: 53,
1587
1030
  priority: 7,
1588
- tags: ["buyer protection", "escrow", "dispute", "refund", "coverage"],
1589
- relatedFAQs: ["faq-counterfeit-collectible", "faq-off-platform-payment-scam"],
1590
- useSiteSettings: true,
1591
- variables: {},
1592
- stats: makeStats(4100, 380),
1593
- seo: {
1594
- slug: "faq-buyer-protection-limits",
1595
- metaTitle: "What does LetItRip buyer protection cover?",
1596
- metaDescription: "Buyer protection covers on-platform purchases. Off-platform payments, prize draw results, and buyer's remorse are excluded.",
1597
- },
1031
+ tags: ["report", "scammer", "moderation"],
1032
+ relatedFAQs: ["faq-spot-a-scam-listing"],
1033
+ stats: makeStats(1800, 90),
1034
+ seo: { slug: "faq-report-a-scammer", metaTitle: "Report a Scammer", metaDescription: "How to report a scammer on LetItRip." },
1598
1035
  isActive: true,
1599
1036
  createdBy: "user-admin-letitrip",
1600
- createdAt: daysAgo(15),
1601
- updatedAt: daysAgo(1),
1037
+ createdAt: daysAgo(65),
1038
+ updatedAt: daysAgo(10),
1602
1039
  },
1603
1040
  {
1604
- id: "faq-scam-types-collectibles",
1605
- question: "What are the most common collectibles scams in India?",
1606
- answer: html(`<p>Based on reports to our Trust team, these are the most common scam patterns targeting Indian collectibles buyers:</p><ol><li><strong>Advance payment / "hold my item"</strong> seller asks for partial payment via UPI to hold a rare item, then ghosts or demands more.</li><li><strong>Fake graded slabs</strong> counterfeit PSA/BGS slabs with non-existent cert numbers, sold at below-market prices.</li><li><strong>Wrong item shipped</strong> a high-value item is listed, but a cheap substitute is shipped inside the same packaging.</li><li><strong>Photo stolen from legitimate seller</strong> scammer uses another seller's photos to create a fake listing on social media, collects payment, ships nothing.</li><li><strong>Phishing via "LetItRip support"</strong> — fake support agent asks for OTP to "resolve a payment issue".</li><li><strong>Post-trade regret scam</strong> — buyer receives item, falsely claims it's fake to get a refund AND keep the item.</li><li><strong>Prize draw manipulation claims</strong> — fake screenshots claiming a specific user "won" to pressure sellers into shipping without proper verification.</li></ol><p>The best defense: buy exclusively through LetItRip, pay through Razorpay, and never share OTPs or passwords with anyone.</p>`),
1041
+ id: "faq-off-platform-payment-warning",
1042
+ question: "Should I ever pay outside of LetItRip?",
1043
+ answer: html(`<p><strong>Never.</strong> Any seller asking you to pay via UPI, bank transfer, or any method outside of LetItRip checkout is violating our terms. Off-platform payments have zero buyer protectionno escrow, no dispute mediation, no refund guarantee. Report the seller immediately.</p>`),
1607
1044
  category: "scam_awareness",
1608
1045
  showOnHomepage: false,
1609
1046
  showInFooter: false,
1610
- isPinned: false,
1611
- order: 11,
1612
- priority: 9,
1613
- tags: ["scam types", "advance payment", "fake PSA", "India", "collectibles"],
1614
- relatedFAQs: ["faq-how-to-spot-fake-seller", "faq-graded-slab-scam", "faq-scam-registry"],
1615
- useSiteSettings: true,
1616
- variables: {},
1617
- stats: makeStats(5800, 530),
1618
- seo: {
1619
- slug: "faq-scam-types-collectibles",
1620
- metaTitle: "Common collectibles scams in India — LetItRip guide",
1621
- metaDescription: "7 common scam patterns: advance payments, fake graded slabs, wrong item shipped, phishing, and more.",
1622
- },
1047
+ isPinned: true,
1048
+ order: 54,
1049
+ priority: 10,
1050
+ tags: ["off-platform", "payment", "safety", "warning"],
1051
+ relatedFAQs: ["faq-spot-a-scam-listing", "faq-what-is-escrow"],
1052
+ stats: makeStats(3200, 160),
1053
+ seo: { slug: "faq-off-platform-payment-warning", metaTitle: "Never Pay Off-Platform", metaDescription: "Why you should never pay outside of LetItRip's secure checkout." },
1623
1054
  isActive: true,
1624
1055
  createdBy: "user-admin-letitrip",
1625
- createdAt: daysAgo(12),
1626
- updatedAt: daysAgo(1),
1056
+ createdAt: daysAgo(60),
1057
+ updatedAt: daysAgo(5),
1627
1058
  },
1628
1059
  {
1629
- id: "faq-seller-impersonation",
1630
- question: "Someone is impersonating a legitimate LetItRip seller — what should I do?",
1631
- answer: html(`<p>Seller impersonation — creating a fake account or social media profile mimicking a real LetItRip store is one of the most sophisticated scams in the collectibles space.</p><p><strong>How to verify you're talking to the real seller:</strong></p><ul><li>The real seller's profile is at letitrip.in/stores/<em>their-store-slug</em>. Check the URL carefully.</li><li>Message the seller through LetItRip's built-in messaging system (not WhatsApp or Instagram).</li><li>Legitimate sellers will never ask you to move the conversation off-platform.</li></ul><p><strong>If you suspect impersonation:</strong></p><ol><li>Do not send any money.</li><li>Screenshot the impersonator's profile/conversation.</li><li>Report to trust@letitrip.in with subject "Seller impersonation — [store name]".</li><li>Warn the real seller by messaging them via their official LetItRip store page.</li></ol><p>We take impersonation reports seriously and will work with platforms (Instagram, WhatsApp) to have fake accounts removed where possible.</p>`),
1632
- category: "scam_awareness",
1060
+ id: "faq-community-events",
1061
+ question: "What community events does LetItRip run?",
1062
+ answer: html(`<p>LetItRip runs regular community events: <strong>Polls</strong> (vote on upcoming features), <strong>Sales</strong> (platform-wide discount events), <strong>Raffles</strong> (win rare collectibles), <strong>Spin Wheels</strong> (instant coupon prizes), and <strong>Surveys</strong> (share feedback, earn rewards). Check the Events page for current and upcoming events.</p>`),
1063
+ category: "general",
1633
1064
  showOnHomepage: false,
1634
1065
  showInFooter: false,
1635
1066
  isPinned: false,
1636
- order: 12,
1637
- priority: 8,
1638
- tags: ["impersonation", "fake account", "social media", "trust"],
1639
- relatedFAQs: ["faq-social-media-seller-scam", "faq-how-to-report-scam"],
1640
- useSiteSettings: true,
1641
- variables: {},
1642
- stats: makeStats(1400, 130),
1643
- seo: {
1644
- slug: "faq-seller-impersonation",
1645
- metaTitle: "Seller impersonation scam — LetItRip",
1646
- metaDescription: "How to detect and report a fake account impersonating a real LetItRip seller.",
1647
- },
1067
+ order: 55,
1068
+ priority: 6,
1069
+ tags: ["events", "community", "raffle", "poll", "spin-wheel"],
1070
+ relatedFAQs: ["faq-prize-draws-how-they-work"],
1071
+ stats: makeStats(1400, 70),
1072
+ seo: { slug: "faq-community-events", metaTitle: "Community Events on LetItRip", metaDescription: "Polls, raffles, spin wheels, and sales events on LetItRip." },
1648
1073
  isActive: true,
1649
1074
  createdBy: "user-admin-letitrip",
1650
- createdAt: daysAgo(10),
1651
- updatedAt: daysAgo(1),
1075
+ createdAt: daysAgo(40),
1076
+ updatedAt: daysAgo(6),
1652
1077
  },
1653
1078
  ];