-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.json
More file actions
1802 lines (1802 loc) · 64.8 KB
/
products.json
File metadata and controls
1802 lines (1802 loc) · 64.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 1,
"product_name": "Wireless Mouse",
"category": "Computer Accessories",
"brand": "LogiTech",
"description": "Ergonomic 2.4GHz wireless mouse designed for laptops and PCs",
"specifications": "Connectivity: 2.4GHz wireless; DPI: 800/1200/1600; Battery Life: 12 months; Color: Black",
"features": "Ergonomic design, Silent clicks, Adjustable DPI, USB nano receiver",
"price": 12.99,
"stock": 150,
"warranty": "1 year limited"
},
{
"id": 2,
"product_name": "Gaming Keyboard",
"category": "Computer Accessories",
"brand": "Razer",
"description": "RGB backlit mechanical keyboard with blue switches ideal for gaming",
"specifications": "Switch Type: Blue mechanical; Backlight: RGB; Connection: USB wired; Key Rollover: 100% anti-ghosting",
"features": "Customizable RGB lighting, Durable keycaps, Gaming mode, Ergonomic wrist rest",
"price": 45.5,
"stock": 100,
"warranty": "2 years manufacturer"
},
{
"id": 3,
"product_name": "Office Chair",
"category": "Furniture",
"brand": "Ikea",
"description": "Adjustable mesh chair with lumbar support for office use",
"specifications": "Material: Mesh; Adjustable Height: 45-55cm; Weight Capacity: 120kg; Color: Black",
"features": "Lumbar support, Breathable mesh, 360\u00b0 swivel, Height adjustable",
"price": 89.99,
"stock": 75,
"warranty": "5 years limited"
},
{
"id": 4,
"product_name": "Water Bottle",
"category": "Kitchen & Dining",
"brand": "Nalgene",
"description": "Stainless steel insulated 1L bottle keeping drinks hot or cold",
"specifications": "Capacity: 1L; Material: Stainless Steel; Insulation: Double-wall vacuum; Color: Silver",
"features": "Leak-proof, Keeps drinks hot/cold for 12 hours, BPA-free",
"price": 15.49,
"stock": 200,
"warranty": "1 year limited"
},
{
"id": 5,
"product_name": "Smartphone",
"category": "Electronics",
"brand": "Samsung",
"description": "6.5-inch Android phone with 128GB storage and quad-camera setup",
"specifications": "Display: 6.5-inch AMOLED; Storage: 128GB; RAM: 6GB; Battery: 4000mAh; OS: Android 12",
"features": "Fast charging, Fingerprint sensor, Multi-camera, Face unlock",
"price": 399.0,
"stock": 50,
"warranty": "1 year manufacturer"
},
{
"id": 6,
"product_name": "Noise Cancelling Headphones",
"category": "Audio",
"brand": "Sony",
"description": "Over-ear wireless headphones with Active Noise Cancellation",
"specifications": "Battery: 30 hours; Connectivity: Bluetooth 5.0; Color: Black; Weight: 250g",
"features": "ANC, Wireless, Comfortable ear cushions, Built-in mic",
"price": 129.99,
"stock": 80,
"warranty": "2 years manufacturer"
},
{
"id": 7,
"product_name": "Running Shoes",
"category": "Footwear",
"brand": "Nike",
"description": "Breathable lightweight sports shoes for men",
"specifications": "Material: Mesh; Sizes: 7-12; Sole: Rubber; Color: Grey/Blue",
"features": "Lightweight, Breathable, Shock absorption, Non-slip sole",
"price": 49.99,
"stock": 120,
"warranty": "6 months manufacturer"
},
{
"id": 8,
"product_name": "Leather Wallet",
"category": "Fashion",
"brand": "Tommy Hilfiger",
"description": "Genuine leather slim wallet for men",
"specifications": "Material: Genuine leather; Card Slots: 6; Coin Pocket: Yes; Color: Brown",
"features": "Slim design, Durable, RFID protection",
"price": 25.0,
"stock": 180,
"warranty": "1 year limited"
},
{
"id": 9,
"product_name": "Coffee Maker",
"category": "Kitchen Appliances",
"brand": "Philips",
"description": "Automatic drip coffee machine with timer function",
"specifications": "Capacity: 1.2L; Power: 900W; Material: Plastic/Stainless Steel; Color: Black",
"features": "Programmable timer, Auto shut-off, Easy to clean",
"price": 59.99,
"stock": 60,
"warranty": "2 years manufacturer"
},
{
"id": 10,
"product_name": "Desk Lamp",
"category": "Home & Office",
"brand": "Philips",
"description": "LED lamp with touch control and USB charging port",
"specifications": "Power: 7W LED; Color Temp: 3000K-6000K; Material: Aluminum; Color: Silver",
"features": "Touch control, Adjustable brightness, USB charging port",
"price": 22.99,
"stock": 140,
"warranty": "1 year limited"
},
{
"id": 11,
"product_name": "Notebook",
"category": "Stationery",
"brand": "Moleskine",
"description": "Hardcover ruled notebook 200 pages",
"specifications": "Size: A5; Pages: 200; Cover: Hardcover; Color: Black",
"features": "Acid-free paper, Durable cover, Elastic closure",
"price": 4.99,
"stock": 500,
"warranty": "No warranty"
},
{
"id": 12,
"product_name": "Power Bank",
"category": "Electronics",
"brand": "Xiaomi",
"description": "10000mAh portable charger with fast charging",
"specifications": "Capacity: 10000mAh; Output: 2.1A; Input: Micro-USB/USB-C; Color: White",
"features": "Fast charging, Portable, LED indicator",
"price": 18.5,
"stock": 220,
"warranty": "1 year manufacturer"
},
{
"id": 13,
"product_name": "Electric Toothbrush",
"category": "Health & Personal Care",
"brand": "Oral-B",
"description": "Rechargeable toothbrush with 3 cleaning modes",
"specifications": "Battery: 2 weeks; Modes: Clean/White/Sensitive; Color: White/Blue",
"features": "Rechargeable, Timer, Multiple cleaning modes",
"price": 34.75,
"stock": 90,
"warranty": "2 years manufacturer"
},
{
"id": 14,
"product_name": "Smartwatch",
"category": "Electronics",
"brand": "Fitbit",
"description": "Fitness tracker watch with heart rate monitor",
"specifications": "Display: 1.3-inch OLED; Battery: 7 days; Water-resistant: 50m; Connectivity: Bluetooth 5.0",
"features": "Heart rate tracking, Sleep monitoring, Notifications, Fitness tracking",
"price": 74.5,
"stock": 110,
"warranty": "1 year manufacturer"
},
{
"id": 15,
"product_name": "Backpack",
"category": "Bags",
"brand": "North Face",
"description": "Waterproof 30L travel backpack",
"specifications": "Capacity: 30L; Material: Polyester; Pockets: 5; Color: Black/Blue",
"features": "Waterproof, Multiple compartments, Comfortable straps",
"price": 39.0,
"stock": 130,
"warranty": "2 years manufacturer"
},
{
"id": 16,
"product_name": "Microwave Oven",
"category": "Kitchen Appliances",
"brand": "Panasonic",
"description": "700W compact digital microwave",
"specifications": "Power: 700W; Capacity: 20L; Dimensions: 45x25x30cm; Color: White",
"features": "Digital display, Auto-cook programs, Compact design",
"price": 89.0,
"stock": 70,
"warranty": "2 years manufacturer"
},
{
"id": 17,
"product_name": "Bluetooth Speaker",
"category": "Audio",
"brand": "JBL",
"description": "Portable waterproof mini speaker",
"specifications": "Battery: 8 hours; Power: 5W; Connectivity: Bluetooth 5.0; Color: Blue",
"features": "Portable, Waterproof, Built-in mic, Bass boost",
"price": 29.99,
"stock": 150,
"warranty": "1 year manufacturer"
},
{
"id": 18,
"product_name": "Tablet Stand",
"category": "Accessories",
"brand": "Anker",
"description": "Adjustable aluminum stand for tablets",
"specifications": "Material: Aluminum; Adjustable angles: 5 positions; Fits: 7-12 inch tablets; Color: Silver",
"features": "Stable, Lightweight, Adjustable angle",
"price": 13.75,
"stock": 200,
"warranty": "1 year limited"
},
{
"id": 19,
"product_name": "TV 55''",
"category": "Electronics",
"brand": "Samsung",
"description": "4K UHD Smart LED TV with Wi-Fi",
"specifications": "Display: 55-inch 4K UHD; Smart OS: Tizen; HDMI ports: 3; Color: Black",
"features": "4K resolution, Smart TV, Wi-Fi, HDMI inputs",
"price": 449.99,
"stock": 35,
"warranty": "3 years manufacturer"
},
{
"id": 20,
"product_name": "Hair Dryer",
"category": "Health & Personal Care",
"brand": "Philips",
"description": "Compact 2000W hair dryer with cool shot",
"specifications": "Power: 2000W; Heat Settings: 3; Cool Shot: Yes; Color: Pink",
"features": "Fast drying, Cool shot, Lightweight",
"price": 24.99,
"stock": 140,
"warranty": "1 year limited"
},
{
"id": 21,
"product_name": "USB Cable",
"category": "Electronics",
"brand": "Anker",
"description": "1m fast charging USB-C cable",
"specifications": "Length: 1m; Type: USB-C; Material: Nylon braided; Color: Black",
"features": "Fast charging, Durable, Tangle-free",
"price": 5.99,
"stock": 400,
"warranty": "6 months manufacturer"
},
{
"id": 22,
"product_name": "External Hard Drive",
"category": "Electronics",
"brand": "Seagate",
"description": "1TB USB 3.0 external drive",
"specifications": "Capacity: 1TB; Connection: USB 3.0; Material: Plastic; Color: Black",
"features": "Portable, Fast transfer speed, Plug and play",
"price": 59.5,
"stock": 90,
"warranty": "2 years manufacturer"
},
{
"id": 23,
"product_name": "Sports Watch",
"category": "Fitness",
"brand": "Casio",
"description": "Digital waterproof watch with stopwatch",
"specifications": "Display: Digital; Water Resistance: 50m; Battery: 2 years; Color: Black",
"features": "Stopwatch, Alarm, Water-resistant",
"price": 19.99,
"stock": 150,
"warranty": "1 year limited"
},
{
"id": 24,
"product_name": "LED Strip Light",
"category": "Home & Office",
"brand": "Philips",
"description": "5m RGB LED strip with remote",
"specifications": "Length: 5m; Colors: RGB; Power: 12V; Remote: Included",
"features": "Remote control, Multi-color, Flexible strip",
"price": 14.99,
"stock": 250,
"warranty": "1 year limited"
},
{
"id": 25,
"product_name": "Air Fryer",
"category": "Kitchen Appliances",
"brand": "Philips",
"description": "3.5L oil-free air fryer",
"specifications": "Capacity: 3.5L; Power: 1400W; Temperature range: 80-200\u00b0C; Color: Black",
"features": "Oil-free cooking, Digital timer, Rapid air circulation",
"price": 79.0,
"stock": 80,
"warranty": "2 years manufacturer"
},
{
"id": 26,
"product_name": "Smart Plug",
"category": "Electronics",
"brand": "TP-Link",
"description": "Wi-Fi plug compatible with Alexa & Google",
"specifications": "Power: 220V; Max load: 10A; Connectivity: Wi-Fi; Color: White",
"features": "Voice control, Remote control, Energy monitoring",
"price": 12.5,
"stock": 300,
"warranty": "1 year manufacturer"
},
{
"id": 27,
"product_name": "Laptop Stand",
"category": "Computer Accessories",
"brand": "Havit",
"description": "Adjustable ergonomic aluminum laptop stand",
"specifications": "Material: Aluminum; Adjustable angles: 5; Fits: Up to 17-inch laptops; Color: Silver",
"features": "Ergonomic, Lightweight, Foldable",
"price": 28.99,
"stock": 180,
"warranty": "1 year limited"
},
{
"id": 28,
"product_name": "Electric Kettle",
"category": "Kitchen Appliances",
"brand": "Breville",
"description": "1.8L stainless steel automatic kettle",
"specifications": "Capacity: 1.8L; Power: 1500W; Material: Stainless steel; Color: Silver",
"features": "Auto shut-off, Boil-dry protection, Fast boiling",
"price": 22.49,
"stock": 120,
"warranty": "2 years manufacturer"
},
{
"id": 29,
"product_name": "Camera Tripod",
"category": "Photography",
"brand": "Manfrotto",
"description": "Lightweight 55-inch adjustable tripod",
"specifications": "Height: 55 inches; Material: Aluminum; Max Load: 5kg; Color: Black",
"features": "Adjustable, Lightweight, Stable",
"price": 32.0,
"stock": 100,
"warranty": "2 years manufacturer"
},
{
"id": 30,
"product_name": "Mini Fridge",
"category": "Home Appliances",
"brand": "Haier",
"description": "Compact 10L personal fridge",
"specifications": "Capacity: 10L; Power: 45W; Color: White; Energy Rating: A+",
"features": "Compact, Quiet operation, Energy efficient",
"price": 69.99,
"stock": 60,
"warranty": "2 years manufacturer"
},
{
"id": 31,
"product_name": "Yoga Mat",
"category": "Fitness",
"brand": "Reebok",
"description": "Non-slip 6mm thick mat",
"specifications": "Thickness: 6mm; Material: PVC; Size: 183x61cm; Color: Purple",
"features": "Non-slip, Durable, Lightweight",
"price": 19.49,
"stock": 180,
"warranty": "1 year limited"
},
{
"id": 32,
"product_name": "Face Mask",
"category": "Health & Personal Care",
"brand": "3M",
"description": "Reusable cotton mask pack of 3",
"specifications": "Material: Cotton; Pack: 3; Color: Blue/Black; Washable: Yes",
"features": "Reusable, Breathable, Comfortable fit",
"price": 7.99,
"stock": 300,
"warranty": "6 months limited"
},
{
"id": 33,
"product_name": "Vacuum Cleaner",
"category": "Home Appliances",
"brand": "Dyson",
"description": "Handheld cordless vacuum for home",
"specifications": "Power: 400W; Battery: 40min; Dust Capacity: 0.5L; Color: Silver",
"features": "Cordless, Lightweight, Strong suction",
"price": 65.99,
"stock": 70,
"warranty": "2 years manufacturer"
},
{
"id": 34,
"product_name": "Graphic T-shirt",
"category": "Fashion",
"brand": "H&M",
"description": "Printed unisex cotton T-shirt",
"specifications": "Material: 100% Cotton; Sizes: S-XL; Color: White/Black",
"features": "Soft fabric, Breathable, Stylish print",
"price": 14.5,
"stock": 220,
"warranty": "6 months manufacturer"
},
{
"id": 35,
"product_name": "HD Webcam",
"category": "Computer Accessories",
"brand": "LogiTech",
"description": "1080p webcam with microphone",
"specifications": "Resolution: 1080p; Field of View: 78\u00b0; Connectivity: USB; Color: Black",
"features": "High-definition video, Built-in mic, Plug & play",
"price": 29.99,
"stock": 120,
"warranty": "1 year limited"
},
{
"id": 36,
"product_name": "Sunscreen Lotion",
"category": "Health & Personal Care",
"brand": "Neutrogena",
"description": "SPF 50 broad spectrum sunblock",
"specifications": "Volume: 100ml; SPF: 50; Water-resistant: 80min; Skin Type: All",
"features": "UV protection, Water-resistant, Lightweight formula",
"price": 11.75,
"stock": 250,
"warranty": "1 year limited"
},
{
"id": 37,
"product_name": "Laptop",
"category": "Computers",
"brand": "Dell",
"description": "14-inch Intel i5 laptop with 8GB RAM",
"specifications": "Processor: Intel i5 11th gen; RAM: 8GB; Storage: 512GB SSD; Display: 14-inch FHD",
"features": "Lightweight, Fast performance, Full HD display",
"price": 549.0,
"stock": 60,
"warranty": "1 year manufacturer"
},
{
"id": 38,
"product_name": "Desk Organizer",
"category": "Home & Office",
"brand": "Ikea",
"description": "Wooden pen and file holder set",
"specifications": "Material: Wood; Compartments: 5; Color: Natural",
"features": "Durable, Stylish, Multiple compartments",
"price": 17.5,
"stock": 140,
"warranty": "1 year limited"
},
{
"id": 39,
"product_name": "Wireless Charger",
"category": "Electronics",
"brand": "Anker",
"description": "15W Qi fast charging pad",
"specifications": "Output: 15W; Input: 5V/2A; Material: Plastic; Color: Black",
"features": "Fast charging, Non-slip surface, LED indicator",
"price": 19.99,
"stock": 180,
"warranty": "1 year manufacturer"
},
{
"id": 40,
"product_name": "Monitor",
"category": "Computers",
"brand": "Acer",
"description": "24-inch Full HD LED monitor",
"specifications": "Display: 24-inch; Resolution: 1920x1080; Refresh Rate: 60Hz; Color: Black",
"features": "Full HD, Wide viewing angle, VESA mountable",
"price": 129.99,
"stock": 80,
"warranty": "2 years manufacturer"
},
{
"id": 41,
"product_name": "Men\u2019s Jacket",
"category": "Fashion",
"brand": "North Face",
"description": "Waterproof winter jacket with hood",
"specifications": "Material: Polyester; Sizes: M-XXL; Color: Black; Insulation: Synthetic",
"features": "Waterproof, Warm, Adjustable hood",
"price": 79.99,
"stock": 90,
"warranty": "2 years manufacturer"
},
{
"id": 42,
"product_name": "Women\u2019s Handbag",
"category": "Fashion",
"brand": "Michael Kors",
"description": "Faux leather crossbody bag",
"specifications": "Material: Faux leather; Dimensions: 25x20x10cm; Color: Brown",
"features": "Stylish, Lightweight, Durable",
"price": 34.99,
"stock": 110,
"warranty": "1 year limited"
},
{
"id": 43,
"product_name": "Portable Projector",
"category": "Electronics",
"brand": "Anker",
"description": "Mini projector 1080p supported",
"specifications": "Resolution: 1080p; Brightness: 200 lumens; Connectivity: HDMI/USB; Color: Black",
"features": "Portable, Compact, HDMI/USB compatible",
"price": 109.0,
"stock": 50,
"warranty": "1 year manufacturer"
},
{
"id": 44,
"product_name": "Electric Scooter",
"category": "Transportation",
"brand": "Xiaomi",
"description": "Foldable commuter scooter",
"specifications": "Motor: 250W; Speed: 25km/h; Range: 20km; Weight: 12kg",
"features": "Foldable, Lightweight, Electric motor",
"price": 299.99,
"stock": 40,
"warranty": "1 year manufacturer"
},
{
"id": 45,
"product_name": "Wireless Earbuds",
"category": "Audio",
"brand": "Sony",
"description": "True wireless earbuds with mic",
"specifications": "Battery: 6 hours; Charging case: 24 hours; Connectivity: Bluetooth 5.0; Color: White",
"features": "Wireless, Noise reduction, Comfortable fit",
"price": 39.99,
"stock": 140,
"warranty": "1 year manufacturer"
},
{
"id": 46,
"product_name": "Desk Fan",
"category": "Home Appliances",
"brand": "Philips",
"description": "USB powered mini fan",
"specifications": "Power: 5W; Speed: 2 settings; Material: Plastic; Color: White",
"features": "Portable, Quiet, USB powered",
"price": 9.99,
"stock": 200,
"warranty": "6 months limited"
},
{
"id": 47,
"product_name": "HDMI Cable",
"category": "Electronics",
"brand": "Anker",
"description": "2m high-speed HDMI cable",
"specifications": "Length: 2m; Type: HDMI 2.0; Material: PVC; Color: Black",
"features": "High-speed, Durable, Supports 4K",
"price": 8.49,
"stock": 300,
"warranty": "6 months manufacturer"
},
{
"id": 48,
"product_name": "Pressure Cooker",
"category": "Kitchen Appliances",
"brand": "Prestige",
"description": "5L stainless steel cooker",
"specifications": "Capacity: 5L; Material: Stainless steel; Pressure: 15 PSI; Color: Silver",
"features": "Durable, Easy to clean, Safety valves",
"price": 44.99,
"stock": 120,
"warranty": "2 years manufacturer"
},
{
"id": 49,
"product_name": "Perfume",
"category": "Beauty",
"brand": "Chanel",
"description": "50ml luxury floral fragrance",
"specifications": "Volume: 50ml; Type: Eau de Parfum; Scent: Floral; Color: Transparent",
"features": "Long-lasting, Premium fragrance, Elegant packaging",
"price": 54.0,
"stock": 70,
"warranty": "1 year manufacturer"
},
{
"id": 50,
"product_name": "Table Lamp",
"category": "Home & Office",
"brand": "Ikea",
"description": "Modern design lamp with dimmer",
"specifications": "Power: 7W LED; Material: Aluminum; Color: White; Dimmer: Yes",
"features": "Adjustable brightness, Modern design, Energy-efficient",
"price": 27.99,
"stock": 130,
"warranty": "1 year limited"
},
{
"id": 51,
"product_name": "Notebook Stand",
"category": "Computer Accessories",
"brand": "Havit",
"description": "Portable cooling stand for laptop",
"specifications": "Material: Aluminum; Fan: 2x USB powered; Adjustable height: 3 positions; Color: Silver",
"features": "Cooling fans, Adjustable height, Lightweight and portable",
"price": 21.99,
"stock": 150,
"warranty": "1 year limited"
},
{
"id": 52,
"product_name": "Ceramic Mug",
"category": "Kitchen & Dining",
"brand": "Corelle",
"description": "Printed coffee mug 350ml",
"specifications": "Capacity: 350ml; Material: Ceramic; Color: White with print",
"features": "Microwave safe, Dishwasher safe, Stylish print",
"price": 6.5,
"stock": 300,
"warranty": "6 months limited"
},
{
"id": 53,
"product_name": "Wireless Keyboard",
"category": "Computer Accessories",
"brand": "LogiTech",
"description": "Compact Bluetooth keyboard",
"specifications": "Connectivity: Bluetooth; Keys: 78; Battery: 6 months; Color: Black",
"features": "Portable, Quiet keys, Multi-device pairing",
"price": 24.99,
"stock": 180,
"warranty": "1 year limited"
},
{
"id": 54,
"product_name": "Hand Mixer",
"category": "Kitchen Appliances",
"brand": "Breville",
"description": "5-speed electric hand mixer",
"specifications": "Power: 250W; Speeds: 5; Attachments: Beaters and dough hooks; Color: White",
"features": "Multiple speeds, Easy to clean, Lightweight",
"price": 19.99,
"stock": 140,
"warranty": "1 year manufacturer"
},
{
"id": 55,
"product_name": "Shampoo",
"category": "Health & Personal Care",
"brand": "Himalaya",
"description": "Anti-dandruff herbal shampoo 200ml",
"specifications": "Volume: 200ml; Ingredients: Herbal; Color: Green; Hair type: All",
"features": "Anti-dandruff, Gentle formula, Natural herbs",
"price": 5.99,
"stock": 400,
"warranty": "6 months limited"
},
{
"id": 56,
"product_name": "Men\u2019s Watch",
"category": "Fashion",
"brand": "Casio",
"description": "Analog stainless steel wristwatch",
"specifications": "Movement: Quartz; Water-resistant: 50m; Case diameter: 42mm; Color: Silver",
"features": "Water-resistant, Elegant design, Durable",
"price": 64.99,
"stock": 90,
"warranty": "1 year manufacturer"
},
{
"id": 57,
"product_name": "Women\u2019s Necklace",
"category": "Fashion",
"brand": "Swarovski",
"description": "Gold-plated heart pendant chain",
"specifications": "Material: Gold-plated alloy; Length: 45cm; Pendant: Heart-shaped; Color: Gold",
"features": "Elegant design, Hypoallergenic, Perfect gift",
"price": 29.0,
"stock": 120,
"warranty": "1 year manufacturer"
},
{
"id": 58,
"product_name": "Toaster",
"category": "Kitchen Appliances",
"brand": "Philips",
"description": "2-slice pop-up toaster with crumb tray",
"specifications": "Power: 800W; Slices: 2; Color: Silver; Material: Stainless Steel",
"features": "Auto pop-up, Removable crumb tray, Compact",
"price": 25.0,
"stock": 110,
"warranty": "1 year limited"
},
{
"id": 59,
"product_name": "Back Cushion",
"category": "Furniture",
"brand": "Everlasting Comfort",
"description": "Memory foam lumbar support pillow",
"specifications": "Material: Memory foam; Size: 14x12 inches; Color: Black; Cover: Removable",
"features": "Ergonomic support, Washable cover, Comfortable",
"price": 18.75,
"stock": 160,
"warranty": "1 year limited"
},
{
"id": 60,
"product_name": "Smart Bulb",
"category": "Electronics",
"brand": "Philips",
"description": "Color-changing LED smart bulb",
"specifications": "Power: 9W; Connectivity: Wi-Fi; Color: RGB; Lifetime: 25000 hours",
"features": "Voice control, Remote control, Multi-color",
"price": 13.49,
"stock": 200,
"warranty": "1 year manufacturer"
},
{
"id": 61,
"product_name": "Wireless Doorbell",
"category": "Home & Office",
"brand": "Ring",
"description": "Plug-in chime with 300m range",
"specifications": "Power: Plug-in; Range: 300m; Chimes: 36 tones; Color: White",
"features": "Wireless, Multiple chimes, Easy installation",
"price": 17.99,
"stock": 180,
"warranty": "1 year manufacturer"
},
{
"id": 62,
"product_name": "Dog Leash",
"category": "Pet Supplies",
"brand": "PetSafe",
"description": "Nylon leash with reflective stitching",
"specifications": "Length: 1.5m; Material: Nylon; Color: Black; Width: 2cm",
"features": "Reflective, Durable, Comfortable handle",
"price": 9.5,
"stock": 250,
"warranty": "6 months limited"
},
{
"id": 63,
"product_name": "Cat Toy",
"category": "Pet Supplies",
"brand": "Petstages",
"description": "Interactive feather wand for cats",
"specifications": "Material: Feathers and plastic; Length: 40cm; Color: Multicolor",
"features": "Interactive, Lightweight, Fun for cats",
"price": 6.99,
"stock": 300,
"warranty": "6 months limited"
},
{
"id": 64,
"product_name": "Electric Drill",
"category": "Tools",
"brand": "Bosch",
"description": "12V cordless drill set",
"specifications": "Battery: 12V Li-ion; Speed: 0-1500 RPM; Chuck: 10mm; Color: Blue",
"features": "Cordless, Adjustable torque, Lightweight",
"price": 74.99,
"stock": 100,
"warranty": "2 years manufacturer"
},
{
"id": 65,
"product_name": "Hair Straightener",
"category": "Health & Personal Care",
"brand": "Philips",
"description": "Ceramic plates flat iron",
"specifications": "Plate size: 25mm; Power: 45W; Heat range: 150-230\u00b0C; Color: Black",
"features": "Ceramic plates, Quick heat, Adjustable temperature",
"price": 23.99,
"stock": 150,
"warranty": "1 year manufacturer"
},
{
"id": 66,
"product_name": "Face Serum",
"category": "Beauty",
"brand": "L\u2019Oreal",
"description": "Vitamin C brightening serum 30ml",
"specifications": "Volume: 30ml; Ingredients: Vitamin C, Hyaluronic acid; Skin type: All",
"features": "Brightening, Hydrating, Lightweight formula",
"price": 15.49,
"stock": 200,
"warranty": "1 year limited"
},
{
"id": 67,
"product_name": "Men\u2019s Shoes",
"category": "Footwear",
"brand": "Clarks",
"description": "Leather formal office shoes",
"specifications": "Material: Leather; Sizes: 7-12; Color: Brown; Sole: Rubber",
"features": "Durable, Comfortable, Classic design",
"price": 59.0,
"stock": 90,
"warranty": "1 year manufacturer"
},
{
"id": 68,
"product_name": "Women\u2019s Sandals",
"category": "Footwear",
"brand": "Reebok",
"description": "Comfortable casual flat sandals",
"specifications": "Material: Synthetic; Sizes: 5-10; Color: Beige; Sole: Rubber",
"features": "Comfortable, Lightweight, Breathable",
"price": 24.5,
"stock": 150,
"warranty": "6 months manufacturer"
},
{
"id": 69,
"product_name": "Mattress",
"category": "Furniture",
"brand": "Wakefit",
"description": "Memory foam queen-size mattress",
"specifications": "Size: 60x78 inches; Material: Memory foam; Firmness: Medium; Color: White",
"features": "Memory foam, Pressure relief, Hypoallergenic",
"price": 399.0,
"stock": 40,
"warranty": "5 years manufacturer"
},
{
"id": 70,
"product_name": "Pillow",
"category": "Furniture",
"brand": "Amazon Basics",
"description": "Soft microfiber sleeping pillow",
"specifications": "Material: Microfiber; Size: 20x26 inches; Color: White; Firmness: Soft",
"features": "Soft, Hypoallergenic, Machine washable",
"price": 12.99,
"stock": 200,
"warranty": "1 year limited"
},
{
"id": 71,
"product_name": "Bed Sheet",
"category": "Home & Living",
"brand": "Spaces",
"description": "Cotton double bedsheet with pillow covers",
"specifications": "Material: 100% Cotton; Size: Double; Color: Blue; Includes: 2 pillow covers",
"features": "Soft, Breathable, Durable",
"price": 19.0,
"stock": 180,
"warranty": "1 year limited"
},
{
"id": 72,
"product_name": "Smart TV Box",
"category": "Electronics",
"brand": "Xiaomi",
"description": "Android TV box 4K streaming",
"specifications": "OS: Android 11; Resolution: 4K; Storage: 16GB; Connectivity: Wi-Fi 5",
"features": "4K streaming, Apps support, Easy setup",
"price": 49.99,
"stock": 120,
"warranty": "1 year manufacturer"
},
{
"id": 73,
"product_name": "Router",
"category": "Networking",
"brand": "TP-Link",
"description": "Wireless dual-band router",
"specifications": "Wi-Fi: Dual-band; Speed: 1200Mbps; Ports: 4 LAN; Color: White",
"features": "Fast Wi-Fi, Easy setup, Dual-band",
"price": 39.0,
"stock": 130,
"warranty": "1 year manufacturer"
},
{
"id": 74,
"product_name": "Printer",
"category": "Office Equipment",
"brand": "HP",
"description": "Wireless inkjet color printer",
"specifications": "Print Speed: 20ppm; Connectivity: Wi-Fi; Resolution: 1200x1200dpi; Color: White",
"features": "Wireless printing, Color printing, Compact",
"price": 129.99,
"stock": 70,
"warranty": "2 years manufacturer"
},
{
"id": 75,
"product_name": "Book Light",
"category": "Home & Office",
"brand": "Philips",
"description": "Clip-on rechargeable reading light",
"specifications": "Battery: 2000mAh; Light modes: 3; Material: Plastic; Color: White",
"features": "Rechargeable, Clip-on, Adjustable angle",
"price": 9.99,
"stock": 250,
"warranty": "1 year limited"
},
{
"id": 76,
"product_name": "Men\u2019s Jeans",
"category": "Fashion",
"brand": "Levis",
"description": "Slim-fit denim jeans",
"specifications": "Material: 100% Cotton; Sizes: 30-38; Color: Blue; Fit: Slim",
"features": "Stylish, Durable, Comfortable",
"price": 29.99,
"stock": 150,
"warranty": "6 months manufacturer"
},
{
"id": 77,
"product_name": "Women\u2019s Dress",
"category": "Fashion",
"brand": "H&M",
"description": "Floral printed midi dress",
"specifications": "Material: Polyester; Sizes: S-XL; Color: Multicolor; Length: Midi",
"features": "Floral print, Lightweight, Comfortable",
"price": 34.99,
"stock": 120,
"warranty": "6 months manufacturer"
},
{
"id": 78,
"product_name": "Baby Stroller",
"category": "Baby Products",
"brand": "Graco",
"description": "Lightweight foldable stroller",
"specifications": "Weight: 7kg; Material: Aluminum; Max load: 25kg; Color: Grey",
"features": "Foldable, Lightweight, Adjustable handle",
"price": 149.0,
"stock": 50,
"warranty": "2 years manufacturer"
},
{
"id": 79,
"product_name": "Air Purifier",
"category": "Home Appliances",
"brand": "Philips",
"description": "HEPA filter air purifier",
"specifications": "Coverage: 400 sq ft; Filter: HEPA; Power: 45W; Color: White",
"features": "HEPA filtration, Quiet, Air quality indicator",
"price": 99.99,
"stock": 60,
"warranty": "2 years manufacturer"
},
{
"id": 80,
"product_name": "Drone",
"category": "Electronics",
"brand": "DJI",
"description": "Mini quadcopter drone with camera",
"specifications": "Camera: 1080p; Flight time: 20 min; Range: 100m; Battery: Li-ion",
"features": "Portable, Stable flight, Camera included",
"price": 89.0,
"stock": 40,
"warranty": "1 year manufacturer"
},
{
"id": 81,
"product_name": "Microwave Bowl",
"category": "Kitchen & Dining",
"brand": "Pyrex",
"description": "Microwave-safe glass bowl",
"specifications": "Capacity: 500ml; Material: Glass; Color: Transparent; Microwave safe: Yes",
"features": "Microwave safe, Durable, Heat resistant",
"price": 8.49,
"stock": 200,
"warranty": "6 months limited"
},
{
"id": 82,
"product_name": "Electric Bike",
"category": "Transportation",
"brand": "Xiaomi",
"description": "Foldable e-bike with 250W motor",
"specifications": "Motor: 250W; Battery: 36V 10Ah; Speed: 25km/h; Range: 30km; Color: Black",
"features": "Foldable, Electric motor, Lightweight",
"price": 499.0,
"stock": 30,
"warranty": "1 year manufacturer"
},
{
"id": 83,
"product_name": "Office Desk",
"category": "Furniture",
"brand": "Ikea",
"description": "Wooden writing desk 120cm",
"specifications": "Material: Wood; Dimensions: 120x60x75cm; Color: Brown; Drawers: 3",
"features": "Spacious, Sturdy, Elegant design",
"price": 119.0,
"stock": 50,
"warranty": "5 years limited"
},
{
"id": 84,
"product_name": "Plant Pot",