-
Notifications
You must be signed in to change notification settings - Fork 4
/
product.html
1261 lines (1154 loc) · 44 KB
/
product.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://www.netmeds.com/assets/global/apple-touch-icon-48x48.png" />
<title>Netmed.com: India Online Pharmacy</title>
<style>
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
#product {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
gap: 20px;
width: 95%;
margin: auto;
justify-content: space-evenly;
}
#product>div>img {
width: 100%;
}
#product>div {
border: 1px solid #c9c9c9;
border-radius: 10px;
padding: 20px;
justify-content: space-between;
line-height: 25px;
}
button {
width: 95%;
color: white;
background-color: #24aeb1;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
border: 1px;
border-radius: 5px;
margin-left: 10px;
font-weight: bolder;
font-size: larger;
margin-top: 5px;
cursor: pointer
}
select {
margin-left: 5%;
margin-top: 100px;
margin-bottom: 10px;
width: 200px;
padding: 5px;
}
#searchBox {
font-family: LatoSemiBold;
width: 42%;
height: 50px;
border-radius: 5px;
display: inline-block;
vertical-align: middle;
padding: 1px;
margin: 18px;
background: white;
margin-left: -1%;
}
.val {
width: 50%;
height: 20px;
}
#sel {
width: 25%;
height: 35px;
vertical-align: middle;
margin: 8px;
border: none;
display: inline-block;
color: #24aeb1;
font-family: LatoSemiBold;
}
#mainbox {
width: 110%;
height: 100px;
background-color: #32aeb1;
font-family: LatoSemiBold;
position: fixed;
margin-top: -100px;
margin-left: -1%
}
.mainImg {
width: 12%;
margin: 15px;
vertical-align: middle;
height: 50px;
background-color: #32aeb1;
display: inline-block;
font-family: LatoSemiBold;
margin-left: 10%;
margin-top: 30px;
}
.dropdown-content a:hover {
background-color: white;
color: #32aeb1;
}
.dropdown:hover .dropdown-content {
display: block;
}
#boxes {
width: 31%;
height: 23px;
display: inline-block;
vertical-align: middle;
color: white;
font-weight: 500;
margin-top: -25px;
}
.b1 {
width: 25%;
height: 9px;
display: inline-block;
padding: 5px;
color: white;
font-weight: 500
}
a {
text-decoration: none;
color: black;
}
.icon {
margin: -5px;
}
#numprod {
display: block;
background: #ee4380 !important;
color: #fff !important;
border-radius: 6.5px;
padding: 0px;
margin-bottom: -1%;
width: 12%;
text-align: center;
line-height: 14px;
font-family: LatoBold;
font-size: 10px;
margin-left: 10%;
}
.b1 a {
text-decoration: none;
color: white
}
#searchbar {
width: 70%;
height: 40px;
border: transparent;
}
#secondbigbox {
background: #32aeb1;
width: auto;
margin-left: -1%;
}
.row {
margin: auto;
display: flex;
justify-content: center;
margin-top: 100px
}
.row>div {
height: 50px;
flex-basis: 180px;
border-radius: 5px;
margin: 10px;
}
#rimg {
padding: 6px;
display: inline-block;
}
ul.nav {
margin: 0;
padding: 0;
list-style: none;
height: 36px;
line-height: 26px;
font-size: 13px;
color: black;
}
ul.nav li {
float: left;
}
ul.nav a {
display: block;
padding: 0px 28px;
color: black;
text-decoration: none;
font-size: 14px;
margin: 7px;
}
.nbox {
width: 80%;
height: 56px;
margin: auto;
padding: 0;
list-style: none;
}
ul.navbar {
margin: auto;
margin-left: 130px;
font-family: Arial, Helvetica, sans-serif;
}
ul.navbar li {
float: left;
}
.la {
font-size: 14px;
line-height: 20px;
color: rgba(11, 18, 25, .75);
margin-bottom: -27px;
list-style: none;
padding: 11px;
margin-right: 8px;
margin-top: -3px;
}
.nav {
width: 70%;
height: 100px;
border: 1px solid yellow;
}
.dbox {
width: 96px;
height: 41px;
display: inline-block;
vertical-align: bottom;
font-family: LatoSemiBold;
}
.dropdown {
display: inline-block;
}
.med {
font-family: LatoSemiBold;
font-size: 16px;
color: white;
}
.pmed {
color: white;
margin-top: -35px;
margin-left: 60px;
font-family: LatoSemiBold;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
width: 220px;
font-size: 12px;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
</style>
</head>
<body>
<div id="mainbox">
<a href="index.html">
<div class="mainImg">
<img src="https://www.netmeds.com/assets/gloryweb/images/home-logo-netmeds-new.svg">
</div>
</a>
<div id="searchBox">
<select id="sel">
<option value=""> Deliver to <span class="blue">1011100</span>
</option>
<option class="val" value="Other"> Other
</option>
</select>
<input id="searchbar" type="text" name="search" placeholder="Search Medicines and Wellness Product.." />
</div>
<div id="boxes">
<div class="b1"> <a href=""> <img class="icon"
src="https://www.netmeds.com/assets/gloryweb/images/icons/upload_rx.svg"> Upload</a>
</div>
<div class="b1">
<span id="numprod"></span>
<img class="icon" src=" https://www.netmeds.com/assets/gloryweb/images/icons/cart_icon.svg">
<a href="cart.html"> Cart
</div>
<div class="b1">
<img class="icon" src="https://www.netmeds.com/assets/gloryweb/images/icons/profile_icon.svg">
<a href="signin.html"> SignIn/SignUp
</a>
</div>
</div>
</div>
<div id="secondbigbox">
<div class="row">
<div>
<img id="rimg"
src="https://www.netmeds.com/assets/version1630028519/gloryweb/images/icons/medicine.svg">
<div class="dbox">
<div class="dropdown">
<a href="med.html">
<div class="med">Medicines</div>
</a>
<div class="dropdown-content">
<a href="#">All Medicines</a>
<a href="#">Previously ordered products</a>
</div>
</div>
</div>
</div>
<div>
<img id="rimg" src="https://www.netmeds.com/assets/gloryweb/images/icons/wellness.svg">
<a href="category.html">
<p class="pmed">Wellness</p>
</a>
</div>
<div>
<img id="rimg" src="https://www.netmeds.com/assets/gloryweb/images/icons/diagnostics.svg">
<a href="labtest.html">
<a href="lab.html">
<p class="pmed">Lab Tests</p>
</a>
</a>
</div>
<div>
<img id="rimg" src="https://www.netmeds.com/assets/gloryweb/images/icons/beauty.svg">
<div class="dbox">
<div class="dropdown">
<a href="category.html">
<div class="med">Beauty</div>
</a>
<div class="dropdown-content">
<a href="">Body Care</a>
<a href="#">Face Care</a>
<a href="#">Fragrance</a>
<a href="#">Hands and Feet</a>
<a href="#">Home Care</a>
<a href="#">Senior Care</a>
</div>
</div>
</div>
</div>
<div>
<img id="rimg"
src="https://www.netmeds.com/assets/version1630028519/gloryweb/images/icons/health-library.svg">
<div class="dbox">
<div class="dropdown">
<div class="med">Health Corner</div>
<div class="dropdown-content">
<a href="#">Health Library</a>
<a href="#">PatientsAlike</a>
<a href="#">Corona Awarness</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="nbox">
<ul class="navbar">
<li class="la"><a href="product.html">COVID Essentials</a></li>
<li class="la"><a href="product.html">Diabetes</a></li>
<li class="la"> <a href="product.html">Eyewear</a></li>
<li class="la"><a href="product.html">Ayush</a></li>
<li class="la"><a href="product.html">Fitness</a></li>
<li class="la"><a href="product.html">Mom & Baby</a></li>
<li class="la"><a href="product.html">Devices</a></li>
<li class="la"><a href="product.html">Surgicals</a></li>
<li class="la"><a href="product.html">Sexual Wellness</a></li>
<li class="la"><a href="product.html">Treatments</a></li>
</ul>
</div>
<select style="margin-top:-20px; margin-left:45px; width: 200px;height: 50px;" id="filter">
<option value="All">All Products</option>
<option value="Covid Essentials">Covid Essentials</option>
<option value="Mom & Baby">Mom & Baby</option>
<option value="Ayush">Ayush</option>
<option value="Devices">Devices</option>
<option value="Fitness">Fitness</option>
<option value="BabyCare">BabyCare</option>
</select>
<div id="product"></div>
</body>
</html>
<script>
var productData = [
{
category: "Covid Essentials",
image_url: "https://www.netmeds.com/images/product-v1/150x150/958677/shake_handz_e_alcohol_hand_rub_with_flip_cap_500_ml_0_1.jpg",
name: "Shake HandZ-E Alcohol Hand Rub With Flip Cap 500 ml",
price: "Best price* RS. 100",
strikedoffprice: "MRP. 249",
rs: 100,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/150x150/915906/maxirich_multivitamin_and_minerals_softgels_10s_0_0.jpg",
name: "Maxirich Multivitamin and Minerals Softgels 10's",
price: "Best price* RS. 60.5",
strikedoffprice: "MRP. 110",
rs: 60.5,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/920731/ourdaily_vitamin_c_zinc_tablet_15s_0_2.jpg",
name: " Ourdaily Vitamin C & Zinc Tablet 15's",
price: "Best price* RS. 46.92",
strikedoffprice: "MRP. 69",
rs: 46.92,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/915643/zebronics_fingertip_pulse_oximeter_zeb_fpo500_0_0.jpg",
name: "Zebronics Fingertip Pulse Oximeter (ZEB-FPO500)",
price: "Best price* RS. 659",
strikedoffprice: "MRP. 2599",
rs: 659,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/912066/askmed_active_surface_disinfectant_spray_300_ml_0_0.jpg",
name: "Askmed Active Surface Disinfectant Spray 300 ml ",
price: "Best price* RS. 100",
strikedoffprice: "MRP. 250",
rs: 100,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/985297/univen_powder_free_nitrile_gloves_m_100s_0_1.jpg",
name: "UniVen Powder Free Nitrile Gloves (M) 100's",
price: "Best price* RS. 800.4",
strikedoffprice: "MRP. 1440",
rs: 800.4,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/910225/face_shield_with_elastic_band_0_0.jpg",
name: "Face Shield with Elastic Band",
price: "Best price* RS. 26.7",
strikedoffprice: "MRP. 100.0",
rs: 26.7,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/915946/helyxon_98_6_fever_watch_0_0.jpg",
name: "Helyxon 98.6 Fever Watch",
price: "Best price* RS. 2026.69",
strikedoffprice: "MRP. 2499",
rs: 2026.69,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/859708/omron_compressor_nebulizer_ne_c101_0.jpg",
name: "Omron Compressor Nebulizer (NE-C101)",
price: "Best price* RS. 952",
strikedoffprice: "MRP. 2300",
rs: 952,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/987148/ab_find_post_vaccination_neutralizing_antibody_test_1s_0_0.jpg",
name: "AB Find Post Vaccination Neutralizing Antibody Test Kit",
price: "Best price* RS. 284.5",
strikedoffprice: "MRP. 299.0",
rs: 284.5,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/994901/romsons_kare_n95_respirator_mask_child_gs_6103c_1s_0_0.jpg",
name: "Romsons Kare N95 Respirator Mask Child (GS - 6103C) 1's",
price: "Best price* RS. 30.11",
strikedoffprice: "MRP. 126.0",
rs: 30.11,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/908053/soft_hands_non_sterile_latex_medical_examination_gloves_m_100s_0_0.jpg",
name: "Soft Hands Non Sterile Latex Medical Examination Gloves (M) 100's",
price: "Best price* RS. 400.72",
strikedoffprice: "MRP. 575.0",
rs: 400.72,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/948692/oxy5_refillable_portable_oxygen_can_6_litre_0_1.jpg ",
name: "Oxy5 Refillable Portable Oxygen Can 6 Litre",
price: "Best price* RS. 562.25",
strikedoffprice: "MRP. 650",
rs: 562.25,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/911864/medigree_protective_medical_coverall_0_0.jpg",
name: "Medigree Protective Medical Coverall",
price: "Best price* RS. 401.25",
strikedoffprice: "MRP. 1295.0",
rs: 401.25,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/102099/dettol_antiseptic_liquid_1_ltr_0_1.jpg",
name: "Dettol Antiseptic Liquid 1 ltr",
price: "Best price* RS. 331",
strikedoffprice: "MRP. 331",
rs: 331,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/412506/dr_vaidyas_herbofit_capsule_30s_0_1.jpg",
name: "Dr.Vaidya's Herbofit Capsule 30's",
price: "Best price* RS. 138.0",
strikedoffprice: "MRP. 180.0",
rs: 138,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/858055/choicemmed_finger_tip_pulse_oximeter_0.jpg",
name: "Choicemmed Finger Tip Pulse Oximeter",
price: "Best price* RS. 900",
strikedoffprice: "MRP. 3795.0",
rs: 900,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/916061/sansu_sugar_free_immunity_booster_drink_500_ml_0_0.jpg",
name: "Sansu Sugar Free Immunity Booster Drink 500 ml",
price: "Best price* RS. 210",
strikedoffprice: "MRP. 215",
rs: 210,
},
{
category: "Covid Essentials",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/915420/1mile_protective_face_shield_be_alert_400_micron_10s_0_0.jpg",
name: "1Mile Protective Face Shield - Be Alert (400 Micron) 10's",
price: "Best price* RS. 549",
strikedoffprice: "MRP. 549",
rs: 549,
},
{
category: "Covid Essentials",
image_url:
" https://www.netmeds.com/images/product-v1/600x600/915419/1mile_protective_face_shield_be_alert_400_micron_5s_0_0.jpg",
name: " 1Mile Protective Face Shield - Be Alert (400 Micron) 5's",
price: "Best price* RS. 299",
strikedoffprice: "MRP. 299",
rs: 299,
},
{
category: "Mom & Baby",
image_url:
" https://www.netmeds.com/images/product-v1/600x600/918432/pro360_mom_nutritional_protein_powder_swiss_chocolate_flavour_400_gm_0_0.jpg",
name: "Pro360 MOM Nutritional Protein Powder - Swiss Chocolate Flavour 400 gm",
price: "Best price* RS. 488.55",
strikedoffprice: "MRP. 575",
rs: 488.55,
},
{
category: "Mom & Baby",
image_url:
" https://www.netmeds.com/images/product-v1/600x600/918431/pro360_mom_nutritional_protein_powder_french_vanilla_flavour_400_gm_0_0.jpg",
name: "Pro360 MOM Nutritional Protein Powder - French Vanilla Flavour 400 gm",
price: "Best price* RS. 488.55",
strikedoffprice: "MRP. 575",
rs: 488.55,
},
{
category: "Mom & Baby",
image_url:
" https://www.netmeds.com/images/product-v1/600x600/13457/nestle_nan_pro_2_6_months_powder_400_gm_refill_pack_0.jpg",
name: "Nestle Nan Pro 2 (6 Months+) Powder 400 gm (Refill Pack)",
price: "Best price* RS. 660",
strikedoffprice: "MRP. 660",
rs: 660,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/914329/mothercare_flexi_straw_toddler_cup_blue_0_0.jpg",
name: "Mothercare Flexi Straw Toddler Cup - Blue",
price: "Best price* RS. 509.15",
strikedoffprice: "MRP. 590.5",
rs: 509.15,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/13455/nestle_nan_pro_1_upto_6_months_powder_400_gm_tin_0.jpg",
name: "Nestle Nan Pro 1 (Upto 6 Months) Powder 400 gm -Tin",
price: "Best price* RS. 690",
strikedoffprice: "MRP. 690.5",
rs: 690,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/827147/mothercare_all_we_know_baby_oil_300_ml_0_1.jpg",
name: "Mothercare All We Know Baby Oil 300 ml",
price: "Best price* RS. 359.0",
strikedoffprice: "MRP. 399.0",
rs: 359,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/13454/nestle_nan_pro_1_upto_6_months_powder_400_gm_refill_pack_0_0.jpg",
name: "Nestle Nan Pro 1 (Upto 6 Months) Powder 400 gm (Refill Pack)",
price: "Best price* RS. 670.0",
strikedoffprice: "MRP. 670.0",
rs: 670,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/849094/similac_total_comfort_upto_24_months_powder_350_gm_tin_0_2.jpg",
name: "Similac Total Comfort (Upto 24 Months) Powder 350 gm -Tin",
price: "Best price* RS. 795.0",
strikedoffprice: "MRP. 795.0",
rs: 795,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/914255/mothercare_narrow_neck_bottle_pink_150_ml_0_0.jpg",
name: "Mothercare Narrow Neck Bottle - Pink 150 ml",
price: "Best price* RS. 152.15",
strikedoffprice: "MRP. 179.0",
rs: 152.15,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/408643/enfamil_infant_formula_a_stage_1_upto_6_months_powder_400_gm_tin_0_1.jpg",
name: "Enfamil Infant Formula A+ Stage 1 (Upto 6 Months) Powder 400 gm -Tin",
price: "Best price* RS. 715.0",
strikedoffprice: "MRP. 715.0",
rs: 715,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/914291/mothercare_toddler_silicone_crumb_catcher_bibs_pink_pack_of_2_0_0.jpg",
name: "Mothercare Toddler Silicone Crumb Catcher Bibs - Pink (Pack of 2)",
price: "Best price* RS. 1399.0",
strikedoffprice: "MRP. 1399.0",
rs: 1399,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/914260/mothercare_non_spill_trainer_cup_pink_0_0.jpg",
name: "Mothercare Non-Spill Trainer Cup - Pink",
price: "Best price* RS. 699.0",
strikedoffprice: "MRP. 699.0",
rs: 699,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/827153/mothercare_ultra_slim_breast_pads_pack_of_50_0_1.jpg",
name: "Mothercare Ultra Slim Breast Pads (Pack of 50)",
price: "Best price* RS. 509.0",
strikedoffprice: "MRP. 599.0",
rs: 509,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/848628/aptamil_stage_1_powder_400_gm_tin_0_1.jpg",
name: "Aptamil Infant Formula Stage 1 (0 to 6 months) Powder 400 gm (Tin)",
price: "Best price* RS. 740",
strikedoffprice: "MRP. 740",
rs: 740,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/858160/inlife_b_firm_natural_breast_tightening_cream_100_gm_0.jpg",
name: "INLIFE B Firm Natural Breast Tightening Cream 100 gm",
price: "Best price* RS. 294.0",
strikedoffprice: "MRP. 579.0",
rs: 294,
},
{
category: "Mom & Baby",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/13456/nestle_nan_pro_3_12_months_powder_400_gm_refill_pack_0_1.jpg",
name: "Nestle Nan Pro 3 (12 Months+) Powder 400 gm (Refill Pack)",
price: "Best price* RS. 650.0",
strikedoffprice: "MRP. 650.0",
rs: 650,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/821307/kapiva_wheat_grass_juice_1_ltr_0_2.jpg",
name: "Kapiva Wheat Grass Juice 1 ltr",
price: "Best price* RS. 424.0",
strikedoffprice: "MRP. 499.0",
rs: 424,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/814310/himalaya_wellness_ashvagandha_tablet_60_s_0.jpg",
name: "Himalaya Wellness Ashvagandha Tablet 60's",
price: "Best price* RS. 165",
strikedoffprice: "MRP. 165",
rs: 165,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15921/dabur_shilajit_gold_capsule_10s_0_1.jpg",
name: "Dabur Shilajit Gold Capsule 10's",
price: "Best price* RS. 220.0",
strikedoffprice: "MRP. 245.0",
rs: 220,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15920/dabur_shilajit_gold_capsule_20s_0_1.jpg",
name: "MEN'S REEBOK RUNNING RUN FUSION SHOES",
price: "Best price* RS. 391.0",
strikedoffprice: "MRP. 425",
rs: 391,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15919/dabur_shilajit_capsule_100_s_0.jpg",
name: "Dabur Shilajit Capsule 100's",
price: "Best price* RS. 440.0",
strikedoffprice: "MRP. 500.0",
rs: 440,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15912/dabur_honitus_herbal_cough_remedy_syrup_100_ml_0.jpg",
name: "Dabur Honitus Herbal Cough Remedy Syrup 100 ml",
price: "Best price* RS. 98.01",
strikedoffprice: "MRP. 99.0",
rs: 98.01,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/959720/hashmi_sikander_e_azam_plus_capsule_10s_0_0.jpg",
name: "Hashmi Sikander-e-Azam Plus Capsule 10's",
price: "Best price* RS. 1221.0",
strikedoffprice: "MRP. 1286.0",
rs: 1221,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/919948/dr_vaidyas_herbo_24_turbo_male_power_oil_pack_of_2_x_25_ml_0_1.jpg",
name: "Dr.Vaidya's Herbo 24 Turbo Male Power Oil (Pack of 2 x 25 ml)",
price: " Best price* RS. 288.0",
strikedoffprice: "MRP. 400.0",
rs: 288,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/959708/hashmi_hard_rock_capsule_20s_0_0.jpg",
name: "Hashmi Hard Rock Capsule 20's",
price: "Best price* RS. 1805.0",
strikedoffprice: "MRP. 1900.0",
rs: 1805,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/919949/dr_vaidyas_herbo_24_turbo_plus_capsule_30s_0_0.jpg",
name: "Dr.Vaidya's Herbo 24 Turbo Plus Capsule 30's",
price: "Best price* RS. 540.0",
strikedoffprice: "MRP. 750.0",
rs: 540,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/363656/pankajakasthuri_breathe_easy_granules_400_gm_0.jpg",
name: "Pankajakasthuri Breathe Easy Granules 400 gm",
price: "Best price* RS. 270.0",
strikedoffprice: "MRP. 330.0",
rs: 270,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/959712/hashmi_mughal_e_azam_plus_capsule_10s_0_0.jpg",
name: "Hashmi Mughal-E-Azam Plus Capsule 10's",
price: "Best price* RS. 823.0",
strikedoffprice: "MRP. 915.0",
rs: 823,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/953776/dr_vaidyas_herbo24turbo_capsule_pack_of_2_x_30s_0_0.jpg",
name: "Dr. Vaidya's Herbo24Turbo Capsule (Pack of 2 x 30's)",
price: "Best price* RS. 1000.0",
strikedoffprice: "MRP. 1000.0",
rs: 1000,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/953777/dr_vaidyas_herbo24turbo_capsule_pack_of_3_x_30s_0_0.jpg",
name: "Dr. Vaidya's Herbo24Turbo Capsule (Pack of 3 x 30's)",
price: "Best price* RS. 1500.0",
strikedoffprice: "MRP. 1500.0",
rs: 1500,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/410105/pankajakasthuri_breathe_easy_syrup_200_ml_0.jpg",
name: "Pankajakasthuri Breathe Easy Syrup 200 ml",
price: "Best price* RS. 148.5",
strikedoffprice: "MRP. 165.0",
rs: 148.5,
},
{
category: "Ayush",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/413011/pankajakasthuri_orthoherb_tablet_60_s_0.jpg",
name: "Pankajakasthuri Orthoherb Tablet 60's",
price: "Best price* RS. 225.5",
strikedoffprice: "MRP. 275.0",
rs: 225.5,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/947286/fingertip_pulse_oximeter_mi303_0_0.jpg",
name: "Pankajakasthuri Orthoherb Tablet 60's",
price: "Best price* RS. 809.5",
strikedoffprice: "MRP. 4490.0",
rs: 809.5,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/857452/accusure_blood_pressure_monitor_ts_0.jpg",
name: "AccuSure Blood Pressure Monitor - TS",
price: "Best price* RS. 1377.5",
strikedoffprice: "MRP. 2290.0",
rs: 1377.5,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/408251/omron_blood_pressure_cuff_hem_cl24_l_0.jpg",
name: "Omron Blood Pressure Cuff (HEM-CL24) (L)",
price: "Best price* RS. 765.5",
strikedoffprice: "MRP. 850.0",
rs: 765.5,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15590/omron_automatic_blood_pressure_monitor_hem_7120_0_2.jpg",
name: "Omron Automatic Blood Pressure Monitor (HEM-7120)",
price: "Best price* RS. 1864.0",
strikedoffprice: "MRP. 2330.0",
rs: 1864,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/15580/accu_chek_active_test_strips_50s_0_1.jpg",
name: "Accu-Chek Active Test Strips 50's",
price: "Best price* RS. 809.0",
strikedoffprice: "MRP. 975.0",
rs: 809,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/985297/univen_powder_free_nitrile_gloves_m_100s_0_1.jpg",
name: "UniVen Powder Free Nitrile Gloves (M) 100's",
price: "Best price* RS. 806.4",
strikedoffprice: "MRP. 1440.0",
rs: 806.4,
},
{
category: "Devices",
image_url:
"https://www.netmeds.com/images/product-v1/600x600/354458/accu_chek_active_test_strip_100_s_0.jpg",
name: "Accu-Chek Active Test Strip 100's",
price: "Best price* RS. 1483.5",
strikedoffprice: "MRP. 1725.0",
rs: 1483.5,
},
{
category: "Devices",
image_url: