-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome2-default.php
1799 lines (1764 loc) · 125 KB
/
home2-default.php
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 class="no-js" lang="en">
<!-- belle/home2-default.html 11 Nov 2019 12:22:28 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Belle Multipurpose Bootstrap 4 Html Template</title>
<meta name="description" content="description">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.png" />
<!-- Plugins CSS -->
<link rel="stylesheet" href="assets/css/plugins.css">
<!-- Bootstap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Main Style CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body class="template-index home2-default">
<div id="pre-loader">
<img src="assets/images/loader.gif" alt="Loading..." />
</div>
<div class="pageWrapper">
<!--Promotion Bar-->
<div class="notification-bar mobilehide">
<a href="#" class="notification-bar__message">20% off your very first purchase, use promo code: belle fashion</a>
<span class="close-announcement">×</span>
</div>
<!--End Promotion Bar-->
<!--Search Form Drawer-->
<div class="search">
<div class="search__form">
<form class="search-bar__form" action="#">
<button class="go-btn search__button" type="submit"><i class="icon anm anm-search-l"></i></button>
<input class="search__input" type="search" name="q" value="" placeholder="Search entire store..." aria-label="Search" autocomplete="off">
</form>
<button type="button" class="search-trigger close-btn"><i class="anm anm-times-l"></i></button>
</div>
</div>
<!--End Search Form Drawer-->
<!--Top Header-->
<div class="top-header">
<div class="container-fluid">
<div class="row">
<div class="col-10 col-sm-8 col-md-5 col-lg-4">
<div class="currency-picker">
<span class="selected-currency">USD</span>
<ul id="currencies">
<li data-currency="INR" class="">INR</li>
<li data-currency="GBP" class="">GBP</li>
<li data-currency="CAD" class="">CAD</li>
<li data-currency="USD" class="selected">USD</li>
<li data-currency="AUD" class="">AUD</li>
<li data-currency="EUR" class="">EUR</li>
<li data-currency="JPY" class="">JPY</li>
</ul>
</div>
<div class="language-dropdown">
<span class="language-dd">English</span>
<ul id="language">
<li class="">German</li>
<li class="">French</li>
</ul>
</div>
<p class="phone-no"><i class="anm anm-phone-s"></i> +440 0(111) 044 833</p>
</div>
<div class="col-sm-4 col-md-4 col-lg-4 d-none d-lg-none d-md-block d-lg-block">
<div class="text-center"><p class="top-header_middle-text"> Worldwide Express Shipping</p></div>
</div>
<div class="col-2 col-sm-4 col-md-3 col-lg-4 text-right">
<span class="user-menu d-block d-lg-none"><i class="anm anm-user-al" aria-hidden="true"></i></span>
<ul class="customer-links list-inline">
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Create Account</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--End Top Header-->
<!--Header-->
<div class="header-wrap animated d-flex border-bottom">
<div class="container-fluid">
<div class="row align-items-center">
<!--Desktop Logo-->
<div class="logo col-md-2 col-lg-2 d-none d-lg-block">
<a href="index.html">
<img src="assets/images/logo.svg" alt="Belle Multipurpose Html Template" title="Belle Multipurpose Html Template" />
</a>
</div>
<!--End Desktop Logo-->
<div class="col-2 col-sm-3 col-md-3 col-lg-8">
<div class="d-block d-lg-none">
<button type="button" class="btn--link site-header__menu js-mobile-nav-toggle mobile-nav--open">
<i class="icon anm anm-times-l"></i>
<i class="anm anm-bars-r"></i>
</button>
</div>
<!--Desktop Menu-->
<nav class="grid__item" id="AccessibleNav"><!-- for mobile -->
<ul id="siteNav" class="site-nav medium center hidearrow">
<li class="lvl1 parent megamenu"><a href="#">Home <i class="anm anm-angle-down-l"></i></a>
<div class="megamenu style1">
<ul class="grid mmWrapper">
<li class="grid__item large-up--one-whole">
<ul class="grid">
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Home Group 1</a>
<ul class="subLinks">
<li class="lvl-2"><a href="index.html" class="site-nav lvl-2">Home 1 - Classic</a></li>
<li class="lvl-2"><a href="home2-default.html" class="site-nav lvl-2">Home 2 - Default</a></li>
<li class="lvl-2"><a href="home15-funiture.html" class="site-nav lvl-2">Home 15 - Furniture <span class="lbl nm_label1">New</span></a></li>
<li class="lvl-2"><a href="home3-boxed.html" class="site-nav lvl-2">Home 3 - Boxed</a></li>
<li class="lvl-2"><a href="home4-fullwidth.html" class="site-nav lvl-2">Home 4 - Fullwidth</a></li>
<li class="lvl-2"><a href="home5-cosmetic.html" class="site-nav lvl-2">Home 5 - Cosmetic</a></li>
<li class="lvl-2"><a href="home6-modern.html" class="site-nav lvl-2">Home 6 - Modern</a></li>
<li class="lvl-2"><a href="home7-shoes.html" class="site-nav lvl-2">Home 7 - Shoes</a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Home Group 2</a>
<ul class="subLinks">
<li class="lvl-2"><a href="home8-jewellery.html" class="site-nav lvl-2">Home 8 - Jewellery</a></li>
<li class="lvl-2"><a href="home9-parallax.html" class="site-nav lvl-2">Home 9 - Parallax</a></li>
<li class="lvl-2"><a href="home10-minimal.html" class="site-nav lvl-2">Home 10 - Minimal</a></li>
<li class="lvl-2"><a href="home11-grid.html" class="site-nav lvl-2">Home 11 - Grid</a></li>
<li class="lvl-2"><a href="home12-category.html" class="site-nav lvl-2">Home 12 - Category</a></li>
<li class="lvl-2"><a href="home13-auto-parts.html" class="site-nav lvl-2">Home 13 - Auto Parts</a></li>
<li class="lvl-2"><a href="home14-bags.html" class="site-nav lvl-2">Home 14 - Bags <span class="lbl nm_label1">New</span></a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">New Sections</a>
<ul class="subLinks">
<li class="lvl-2"><a href="home11-grid.html" class="site-nav lvl-2">Image Gallery</a></li>
<li class="lvl-2"><a href="home5-cosmetic.html" class="site-nav lvl-2">Featured Product</a></li>
<li class="lvl-2"><a href="home7-shoes.html" class="site-nav lvl-2">Columns with Items</a></li>
<li class="lvl-2"><a href="home6-modern.html" class="site-nav lvl-2">Text columns with images</a></li>
<li class="lvl-2"><a href="home2-default.html" class="site-nav lvl-2">Products Carousel</a></li>
<li class="lvl-2"><a href="home9-parallax.html" class="site-nav lvl-2">Parallax Banner</a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">New Features</a>
<ul class="subLinks">
<li class="lvl-2"><a href="home13-auto-parts.html" class="site-nav lvl-2">Top Information Bar <span class="lbl nm_label1">New</span></a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">Age Varification <span class="lbl nm_label1">New</span></a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">Footer Blocks</a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">2 New Megamenu style</a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">Show Total Savings <span class="lbl nm_label3">Hot</span></a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">New Custom Icons</a></li>
<li class="lvl-2"><a href="#" class="site-nav lvl-2">Auto Currency</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</li>
<li class="lvl1 parent megamenu"><a href="#">Shop <i class="anm anm-angle-down-l"></i></a>
<div class="megamenu style4">
<ul class="grid grid--uniform mmWrapper">
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Shop Pages</a>
<ul class="subLinks">
<li class="lvl-2"><a href="shop-left-sidebar.html" class="site-nav lvl-2">Left Sidebar</a></li>
<li class="lvl-2"><a href="shop-right-sidebar.html" class="site-nav lvl-2">Right Sidebar</a></li>
<li class="lvl-2"><a href="shop-fullwidth.html" class="site-nav lvl-2">Fullwidth</a></li>
<li class="lvl-2"><a href="shop-grid-3.html" class="site-nav lvl-2">3 items per row</a></li>
<li class="lvl-2"><a href="shop-grid-4.html" class="site-nav lvl-2">4 items per row</a></li>
<li class="lvl-2"><a href="shop-grid-5.html" class="site-nav lvl-2">5 items per row</a></li>
<li class="lvl-2"><a href="shop-grid-6.html" class="site-nav lvl-2">6 items per row</a></li>
<li class="lvl-2"><a href="shop-grid-7.html" class="site-nav lvl-2">7 items per row</a></li>
<li class="lvl-2"><a href="shop-listview.html" class="site-nav lvl-2">Product Listview</a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Shop Features</a>
<ul class="subLinks">
<li class="lvl-2"><a href="shop-left-sidebar.html" class="site-nav lvl-2">Product Countdown <span class="lbl nm_label3">Hot</span></a></li>
<li class="lvl-2"><a href="shop-right-sidebar.html" class="site-nav lvl-2">Infinite Scrolling</a></li>
<li class="lvl-2"><a href="shop-grid-3.html" class="site-nav lvl-2">Pagination - Classic</a></li>
<li class="lvl-2"><a href="shop-grid-6.html" class="site-nav lvl-2">Pagination - Load More</a></li>
<li class="lvl-2"><a href="product-labels.html" class="site-nav lvl-2">Dynamic Product Labels</a></li>
<li class="lvl-2"><a href="product-swatches-style.html" class="site-nav lvl-2">Product Swatches <span class="lbl nm_label2">Sale</span></a></li>
<li class="lvl-2"><a href="product-hover-info.html" class="site-nav lvl-2">Product Hover Info</a></li>
<li class="lvl-2"><a href="shop-grid-3.html" class="site-nav lvl-2">Product Reviews</a></li>
<li class="lvl-2"><a href="shop-left-sidebar.html" class="site-nav lvl-2">Discount Label <span class="lbl nm_label1">New</span></a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-6 col-lg-6">
<a href="#"><img src="assets/images/megamenu-bg1.jpg" alt="" title="" /></a>
</li>
</ul>
</div>
</li>
<li class="lvl1 parent megamenu"><a href="#">Product <i class="anm anm-angle-down-l"></i></a>
<div class="megamenu style2">
<ul class="grid mmWrapper">
<li class="grid__item one-whole">
<ul class="grid">
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Product Page</a>
<ul class="subLinks">
<li class="lvl-2"><a href="product-layout-1.html" class="site-nav lvl-2">Product Layout 1</a></li>
<li class="lvl-2"><a href="product-layout-2.html" class="site-nav lvl-2">Product Layout 2</a></li>
<li class="lvl-2"><a href="product-layout-3.html" class="site-nav lvl-2">Product Layout 3</a></li>
<li class="lvl-2"><a href="product-with-left-thumbs.html" class="site-nav lvl-2">Product With Left Thumbs</a></li>
<li class="lvl-2"><a href="product-with-right-thumbs.html" class="site-nav lvl-2">Product With Right Thumbs</a></li>
<li class="lvl-2"><a href="product-with-bottom-thumbs.html" class="site-nav lvl-2">Product With Bottom Thumbs</a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Product Features</a>
<ul class="subLinks">
<li class="lvl-2"><a href="short-description.html" class="site-nav lvl-2">Short Description</a></li>
<li class="lvl-2"><a href="product-countdown.html" class="site-nav lvl-2">Product Countdown</a></li>
<li class="lvl-2"><a href="product-video.html" class="site-nav lvl-2">Product Video</a></li>
<li class="lvl-2"><a href="product-quantity-message.html" class="site-nav lvl-2">Product Quantity Message</a></li>
<li class="lvl-2"><a href="product-visitor-sold-count.html" class="site-nav lvl-2">Product Visitor/Sold Count <span class="lbl nm_label3">Hot</span></a></li>
<li class="lvl-2"><a href="product-zoom-lightbox.html" class="site-nav lvl-2">Product Zoom/Lightbox <span class="lbl nm_label1">New</span></a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Product Features</a>
<ul class="subLinks">
<li class="lvl-2"><a href="product-with-variant-image.html" class="site-nav lvl-2">Product with Variant Image</a></li>
<li class="lvl-2"><a href="product-with-color-swatch.html" class="site-nav lvl-2">Product with Color Swatch</a></li>
<li class="lvl-2"><a href="product-with-image-swatch.html" class="site-nav lvl-2">Product with Image Swatch</a></li>
<li class="lvl-2"><a href="product-with-dropdown.html" class="site-nav lvl-2">Product with Dropdown</a></li>
<li class="lvl-2"><a href="product-with-rounded-square.html" class="site-nav lvl-2">Product with Rounded Square</a></li>
<li class="lvl-2"><a href="swatches-style.html" class="site-nav lvl-2">Product Swatches All Style</a></li>
</ul>
</li>
<li class="grid__item lvl-1 col-md-3 col-lg-3"><a href="#" class="site-nav lvl-1">Product Features</a>
<ul class="subLinks">
<li class="lvl-2"><a href="product-accordion.html" class="site-nav lvl-2">Product Accordion</a></li>
<li class="lvl-2"><a href="product-pre-orders.html" class="site-nav lvl-2">Product Pre-orders <span class="lbl nm_label1">New</span></a></li>
<li class="lvl-2"><a href="product-labels-detail.html" class="site-nav lvl-2">Product Labels</a></li>
<li class="lvl-2"><a href="product-discount.html" class="site-nav lvl-2">Product Discount In %</a></li>
<li class="lvl-2"><a href="product-shipping-message.html" class="site-nav lvl-2">Product Shipping Message</a></li>
<li class="lvl-2"><a href="size-guide.html" class="site-nav lvl-2">Size Guide <span class="lbl nm_label1">New</span></a></li>
</ul>
</li>
</ul>
</li>
<li class="grid__item large-up--one-whole imageCol"><a href="#"><img src="assets/images/megamenu-bg2.jpg" alt=""></a></li>
</ul>
</div>
</li>
<li class="lvl1 parent dropdown"><a href="#">Pages <i class="anm anm-angle-down-l"></i></a>
<ul class="dropdown">
<li><a href="cart-variant1.html" class="site-nav">Cart Page <i class="anm anm-angle-right-l"></i></a>
<ul class="dropdown">
<li><a href="cart-variant1.html" class="site-nav">Cart Variant1</a></li>
<li><a href="cart-variant2.html" class="site-nav">Cart Variant2</a></li>
</ul>
</li>
<li><a href="compare-variant1.html" class="site-nav">Compare Product <i class="anm anm-angle-right-l"></i></a>
<ul class="dropdown">
<li><a href="compare-variant1.html" class="site-nav">Compare Variant1</a></li>
<li><a href="compare-variant2.html" class="site-nav">Compare Variant2</a></li>
</ul>
</li>
<li><a href="checkout.html" class="site-nav">Checkout</a></li>
<li><a href="about-us.html" class="site-nav">About Us <span class="lbl nm_label1">New</span> </a></li>
<li><a href="contact-us.html" class="site-nav">Contact Us</a></li>
<li><a href="faqs.html" class="site-nav">FAQs</a></li>
<li><a href="lookbook1.html" class="site-nav">Lookbook<i class="anm anm-angle-right-l"></i></a>
<ul>
<li><a href="lookbook1.html" class="site-nav">Style 1</a></li>
<li><a href="lookbook2.html" class="site-nav">Style 2</a></li>
</ul>
</li>
<li><a href="404.html" class="site-nav">404</a></li>
<li><a href="coming-soon.html" class="site-nav">Coming soon <span class="lbl nm_label1">New</span> </a></li>
</ul>
</li>
<li class="lvl1 parent dropdown"><a href="#">Blog <i class="anm anm-angle-down-l"></i></a>
<ul class="dropdown">
<li><a href="blog-left-sidebar.html" class="site-nav">Left Sidebar</a></li>
<li><a href="blog-right-sidebar.html" class="site-nav">Right Sidebar</a></li>
<li><a href="blog-fullwidth.html" class="site-nav">Fullwidth</a></li>
<li><a href="blog-grid-view.html" class="site-nav">Gridview</a></li>
<li><a href="blog-article.html" class="site-nav">Article</a></li>
</ul>
</li>
<li class="lvl1"><a href="#"><b>Buy Now!</b> <i class="anm anm-angle-down-l"></i></a></li>
</ul>
</nav>
<!--End Desktop Menu-->
</div>
<!--Mobile Logo-->
<div class="col-6 col-sm-6 col-md-6 col-lg-2 d-block d-lg-none mobile-logo">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo.svg" alt="Belle Multipurpose Html Template" title="Belle Multipurpose Html Template" />
</a>
</div>
</div>
<!--Mobile Logo-->
<div class="col-4 col-sm-3 col-md-3 col-lg-2">
<div class="site-cart">
<a href="#" class="site-header__cart" title="Cart">
<i class="icon anm anm-bag-l"></i>
<span id="CartCount" class="site-header__cart-count" data-cart-render="item_count">2</span>
</a>
<!--Minicart Popup-->
<div id="header-cart" class="block block-cart">
<ul class="mini-products-list">
<li class="item">
<a class="product-image" href="#">
<img src="assets/images/product-images/cape-dress-1.jpg" alt="3/4 Sleeve Kimono Dress" title="" />
</a>
<div class="product-details">
<a href="#" class="remove"><i class="anm anm-times-l" aria-hidden="true"></i></a>
<a href="#" class="edit-i remove"><i class="anm anm-edit" aria-hidden="true"></i></a>
<a class="pName" href="cart.html">Sleeve Kimono Dress</a>
<div class="variant-cart">Black / XL</div>
<div class="wrapQtyBtn">
<div class="qtyField">
<span class="label">Qty:</span>
<a class="qtyBtn minus" href="javascript:void(0);"><i class="fa anm anm-minus-r" aria-hidden="true"></i></a>
<input type="text" id="Quantity" name="quantity" value="1" class="product-form__input qty">
<a class="qtyBtn plus" href="javascript:void(0);"><i class="fa anm anm-plus-r" aria-hidden="true"></i></a>
</div>
</div>
<div class="priceRow">
<div class="product-price">
<span class="money">$59.00</span>
</div>
</div>
</div>
</li>
<li class="item">
<a class="product-image" href="#">
<img src="assets/images/product-images/cape-dress-2.jpg" alt="Elastic Waist Dress - Black / Small" title="" />
</a>
<div class="product-details">
<a href="#" class="remove"><i class="anm anm-times-l" aria-hidden="true"></i></a>
<a href="#" class="edit-i remove"><i class="anm anm-edit" aria-hidden="true"></i></a>
<a class="pName" href="cart.html">Elastic Waist Dress</a>
<div class="variant-cart">Gray / XXL</div>
<div class="wrapQtyBtn">
<div class="qtyField">
<span class="label">Qty:</span>
<a class="qtyBtn minus" href="javascript:void(0);"><i class="fa anm anm-minus-r" aria-hidden="true"></i></a>
<input type="text" id="Quantity" name="quantity" value="1" class="product-form__input qty">
<a class="qtyBtn plus" href="javascript:void(0);"><i class="fa anm anm-plus-r" aria-hidden="true"></i></a>
</div>
</div>
<div class="priceRow">
<div class="product-price">
<span class="money">$99.00</span>
</div>
</div>
</div>
</li>
</ul>
<div class="total">
<div class="total-in">
<span class="label">Cart Subtotal:</span><span class="product-price"><span class="money">$748.00</span></span>
</div>
<div class="buttonSet text-center">
<a href="cart.html" class="btn btn-secondary btn--small">View Cart</a>
<a href="checkout.html" class="btn btn-secondary btn--small">Checkout</a>
</div>
</div>
</div>
<!--End Minicart Popup-->
</div>
<div class="site-header__search">
<button type="button" class="search-trigger"><i class="icon anm anm-search-l"></i></button>
</div>
</div>
</div>
</div>
</div>
<!--End Header-->
<!--Mobile Menu-->
<div class="mobile-nav-wrapper" role="navigation">
<div class="closemobileMenu"><i class="icon anm anm-times-l pull-right"></i> Close Menu</div>
<ul id="MobileNav" class="mobile-nav">
<li class="lvl1 parent megamenu"><a href="index.html">Home <i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="#" class="site-nav">Home Group 1<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="index.html" class="site-nav">Home 1 - Classic</a></li>
<li><a href="home2-default.html" class="site-nav">Home 2 - Default</a></li>
<li><a href="home15-funiture.html" class="site-nav">Home 15 - Furniture </a></li>
<li><a href="home3-boxed.html" class="site-nav">Home 3 - Boxed</a></li>
<li><a href="home4-fullwidth.html" class="site-nav">Home 4 - Fullwidth</a></li>
<li><a href="home5-cosmetic.html" class="site-nav">Home 5 - Cosmetic</a></li>
<li><a href="home6-modern.html" class="site-nav">Home 6 - Modern</a></li>
<li><a href="home7-shoes.html" class="site-nav last">Home 7 - Shoes</a></li>
</ul>
</li>
<li><a href="#" class="site-nav">Home Group 2<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="home8-jewellery.html" class="site-nav">Home 8 - Jewellery</a></li>
<li><a href="home9-parallax.html" class="site-nav">Home 9 - Parallax</a></li>
<li><a href="home10-minimal.html" class="site-nav">Home 10 - Minimal</a></li>
<li><a href="home11-grid.html" class="site-nav">Home 11 - Grid</a></li>
<li><a href="home12-category.html" class="site-nav">Home 12 - Category</a></li>
<li><a href="home13-auto-parts.html" class="site-nav">Home 13 - Auto Parts</a></li>
<li><a href="home14-bags.html" class="site-nav last">Home 14 - Bags</a></li>
</ul>
</li>
<li><a href="#" class="site-nav">New Sections<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="home11-grid.html" class="site-nav">Image Gallery</a></li>
<li><a href="home5-cosmetic.html" class="site-nav">Featured Product</a></li>
<li><a href="home7-shoes.html" class="site-nav">Columns with Items</a></li>
<li><a href="home6-modern.html" class="site-nav">Text columns with images</a></li>
<li><a href="home2-default.html" class="site-nav">Products Carousel</a></li>
<li><a href="home9-parallax.html" class="site-nav last">Parallax Banner</a></li>
</ul>
</li>
<li><a href="#" class="site-nav">New Features<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="home13-auto-parts.html" class="site-nav">Top Information Bar </a></li>
<li><a href="#" class="site-nav">Age Varification </a></li>
<li><a href="#" class="site-nav">Footer Blocks</a></li>
<li><a href="#" class="site-nav">2 New Megamenu style</a></li>
<li><a href="#" class="site-nav">Show Total Savings </a></li>
<li><a href="#" class="site-nav">New Custom Icons</a></li>
<li><a href="#" class="site-nav last">Auto Currency</a></li>
</ul>
</li>
</ul>
</li>
<li class="lvl1 parent megamenu"><a href="#">Shop <i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="#" class="site-nav">Shop Pages<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="shop-left-sidebar.html" class="site-nav">Left Sidebar</a></li>
<li><a href="shop-right-sidebar.html" class="site-nav">Right Sidebar</a></li>
<li><a href="shop-fullwidth.html" class="site-nav">Fullwidth</a></li>
<li><a href="shop-grid-3.html" class="site-nav">3 items per row</a></li>
<li><a href="shop-grid-4.html" class="site-nav">4 items per row</a></li>
<li><a href="shop-grid-5.html" class="site-nav">5 items per row</a></li>
<li><a href="shop-grid-6.html" class="site-nav">6 items per row</a></li>
<li><a href="shop-grid-7.html" class="site-nav">7 items per row</a></li>
<li><a href="shop-listview.html" class="site-nav last">Product Listview</a></li>
</ul>
</li>
<li><a href="#" class="site-nav">Shop Features<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="shop-left-sidebar.html" class="site-nav">Product Countdown </a></li>
<li><a href="shop-right-sidebar.html" class="site-nav">Infinite Scrolling</a></li>
<li><a href="shop-grid-3.html" class="site-nav">Pagination - Classic</a></li>
<li><a href="shop-grid-6.html" class="site-nav">Pagination - Load More</a></li>
<li><a href="product-labels.html" class="site-nav">Dynamic Product Labels</a></li>
<li><a href="product-swatches-style.html" class="site-nav">Product Swatches </a></li>
<li><a href="product-hover-info.html" class="site-nav">Product Hover Info</a></li>
<li><a href="shop-grid-3.html" class="site-nav">Product Reviews</a></li>
<li><a href="shop-left-sidebar.html" class="site-nav last">Discount Label </a></li>
</ul>
</li>
</ul>
</li>
<li class="lvl1 parent megamenu"><a href="product-layout-1.html">Product <i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="product-layout-1.html" class="site-nav">Product Page<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="product-layout-1.html" class="site-nav">Product Layout 1</a></li>
<li><a href="product-layout-2.html" class="site-nav">Product Layout 2</a></li>
<li><a href="product-layout-3.html" class="site-nav">Product Layout 3</a></li>
<li><a href="product-with-left-thumbs.html" class="site-nav">Product With Left Thumbs</a></li>
<li><a href="product-with-right-thumbs.html" class="site-nav">Product With Right Thumbs</a></li>
<li><a href="product-with-bottom-thumbs.html" class="site-nav last">Product With Bottom Thumbs</a></li>
</ul>
</li>
<li><a href="short-description.html" class="site-nav">Product Features<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="short-description.html" class="site-nav">Short Description</a></li>
<li><a href="product-countdown.html" class="site-nav">Product Countdown</a></li>
<li><a href="product-video.html" class="site-nav">Product Video</a></li>
<li><a href="product-quantity-message.html" class="site-nav">Product Quantity Message</a></li>
<li><a href="product-visitor-sold-count.html" class="site-nav">Product Visitor/Sold Count </a></li>
<li><a href="product-zoom-lightbox.html" class="site-nav last">Product Zoom/Lightbox </a></li>
</ul>
</li>
<li><a href="#" class="site-nav">Product Features<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="product-with-variant-image.html" class="site-nav">Product with Variant Image</a></li>
<li><a href="product-with-color-swatch.html" class="site-nav">Product with Color Swatch</a></li>
<li><a href="product-with-image-swatch.html" class="site-nav">Product with Image Swatch</a></li>
<li><a href="product-with-dropdown.html" class="site-nav">Product with Dropdown</a></li>
<li><a href="product-with-rounded-square.html" class="site-nav">Product with Rounded Square</a></li>
<li><a href="swatches-style.html" class="site-nav last">Product Swatches All Style</a></li>
</ul>
</li>
<li><a href="#" class="site-nav">Product Features<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="product-accordion.html" class="site-nav">Product Accordion</a></li>
<li><a href="product-pre-orders.html" class="site-nav">Product Pre-orders </a></li>
<li><a href="product-labels-detail.html" class="site-nav">Product Labels</a></li>
<li><a href="product-discount.html" class="site-nav">Product Discount In %</a></li>
<li><a href="product-shipping-message.html" class="site-nav">Product Shipping Message</a></li>
<li><a href="product-shipping-message.html" class="site-nav last">Size Guide </a></li>
</ul>
</li>
</ul>
</li>
<li class="lvl1 parent megamenu"><a href="about-us.html">Pages <i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="cart-variant1.html" class="site-nav">Cart Page <i class="anm anm-plus-l"></i></a>
<ul class="dropdown">
<li><a href="cart-variant1.html" class="site-nav">Cart Variant1</a></li>
<li><a href="cart-variant2.html" class="site-nav">Cart Variant2</a></li>
</ul>
</li>
<li><a href="compare-variant1.html" class="site-nav">Compare Product <i class="anm anm-plus-l"></i></a>
<ul class="dropdown">
<li><a href="compare-variant1.html" class="site-nav">Compare Variant1</a></li>
<li><a href="compare-variant2.html" class="site-nav">Compare Variant2</a></li>
</ul>
</li>
<li><a href="checkout.html" class="site-nav">Checkout</a></li>
<li><a href="about-us.html" class="site-nav">About Us<span class="lbl nm_label1">New</span></a></li>
<li><a href="contact-us.html" class="site-nav">Contact Us</a></li>
<li><a href="faqs.html" class="site-nav">FAQs</a></li>
<li><a href="lookbook1.html" class="site-nav">Lookbook<i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="lookbook1.html" class="site-nav">Style 1</a></li>
<li><a href="lookbook2.html" class="site-nav last">Style 2</a></li>
</ul>
</li>
<li><a href="404.html" class="site-nav">404</a></li>
<li><a href="coming-soon.html" class="site-nav">Coming soon<span class="lbl nm_label1">New</span></a></li>
</ul>
</li>
<li class="lvl1 parent megamenu"><a href="blog-left-sidebar.html">Blog <i class="anm anm-plus-l"></i></a>
<ul>
<li><a href="blog-left-sidebar.html" class="site-nav">Left Sidebar</a></li>
<li><a href="blog-right-sidebar.html" class="site-nav">Right Sidebar</a></li>
<li><a href="blog-fullwidth.html" class="site-nav">Fullwidth</a></li>
<li><a href="blog-grid-view.html" class="site-nav">Gridview</a></li>
<li><a href="blog-article.html" class="site-nav">Article</a></li>
</ul>
</li>
<li class="lvl1"><a href="#"><b>Buy Now!</b></a>
</li>
</ul>
</div>
<!--End Mobile Menu-->
<!--Body Content-->
<div id="page-content">
<!--Home slider-->
<div class="slideshow slideshow-wrapper pb-section">
<div class="home-slideshow">
<div class="slide">
<div class="blur-up lazyload">
<img class="blur-up lazyload" data-src="assets/images/slideshow-banners/home2-default-banner1.jpg" src="assets/images/slideshow-banners/home2-default-banner1.jpg" alt="Shop Our New Collection" title="Shop Our New Collection" />
<div class="slideshow__text-wrap slideshow__overlay classic middle">
<div class="slideshow__text-content middle">
<div class="container">
<div class="wrap-caption right">
<h2 class="h1 mega-title slideshow__title">Our New Collection</h2>
<span class="mega-subtitle slideshow__subtitle">Save up to 50% Off</span>
<span class="btn">Shop now</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="blur-up lazyload">
<img class="blur-up lazyload" data-src="assets/images/slideshow-banners/home2-default-banner2.jpg" src="assets/images/slideshow-banners/home2-default-banner2.jpg" alt="Summer Bikini Collection" title="Summer Bikini Collection" />
<div class="slideshow__text-wrap slideshow__overlay classic middle">
<div class="slideshow__text-content middle">
<div class="container">
<div class="wrap-caption center">
<h2 class="h1 mega-title slideshow__title">Fashion & Show</h2>
<span class="mega-subtitle slideshow__subtitle">A World Fashion and Trendy Fashion Clother's</span>
<span class="btn">Shop now</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End Home slider-->
<!--Weekly Bestseller-->
<div class="section">
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="section-header text-center">
<h2 class="h2">Weekly Bestseller</h2>
<p>Our most popular products based on sales</p>
</div>
<div class="productSlider grid-products">
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image1.jpg" src="assets/images/product-images/product-image1.jpg" alt="image" title="product">
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image1-1.jpg" src="assets/images/product-images/product-image1-1.jpg" alt="image" title="product">
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image1.jpg" alt="image" title="product">
<!-- Variant Image-->
<!-- product label -->
<div class="product-labels rounded"><span class="lbl on-sale">Sale</span> <span class="lbl pr-label1">new</span></div>
<!-- End product label -->
</a>
<!-- end product image -->
<!-- countdown start -->
<div class="saleTime desktop" data-countdown="2022/03/01"></div>
<!-- countdown end -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Add To Cart</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>
</div>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="product-layout-1.html">Edna Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="old-price">$500.00</span>
<span class="price">$600.00</span>
</div>
<!-- End product price -->
<!-- Color Variant -->
<ul class="swatches">
<li class="swatch small rounded navy" rel="assets/images/product-images/product-image-stw1.jpg"></li>
<li class="swatch small rounded green" rel="assets/images/product-images/product-image-stw1-1.jpg"></li>
<li class="swatch small rounded gray" rel="assets/images/product-images/product-image-stw1-2.jpg"></li>
<li class="swatch small rounded aqua" rel="assets/images/product-images/product-image-stw1-3.jpg"></li>
<li class="swatch small rounded orange" rel="assets/images/product-images/product-image-stw1-4.jpg"></li>
</ul>
<!-- End Variant -->
</div>
<!-- End product details -->
</div>
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image2.jpg" src="assets/images/product-images/product-image2.jpg" alt="image" title="product">
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image2-1.jpg" src="assets/images/product-images/product-image2-1.jpg" alt="image" title="product">
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image1.jpg" alt="image" title="product">
<!-- Variant Image-->
</a>
<!-- end product image -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Select Options</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>
</div>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="product-layout-1.html">Elastic Waist Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="price">$748.00</span>
</div>
<!-- End product price -->
<!-- Color Variant -->
<ul class="swatches">
<li class="swatch small rounded black" rel="assets/images/product-images/product-image2.jpg"></li>
<li class="swatch small rounded navy" rel="assets/images/product-images/product-image-swt2.jpg"></li>
<li class="swatch small rounded purple" rel="assets/images/product-images/product-image-swt2-1.jpg"></li>
<li class="swatch small rounded teal" rel="assets/images/product-images/product-image-swt2-2.jpg"></li>
</ul>
<!-- End Variant -->
</div>
<!-- End product details -->
</div>
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image3.jpg" src="assets/images/product-images/product-image3.jpg" alt="image" title="product">
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image3-1.jpg" src="assets/images/product-images/product-image3-1.jpg" alt="image" title="product">
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image3.jpg" alt="image" title="product">
<!-- Variant Image-->
<!-- product label -->
<div class="product-labels rounded"><span class="lbl pr-label2">Hot</span></div>
<!-- End product label -->
</a>
<!-- end product image -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Add To Cart</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>
</div>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="product-layout-1.html">3/4 Sleeve Kimono Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="price">$550.00</span>
</div>
<!-- End product price -->
<!-- Color Variant -->
<ul class="swatches">
<li class="swatch small rounded gray" rel="assets/images/product-images/product-image16.jpg"></li>
<li class="swatch small rounded red" rel="assets/images/product-images/product-image5.jpg"></li>
<li class="swatch small rounded orange" rel="assets/images/product-images/product-image5-1.jpg"></li>
<li class="swatch small rounded yellow" rel="assets/images/product-images/product-image17.jpg"></li>
</ul>
<!-- End Variant -->
</div>
<!-- End product details -->
</div>
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image4.jpg" src="assets/images/product-images/product-image4.jpg" alt="image" title="product" />
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image4-1.jpg" src="assets/images/product-images/product-image4-1.jpg" alt="image" title="product" />
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image3.jpg" alt="image" title="product">
<!-- Variant Image-->
<!-- product label -->
<div class="product-labels rounded"><span class="lbl on-sale">Sale</span></div>
<!-- End product label -->
</a>
<!-- end product image -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Add To Cart</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>
</div>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="product-layout-1.html">Cape Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="old-price">$900.00</span>
<span class="price">$788.00</span>
</div>
<!-- End product price -->
<!-- Color Variant -->
<ul class="swatches">
<li class="swatch small rounded black" rel="assets/images/product-images/cape-dress-2.jpg"></li>
<li class="swatch small rounded maroon" rel="assets/images/product-images/product-image4-1.jpg"></li>
<li class="swatch small rounded navy" rel="assets/images/product-images/product-image2.jpg"></li>
<li class="swatch small rounded darkgreen" rel="assets/images/product-images/product-image2-1.jpg"></li>
</ul>
<!-- End Variant -->
</div>
<!-- End product details -->
</div>
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image5.jpg" src="assets/images/product-images/product-image5.jpg" alt="image" title="product" />
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image5-1.jpg" src="assets/images/product-images/product-image5-1.jpg" alt="image" title="product" />
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image5.jpg" alt="image" title="product">
<!-- Variant Image-->
</a>
<!-- end product image -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Select Options</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>
</div>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="product-layout-1.html">Paper Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="price">$550.00</span>
</div>
<!-- End product price -->
<!-- Color Variant -->
<ul class="swatches">
<li class="swatch small rounded gray" rel="assets/images/product-images/product-image16.jpg"></li>
<li class="swatch small rounded red" rel="assets/images/product-images/product-image5.jpg"></li>
<li class="swatch small rounded orange" rel="assets/images/product-images/product-image5-1.jpg"></li>
<li class="swatch small rounded yellow" rel="assets/images/product-images/product-image17.jpg"></li>
</ul>
<!-- End Variant -->
</div>
<!-- End product details -->
</div>
</div>
</div>
</div>
</div>
</div>
<!--Weekly Bestseller-->
<!--Parallax Section-->
<div class="section">
<div class="hero hero--large hero__overlay bg-size">
<img class="bg-img" src="assets/images/parallax-banners/parallax-banner.jpg" alt="" />
<div class="hero__inner">
<div class="container">
<div class="wrap-text left text-small font-bold">
<h2 class="h2 mega-title">Belle <br> The best choice for your store</h2>
<div class="rte-setting mega-subtitle">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</div>
<a href="#" class="btn">Purchase Now</a>
</div>
</div>
</div>
</div>
</div>
<!--End Parallax Section-->
<!--New Arrivals-->
<div class="product-rows section">
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="section-header text-center">
<h2 class="h2">New Arrivals</h2>
<p>Grab these new items before they are gone!</p>
</div>
</div>
</div>
<div class="grid-products">
<div class="row">
<div class="col-6 col-sm-2 col-md-3 col-lg-3 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="product-layout-1.html" class="grid-view-item__link">
<!-- image -->
<img class="primary blur-up lazyload" data-src="assets/images/product-images/product-image1.jpg" src="assets/images/product-images/product-image1.jpg" alt="image" title="product">
<!-- End image -->
<!-- Hover image -->
<img class="hover blur-up lazyload" data-src="assets/images/product-images/product-image1-1.jpg" src="assets/images/product-images/product-image1-1.jpg" alt="image" title="product">
<!-- End hover image -->
<!-- Variant Image-->
<img class="grid-view-item__image hover variantImg" src="assets/images/product-images/product-image1.jpg" alt="image" title="product">
<!-- Variant Image-->
<!-- product label -->
<div class="product-labels rounded"><span class="lbl on-sale">Sale</span> <span class="lbl pr-label1">new</span></div>
<!-- End product label -->
</a>
<!-- end product image -->
<!-- countdown start -->
<div class="saleTime desktop" data-countdown="2022/03/01"></div>
<!-- countdown end -->
<!-- Start product button -->
<form class="variants add" action="#" onclick="window.location.href='cart.html'"method="post">
<button class="btn btn-addto-cart" type="button" tabindex="0">Add To Cart</button>
</form>
<div class="button-set">
<a href="javascript:void(0)" title="Quick View" class="quick-view-popup quick-view" data-toggle="modal" data-target="#content_quickview">
<i class="icon anm anm-search-plus-r"></i>
</a>
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="wishlist.html">
<i class="icon anm anm-heart-l"></i>
</a>
</div>
<div class="compare-btn">
<a class="compare add-to-compare" href="compare.html" title="Add to Compare">
<i class="icon anm anm-random-r"></i>
</a>
</div>