-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2057 lines (1833 loc) · 104 KB
/
index.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>
<title>SwiftEdge - eCommerce</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="SwiftEdge is a beautiful eCommerce HTML template specially designed for multipurpose shops & online stores selling products. ">
<meta content="SwiftEdge" name="author" />
<!-- Favicon icon-->
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon/favicon.ico">
<!-- Libs CSS -->
<link href="assets/libs/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/libs/feather-webfont/dist/feather-icons.css" rel="stylesheet" />
<link href="assets/libs/slick-carousel/slick/slick.css" rel="stylesheet" />
<link href="assets/libs/slick-carousel/slick/slick-theme.css" rel="stylesheet" />
<link href="assets/libs/simplebar/dist/simplebar.min.css" rel="stylesheet" />
<link href="assets/libs/nouislider/dist/nouislider.min.css" rel="stylesheet">
<link href="assets/libs/tiny-slider/dist/tiny-slider.css" rel="stylesheet">
<link href="assets/libs/dropzone/dist/min/dropzone.min.css" rel="stylesheet" />
<link href="assets/libs/prismjs/themes/prism-okaidia.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/theme.min.css">
</head>
<body>
<!-- navigation -->
<div class="border-bottom pb-5">
<div class="bg-light py-1">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<span> Super Value Deals - Save more with coupons</span>
</div>
<div class="col-6 text-end d-none d-md-block">
<div class="dropdown">
<a class="dropdown-toggle text-decoration-none text-muted" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<span class="me-1">
</span>English
</a>
<ul class="dropdown-menu" >
<li><a class="dropdown-item " href="#"><span class="me-2">
</span>English</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-light py-lg-5 pt-3 px-0 pb-0">
<div class="container">
<div class="row w-100 align-items-center g-3">
<div class="col-xxl-2 col-lg-3">
<a class="navbar-brand d-none d-lg-block" href="index.html">
<img src="assets/images/logo/swift_edge-logo.png" alt="" height="50">
</a>
<div class="d-flex justify-content-between w-100 d-lg-none" >
<a class="navbar-brand" href="#">
<img src="assets/images/logo/swift_edge-logo.png" alt="" height="50">
</a>
<div class="d-flex align-items-center lh-1">
</div>
<!-- Button -->
</div>
</div>
</div>
<div class="col-xxl-6 col-lg-5 d-none d-lg-block">
<form action="#" class="search-header">
<div class="input-group">
<input type="text" class="form-control border-end-0" placeholder="Search for products.."
aria-label="Search for products.." aria-describedby="basic-addon2">
<span class="input-group-text bg-transparent" id="basic-addon2">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-search">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg></span>
</div>
</form>
</div>
<div class="col-md-2 col-xxl-3 d-none d-lg-block">
<!-- Button trigger modal -->
<button type="button" class="btn btn-outline-gray-400 text-muted" data-bs-toggle="modal"
data-bs-target="#locationModal">
<i class="feather-icon icon-map-pin me-2"></i>Location
</button>
</div>
<div class="col-md-2 col-xxl-1 text-end d-none d-lg-block">
<div class="list-inline">
<div class="list-inline-item">
<a href="pages/shop-wishlist.html" class="text-muted position-relative">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-heart">
<path
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z">
</path>
</svg>
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-success">
5
<span class="visually-hidden">unread messages</span>
</span>
</a></div>
<div class="list-inline-item">
<a href="#!" class="text-muted" data-bs-toggle="modal" data-bs-target="#userModal">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-user">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</a></div>
<div class="list-inline-item">
<a class="text-muted position-relative " data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight"
href="#offcanvasExample" role="button" aria-controls="offcanvasRight">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-shopping-bag">
<path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path>
<line x1="3" y1="6" x2="21" y2="6"></line>
<path d="M16 10a4 4 0 0 1-8 0"></path>
</svg>
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-success">
1
<span class="visually-hidden">unread messages</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<nav class="navbar navbar-expand-lg navbar-light navbar-default pt-0 pb-0">
<div class="container px-0 px-md-3">
<div class="dropdown me-3 d-none d-lg-block">
<button class="btn btn-primary px-6 " type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown"
aria-expanded="false">
<span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-grid">
<rect x="3" y="3" width="7" height="7"></rect>
<rect x="14" y="3" width="7" height="7"></rect>
<rect x="14" y="14" width="7" height="7"></rect>
<rect x="3" y="14" width="7" height="7"></rect>
</svg></span> All Departments
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="pages/shop-grid.html">Dairy, Bread & Eggs</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Snacks & Munchies</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Fruits & Vegetables</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Cold Drinks & Juices</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Breakfast & Instant Food</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Bakery & Biscuits</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Chicken, Meat & Fish</a></li>
</ul>
</div>
<div class="offcanvas offcanvas-start p-4 p-lg-0" id="navbar-default">
<div class="d-flex justify-content-between align-items-center mb-2 d-block d-lg-none">
<div><img src="assets/images/logo/freshcart-logo.svg" alt="eCommerce HTML Template"></div>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="d-block d-lg-none mb-2 pt-2">
<a class="btn btn-primary w-100 d-flex justify-content-center align-items-center" data-bs-toggle="collapse"
href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">
<span class="me-2"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-grid">
<rect x="3" y="3" width="7" height="7"></rect>
<rect x="14" y="3" width="7" height="7"></rect>
<rect x="14" y="14" width="7" height="7"></rect>
<rect x="3" y="14" width="7" height="7"></rect>
</svg></span> All Departments
</a>
<div class="collapse mt-2" id="collapseExample">
<div class="card card-body">
<ul class="mb-0 list-unstyled">
<li><a class="dropdown-item" href="pages/shop-grid.html">Dairy, Bread & Eggs</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Snacks & Munchies</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Fruits & Vegetables</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Cold Drinks & Juices</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Breakfast & Instant Food</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Bakery & Biscuits</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Chicken, Meat & Fish</a></li>
</ul>
</div>
</div>
</div>
<div class="d-lg-none d-block mb-3">
<button type="button" class="btn btn-outline-gray-400 text-muted w-100 " data-bs-toggle="modal"
data-bs-target="#locationModal">
<i class="feather-icon icon-map-pin me-2"></i>
Pick Location
</button>
</div>
<div class="d-none d-lg-block">
<ul class="navbar-nav ">
<li class="nav-item drdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Homeop
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="index.html">Home 1</a></li>
<li><a class="dropdown-item" href="pages/index-2.html">Home 2</a></li>
<li><a class="dropdown-item" href="pages/index-3.html">Home 3</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Shop
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/shop-grid.html">Shop Grid - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-grid-3-column.html">Shop Grid - 3 column</a>
</li>
<li><a class="dropdown-item" href="pages/shop-list.html">Shop List - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-filter.html">Shop - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-fullwidth.html">Shop Wide</a></li>
<li><a class="dropdown-item" href="pages/shop-single.html">Shop Single</a></li>
<li><a class="dropdown-item" href="pages/shop-wishlist.html">Shop Wishlist</a></li>
<li><a class="dropdown-item" href="pages/shop-cart.html">Shop Cart</a></li>
<li><a class="dropdown-item" href="pages/shop-checkout.html">Shop Checkout</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Stores
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/store-list.html">Store List</a></li>
<li><a class="dropdown-item" href="pages/store-grid.html">Store Grid</a></li>
<li><a class="dropdown-item" href="pages/store-single.html">Store Single</a></li>
</ul>
</li>
<li class="nav-item dropdown dropdown-fullwidth">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Mega menu
</a>
<div class=" dropdown-menu pb-0">
<div class="row p-2 p-lg-4">
<div class="col-lg-3 col-6 mb-4 mb-lg-0">
<h6 class="text-primary ps-3">Dairy, Bread & Eggs</h6>
<a class="dropdown-item" href="pages/shop-grid.html">Butter</a>
<a class="dropdown-item" href="pages/shop-grid.html">Milk Drinks</a>
<a class="dropdown-item" href="pages/shop-grid.html">Curd & Yogurt</a>
<a class="dropdown-item" href="pages/shop-grid.html">Eggs</a>
<a class="dropdown-item" href="pages/shop-grid.html">Buns & Bakery</a>
<a class="dropdown-item" href="pages/shop-grid.html">Cheese</a>
<a class="dropdown-item" href="pages/shop-grid.html">Condensed Milk</a>
<a class="dropdown-item" href="pages/shop-grid.html">Dairy Products</a>
</div>
<div class="col-lg-3 col-6 mb-4 mb-lg-0">
<h6 class="text-primary ps-3">Breakfast & Instant Food</h6>
<a class="dropdown-item" href="pages/shop-grid.html">Breakfast Cereal</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Noodles, Pasta & Soup</a>
<a class="dropdown-item" href="pages/shop-grid.html">Frozen Veg Snacks</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Frozen Non-Veg Snacks</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Vermicelli</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Instant Mixes</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Batter</a>
<a class="dropdown-item" href="pages/shop-grid.html"> Fruit and Juices</a>
</div>
<div class="col-lg-3 col-12 mb-4 mb-lg-0">
<h6 class="text-primary ps-3">Cold Drinks & Juices</h6>
<a class="dropdown-item" href="pages/shop-grid.html">Soft Drinks</a>
<a class="dropdown-item" href="pages/shop-grid.html">Fruit Juices</a>
<a class="dropdown-item" href="pages/shop-grid.html">Coldpress</a>
<a class="dropdown-item" href="pages/shop-grid.html">Water & Ice Cubes</a>
<a class="dropdown-item" href="pages/shop-grid.html">Soda & Mixers</a>
<a class="dropdown-item" href="pages/shop-grid.html">Health Drinks</a>
<a class="dropdown-item" href="pages/shop-grid.html">Herbal Drinks</a>
<a class="dropdown-item" href="pages/shop-grid.html">Milk Drinks</a>
</div>
<div class="col-lg-3 col-12 mb-4 mb-lg-0">
<div class="card border-0">
<img src="assets/images/banner/menu-banner.jpg" alt="eCommerce HTML Template"
class="img-fluid rounded-3">
<div class="position-absolute ps-6 mt-8">
<h5 class=" mb-0 ">Dont miss this <br>offer today.</h5>
<a href="#" class="btn btn-primary btn-sm mt-3">Shop Now</a>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Pages
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/blog.html">Blog</a></li>
<li><a class="dropdown-item" href="pages/blog-single.html">Blog Single</a></li>
<li><a class="dropdown-item" href="pages/blog-category.html">Blog Category</a></li>
<li><a class="dropdown-item" href="pages/about.html">About us</a></li>
<li><a class="dropdown-item" href="pages/404error.html">404 Error</a></li>
<li><a class="dropdown-item" href="pages/contact.html">Contact</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Account
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/signin.html">Sign in</a></li>
<li><a class="dropdown-item" href="pages/signup.html">Signup</a></li>
<li><a class="dropdown-item" href="pages/forgot-password.html">Forgot Password</a></li>
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-list-group-item dropdown-toggle" href="#">
My Account
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/account-orders.html">Orders</a></li>
<li><a class="dropdown-item" href="pages/account-settings.html">Settings</a></li>
<li><a class="dropdown-item" href="pages/account-address.html">Address</a></li>
<li><a class="dropdown-item" href="pages/account-payment-method.html">Payment Method</a>
</li>
<li><a class="dropdown-item" href="pages/account-notification.html">Notification</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a class="nav-link" href="docs/index.html">
Docs
</a>
</li>
</ul>
</div>
<div class="d-block d-lg-none">
<ul class="navbar-nav ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Home
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="index.html">Home 1</a></li>
<li><a class="dropdown-item" href="pages/index-2.html">Home 2</a></li>
<li><a class="dropdown-item" href="pages/index-3.html">Home 3</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Shop
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/shop-grid.html">Shop Grid - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-grid-3-column.html">Shop Grid - 3 column</a>
</li>
<li><a class="dropdown-item" href="pages/shop-list.html">Shop List - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-filter.html">Shop - Filter</a></li>
<li><a class="dropdown-item" href="pages/shop-fullwidth.html">Shop Wide</a></li>
<li><a class="dropdown-item" href="pages/shop-single.html">Shop Single</a></li>
<li><a class="dropdown-item" href="pages/shop-wishlist.html">Shop Wishlist</a></li>
<li><a class="dropdown-item" href="pages/shop-cart.html">Shop Cart</a></li>
<li><a class="dropdown-item" href="pages/shop-checkout.html">Shop Checkout</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Stores
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/store-list.html">Store List</a></li>
<li><a class="dropdown-item" href="pages/store-grid.html">Store Grid</a></li>
<li><a class="dropdown-item" href="pages/store-single.html">Store Single</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Mega Menu
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu ">
<a class="dropdown-item dropdown-list-group-item dropdown-toggle" href="#">
Dairy, Bread & Eggs
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/shop-grid.html">Milk Drinks</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Curd & Yogurt</a></li>
<li> <a class="dropdown-item" href="pages/shop-grid.html">Eggs</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Buns & Bakery</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Cheese</a></li>
<li> <a class="dropdown-item" href="pages/shop-grid.html">Condensed Milk</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Dairy Products</a></li>
</ul>
</li>
<li class="dropdown-submenu ">
<a class="dropdown-item dropdown-list-group-item dropdown-toggle" href="#">
Vegetables & Fruits
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/shop-grid.html">Vegetables</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Fruits</a></li>
<li> <a class="dropdown-item" href="pages/shop-grid.html">Exotics & Premium</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Fresh Sprouts</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Frozen Veg</a></li>
</ul>
</li>
<li class="dropdown-submenu ">
<a class="dropdown-item dropdown-list-group-item dropdown-toggle" href="#">
Cold Drinks & Juices
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/shop-grid.html">Soft Drinks</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Fruit Juices</a></li>
<li> <a class="dropdown-item" href="pages/shop-grid.html">Coldpress</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Soda & Mixers</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Milk Drinks</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Health Drinks</a></li>
<li><a class="dropdown-item" href="pages/shop-grid.html">Herbal Drinks</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Pages
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/blog.html">Blog</a></li>
<li><a class="dropdown-item" href="pages/blog-single.html">Blog Single</a></li>
<li><a class="dropdown-item" href="pages/blog-category.html">Blog Category</a></li>
<li><a class="dropdown-item" href="pages/about.html">About us</a></li>
<li><a class="dropdown-item" href="pages/404error.html">404 Error</a></li>
<li><a class="dropdown-item" href="pages/contact.html">Contact</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Account
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/signin.html">Sign in</a></li>
<li><a class="dropdown-item" href="pages/signup.html">Signup</a></li>
<li><a class="dropdown-item" href="pages/forgot-password.html">Forgot Password</a></li>
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-list-group-item dropdown-toggle" href="#">
My Account
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pages/account-orders.html">Orders</a></li>
<li><a class="dropdown-item" href="pages/account-settings.html">Settings</a></li>
<li><a class="dropdown-item" href="pages/account-address.html">Address</a></li>
<li><a class="dropdown-item" href="pages/account-payment-method.html">Payment Method</a>
</li>
<li><a class="dropdown-item" href="pages/account-notification.html">Notification</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item ">
<a class="nav-link" href="docs/index.html">
Docs
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<!-- Modal -->
<div class="modal fade" id="userModal" tabindex="-1" aria-labelledby="userModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content p-4">
<div class="modal-header border-0">
<h5 class="modal-title fs-3 fw-bold" id="userModalLabel">Sign Up</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="fullName" class="form-label">Name</label>
<input type="text" class="form-control" id="fullName" placeholder="Enter Your Name" required="">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Enter Email address" required="">
</div>
<div class="mb-5">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" placeholder="Enter Password" required="">
<small class="form-text">By Signup, you agree to our <a href="#!">Terms of Service</a> & <a
href="#!">Privacy Policy</a></small>
</div>
<button type="submit" class="btn btn-primary">Sign Up</button>
</form>
</div>
<div class="modal-footer border-0 justify-content-center">
Already have an account? <a href="#">Sign in</a>
</div>
</div>
</div>
</div>
<!-- Shop Cart -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header border-bottom">
<div class="text-start">
<h5 id="offcanvasRightLabel" class="mb-0 fs-4">Shop Cart</h5>
<small>Location in 382480</small>
</div>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="alert alert-danger" role="alert">
You’ve got FREE delivery. Start checkout now!
</div>
<div>
<div class="py-3">
<ul class="list-group list-group-flush">
<li class="list-group-item py-3 px-0 border-top">
<div class="row align-items-center">
<div class="col-2">
<img src="assets/images/products/product-img-1.jpg" alt="Ecommerce" class="img-fluid"></div>
<div class="col-5">
<h6 class="mb-0">Organic Banana</h6>
<span><small class="text-muted">.98 / lb</small></span>
<div class="mt-2 small"> <a href="#!" class="text-decoration-none"> <span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-trash-2">
<polyline points="3 6 5 6 21 6"></polyline>
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
<line x1="10" y1="11" x2="10" y2="17"></line>
<line x1="14" y1="11" x2="14" y2="17"></line>
</svg></span>Remove</a></div>
</div>
<div class="col-3">
<div class="input-group flex-nowrap justify-content-center ">
<input type="button" value="-"
class="button-minus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
<input type="number" step="1" max="10" value="1" name="quantity"
class="quantity-field form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 ">
<input type="button" value="+"
class="button-plus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
</div>
</div>
<div class="col-2 text-end">
<span class="fw-bold">$35.00</span>
</div>
</div>
</li>
<li class="list-group-item py-3 px-0">
<div class="row row align-items-center">
<div class="col-2">
<img src="assets/images/products/product-img-2.jpg" alt="Ecommerce" class="img-fluid"></div>
<div class="col-5">
<h6 class="mb-0">Fresh Garlic, 250g</h6>
<span><small class="text-muted">250g</small></span>
<div class="mt-2 small"> <a href="#!" class="text-decoration-none"> <span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-trash-2">
<polyline points="3 6 5 6 21 6"></polyline>
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
<line x1="10" y1="11" x2="10" y2="17"></line>
<line x1="14" y1="11" x2="14" y2="17"></line>
</svg></span>Remove</a></div>
</div>
<div class="col-3">
<div class="input-group flex-nowrap justify-content-center ">
<input type="button" value="-"
class="button-minus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
<input type="number" step="1" max="10" value="1" name="quantity"
class="quantity-field form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 ">
<input type="button" value="+"
class="button-plus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
</div>
</div>
<div class="col-2 text-end">
<span class="fw-bold">$20.97</span>
<span class="text-decoration-line-through text-muted small">$26.97</span>
</div>
</div>
</li>
<li class="list-group-item py-3 px-0">
<div class="row row align-items-center">
<div class="col-2">
<img src="assets/images/products/product-img-3.jpg" alt="Ecommerce" class="img-fluid"></div>
<div class="col-5">
<h6 class="mb-0">Fresh Onion, 1kg</h6>
<span><small class="text-muted">1 kg</small></span>
<div class="mt-2 small"> <a href="#!" class="text-decoration-none"> <span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-trash-2">
<polyline points="3 6 5 6 21 6"></polyline>
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
<line x1="10" y1="11" x2="10" y2="17"></line>
<line x1="14" y1="11" x2="14" y2="17"></line>
</svg></span>Remove</a></div>
</div>
<div class="col-3">
<div class="input-group flex-nowrap justify-content-center ">
<input type="button" value="-"
class="button-minus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
<input type="number" step="1" max="10" value="1" name="quantity"
class="quantity-field form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 ">
<input type="button" value="+"
class="button-plus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
</div>
</div>
<div class="col-2 text-end">
<span class="fw-bold">$25.00</span>
<span class="text-decoration-line-through text-muted small">$45.00</span>
</div>
</div>
</li>
<li class="list-group-item py-3 px-0">
<div class="row row align-items-center">
<div class="col-2">
<img src="assets/images/products/product-img-4.jpg" alt="Ecommerce" class="img-fluid"></div>
<div class="col-5">
<h6 class="mb-0">Fresh Ginger</h6>
<span><small class="text-muted">250g</small></span>
<div class="mt-2 small"> <a href="#!" class="text-decoration-none"> <span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-trash-2">
<polyline points="3 6 5 6 21 6"></polyline>
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
<line x1="10" y1="11" x2="10" y2="17"></line>
<line x1="14" y1="11" x2="14" y2="17"></line>
</svg></span>Remove</a></div>
</div>
<div class="col-3">
<div class="input-group flex-nowrap justify-content-center ">
<input type="button" value="-"
class="button-minus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
<input type="number" step="1" max="10" value="1" name="quantity"
class="quantity-field form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 ">
<input type="button" value="+"
class="button-plus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
</div>
</div>
<div class="col-2 text-end">
<span class="fw-bold">$39.87</span>
<span class="text-decoration-line-through text-muted small">$45.00</span>
</div>
</div>
</li>
<li class="list-group-item py-3 px-0 border-bottom">
<div class="row row align-items-center">
<div class="col-2">
<img src="assets/images/products/product-img-5.jpg" alt="Ecommerce" class="img-fluid"></div>
<div class="col-5">
<h6 class="mb-0">Apple Royal Gala, 4 Pieces Box</h6>
<span><small class="text-muted">4 Apple</small></span>
<div class="mt-2 small"> <a href="#!" class="text-decoration-none"> <span class="me-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-trash-2">
<polyline points="3 6 5 6 21 6"></polyline>
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
<line x1="10" y1="11" x2="10" y2="17"></line>
<line x1="14" y1="11" x2="14" y2="17"></line>
</svg></span>Remove</a></div>
</div>
<div class="col-3">
<div class="input-group flex-nowrap justify-content-center ">
<input type="button" value="-"
class="button-minus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
<input type="number" step="1" max="10" value="1" name="quantity"
class="quantity-field form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 ">
<input type="button" value="+"
class="button-plus form-control text-center flex-xl-none w-xl-30 w-xxl-10 px-0 "
data-field="quantity">
</div>
</div>
<div class="col-2 text-end">
<span class="fw-bold">$39.87</span>
<span class="text-decoration-line-through text-muted small">$45.00</span>
</div>
</div>
</li>
</ul>
</div>
<div class="d-grid">
<button class="btn btn-primary btn-lg d-flex justify-content-between align-items-center" type="submit"> Go to
Checkout <span class="fw-bold">$120.00</span></button>
</div>
</div>
</div>
</div>
<!--Location Modal -->
<div class="modal fade" id="locationModal" tabindex="-1" aria-labelledby="locationModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered">
<div class="modal-content">
<div class="modal-body p-6">
<div class="d-flex justify-content-between align-items-start ">
<div>
<h5 class="mb-1" id="locationModalLabel">Choose your Delivery Location</h5>
<p class="mb-0 small">Enter your address and we will specify the offer you area. </p>
</div>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="my-5">
<input type="search" class="form-control" placeholder="Search your area">
</div>
<div class="d-flex justify-content-between align-items-center mb-2">
<h6 class="mb-0">Select Location</h6>
<a href="#" class="btn btn-outline-gray-400 text-muted btn-sm">Clear All</a>
</div>
<div>
<div data-simplebar style="height:300px;">
<div class="list-group list-group-flush">
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action active">
<span>Alabama</span><span>Min:$20</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Alaska</span><span>Min:$30</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Arizona</span><span>Min:$50</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>California</span><span>Min:$29</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Colorado</span><span>Min:$80</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Florida</span><span>Min:$90</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Arizona</span><span>Min:$50</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>California</span><span>Min:$29</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Colorado</span><span>Min:$80</span></a>
<a href="#"
class="list-group-item d-flex justify-content-between align-items-center px-2 py-3 list-group-item-action">
<span>Florida</span><span>Min:$90</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="mt-8">
<div class="container">
<div class="hero-slider ">
<div
style="background: url(assets/images/slider/slide-1.jpg)no-repeat; background-size: cover; border-radius: .5rem; background-position: center;">
<div class="ps-lg-12 py-lg-16 col-xxl-5 col-md-7 py-14 px-8 text-xs-center">
<span class="badge text-bg-warning">Opening Sale Discount 50%</span>
<h2 class="text-dark display-5 fw-bold mt-4">SuperMarket Daily <br> Fresh Grocery </h2>
<p class="lead">Introduced a new model for online grocery shopping
and convenient home delivery.</p>
<a href="#!" class="btn btn-dark mt-3">Shop Now <i class="feather-icon icon-arrow-right ms-1"></i></a>
</div>
</div>
<div class=" "
style="background: url(assets/images/slider/slider-2.jpg)no-repeat; background-size: cover; border-radius: .5rem; background-position: center;">
<div class="ps-lg-12 py-lg-16 col-xxl-5 col-md-7 py-14 px-8 text-xs-center">
<span class="badge text-bg-warning">Free Shipping - orders over $100</span>
<h2 class="text-dark display-5 fw-bold mt-4">Free Shipping on <br> orders over <span
class="text-primary">$100</span></h2>
<p class="lead">Free Shipping to First-Time Customers Only, After promotions and discounts are applied.
</p>
<a href="#!" class="btn btn-dark mt-3">Shop Now <i class="feather-icon icon-arrow-right ms-1"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Category Section Start-->
<section class="mb-lg-10 mt-lg-14 my-8">
<div class="container">
<div class="row">
<div class="col-12 mb-6">
<h3 class="mb-0">Featured Categories</h3>
</div>
</div>
<div class="category-slider ">
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-dairy-bread-eggs.jpg" alt="Grocery Ecommerce Template"
class="mb-3 img-fluid">
<div>Dairy, Bread & Eggs</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-snack-munchies.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Snack & Munchies</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-bakery-biscuits.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Bakery & Biscuits</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-instant-food.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Instant Food</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-tea-coffee-drinks.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Tea, Coffee & Drinks</div>
</div>
</div>
</a></div>
<div class="item"><a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-atta-rice-dal.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Atta, Rice & Dal</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-baby-care.jpg" alt="Grocery Ecommerce Template" class="mb-3">
<div>Baby Care</div>
</div>
</div>
</a></div>
<div class="item"> <a href="pages/shop-grid.html" class="text-decoration-none text-inherit">
<div class="card card-product mb-4">
<div class="card-body text-center py-8">
<img src="assets/images/category/category-chicken-meat-fish.jpg" alt="Grocery Ecommerce Template"
class="mb-3">
<div>Chicken, Meat & Fish</div>