-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshort-description.php
1605 lines (1543 loc) · 102 KB
/
short-description.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
<?php
?>
<!DOCTYPE html>
<html class="no-js" lang="en">
<!-- belle/short-description.html 11 Nov 2019 12:43:10 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Short Description – </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>
<?php include('includes/topnav.php');
$id = $_GET['id'];
$select_pro = mysqli_query($con, "SELECT * FROM `products` where id='$id'");
?>
<br>
<br>
<br><br>
<!--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">
<!--MainContent-->
<div id="MainContent" class="main-content" role="main">
<!--Breadcrumb-->
<div class="bredcrumbWrap">
<div class="container breadcrumbs">
<a href="index.html" title="Back to the home page">Home</a><span aria-hidden="true">›</span><span>Short Description</span>
</div>
</div>
<!--End Breadcrumb-->
<div id="ProductSection-product-template" class="product-template__container prstyle1 container">
<!--product-single-->
<div class="product-single">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
<div class="product-details-img">
<?php
//fetch product
$row1 = mysqli_fetch_array($select_pro);
?>
<div class="product-thumb">
<div id="gallery" class="product-dec-slider-2 product-tab-left">
<a data-image="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" data-zoom-image="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" class="slick-slide slick-cloned" data-slick-index="-4" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" alt="" />
</a>
<a data-image="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" data-zoom-image="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" class="slick-slide slick-cloned" data-slick-index="-3" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-2.jpg" alt="" />
</a>
<a data-image="assets/images/product-detail-page/cape-dress-3.jpg" data-zoom-image="assets/images/product-detail-page/cape-dress-3.jpg" class="slick-slide slick-cloned" data-slick-index="-2" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-3.jpg" alt="" />
</a>
<a data-image="assets/images/product-detail-page/cape-dress-4.jpg" data-zoom-image="assets/images/product-detail-page/cape-dress-4.jpg" class="slick-slide slick-cloned" data-slick-index="-1" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-4.jpg" alt="" />
</a>
<a data-image="assets/images/product-detail-page/cape-dress-5.jpg" data-zoom-image="assets/images/product-detail-page/cape-dress-5.jpg" class="slick-slide slick-cloned" data-slick-index="0" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-5.jpg" alt="" />
</a>
<a data-image="assets/images/product-detail-page/cape-dress-6.jpg" data-zoom-image="assets/images/product-detail-page/cape-dress-6.jpg" class="slick-slide slick-cloned" data-slick-index="1" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-6.jpg" alt="" />
</a>
<a data-image="assets/images/product-detail-page/cape-dress-7.jpg" data-zoom-image="assets/images/product-detail-page/cape-dress-7.jpg" class="slick-slide slick-cloned" data-slick-index="2" aria-hidden="true" tabindex="-1">
<img class="blur-up lazyload" src="assets/images/product-detail-page/cape-dress-7.jpg" alt="" />
</a>
</div>
</div>
<div class="zoompro-wrap product-zoom-right pl-20">
<div class="zoompro-span">
<img class="zoompro blur-up lazyload" data-zoom-image="admin/productimages/<?php echo $row1[0] . "/" . $row1[9] ?>" alt="" src="admin/productimages/<?php echo $row1[0] . "/" . $row1[10] ?>" />
</div>
<div class="product-labels"><span class="lbl on-sale">Sale</span><span class="lbl pr-label1">new</span></div>
<div class="product-buttons">
<a href="https://www.youtube.com/watch?v=93A2jOW5Mog" class="btn popup-video" title="View Video"><i class="icon anm anm-play-r" aria-hidden="true"></i></a>
<a href="#" class="btn prlightbox" title="Zoom"><i class="icon anm anm-expand-l-arrows" aria-hidden="true"></i></a>
</div>
</div>
<div class="lightboximages">
<a href="assets/images/product-detail-page/cape-dress-1.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-2.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-3.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-4.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-5.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-6.jpg" data-size="1462x2048"></a>
<a href="assets/images/product-detail-page/cape-dress-7.jpg" data-size="731x1024"></a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
<div class="product-single__meta">
<h1 class="product-single__title">Short Description</h1>
<div class="product-nav clearfix">
<a href="#" class="next" title="Next"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
<div class="prInfoRow">
<div class="product-stock"> <span class="instock "><?php echo $row1['productAvailability'] ?></span> <span class="outstock hide">Unavailable</span> </div>
<div class="product-sku">SKU: <span class="variant-sku">19115-rdxs</span></div>
<div class="product-review"><a class="reviewLink" href="#tab2"><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i><span class="spr-badge-caption">6 reviews</span></a></div>
</div>
<p class="product-single__price product-single__price-product-template">
<span class="visually-hidden">Regular price</span>
<s id="ComparePrice-product-template"><span class="money"><?php echo $row1['productPriceBeforeDiscount'] . " Frw" ?></span></s>
<span class="product-price__price product-price__price-product-template product-price__sale product-price__sale--single">
<span id="ProductPrice-product-template"><span class="money"><?php echo $row1['productPrice'] . " Frw" ?></span></span>
</span>
<span class="discount-badge"> <span class="devider">|</span>
<span>You Save</span>
<span id="SaveAmount-product-template" class="product-single__save-amount">
<span class="money"><?php echo $row1['productPriceBeforeDiscount'] - $row1['productPrice'] . " Frw" ?></span>
</span>
<span class="off">(<span></span>)</span>
</span>
</p>
<div class="orderMsg" data-user="23" data-time="24">
<img src="assets/images/order-icon.jpg" alt="" /> <strong class="items">5</strong> sold in last <strong class="time">26</strong> hours
</div>
</div>
<div class="product-single__description rte">
<ul>
<!-- <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>
<li>Sed ut perspiciatis unde omnis iste natus error sit</li>
<li>Neque porro quisquam est qui dolorem ipsum quia dolor</li>
<li>Lorem Ipsum is not simply random text.</li> -->
<?php
echo $row1['productDescription'];
?>
</ul>
<!-- <p>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, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p> -->
</div>
<div id="quantity_message">Hurry! Only <span class="items">4</span> left in stock.</div>
<form method="post" action="http://annimexweb.com/cart/add" id="product_form_10508262282" accept-charset="UTF-8" class="product-form product-form-product-template hidedropdown" enctype="multipart/form-data">
<div class="swatch clearfix swatch-0 option1" data-option-index="0">
<div class="product-form__item">
<label class="header">Color: <span class="slVariant">Red</span></label>
<div data-value="Black" class="swatch-element color black available">
<input class="swatchInput" id="swatch-0-black" type="radio" name="option-0" value="Black"><label class="swatchLbl color small" for="swatch-0-black" style="background-color:black;" title="Black"></label>
</div>
<div data-value="Maroon" class="swatch-element color maroon available">
<input class="swatchInput" id="swatch-0-maroon" type="radio" name="option-0" value="Maroon"><label class="swatchLbl color small" for="swatch-0-maroon" style="background-color:maroon;" title="Maroon"></label>
</div>
<div data-value="Blue" class="swatch-element color blue available">
<input class="swatchInput" id="swatch-0-blue" type="radio" name="option-0" value="Blue"><label class="swatchLbl color small" for="swatch-0-blue" style="background-color:blue;" title="Blue"></label>
</div>
<div data-value="Dark Green" class="swatch-element color dark-green available">
<input class="swatchInput" id="swatch-0-dark-green" type="radio" name="option-0" value="Dark Green"><label class="swatchLbl color small" for="swatch-0-dark-green" style="background-color:darkgreen;" title="Dark Green"></label>
</div>
</div>
</div>
<div class="swatch clearfix swatch-1 option2" data-option-index="1">
<div class="product-form__item">
<label class="header">Size: <span class="slVariant">XS</span></label>
<div data-value="XS" class="swatch-element xs available">
<input class="swatchInput" id="swatch-1-xs" type="radio" name="option-1" value="XS">
<label class="swatchLbl medium rectangle" for="swatch-1-xs" title="XS">XS</label>
</div>
<div data-value="S" class="swatch-element s available">
<input class="swatchInput" id="swatch-1-s" type="radio" name="option-1" value="S">
<label class="swatchLbl medium rectangle" for="swatch-1-s" title="S">S</label>
</div>
<div data-value="M" class="swatch-element m available">
<input class="swatchInput" id="swatch-1-m" type="radio" name="option-1" value="M">
<label class="swatchLbl medium rectangle" for="swatch-1-m" title="M">M</label>
</div>
<div data-value="L" class="swatch-element l available">
<input class="swatchInput" id="swatch-1-l" type="radio" name="option-1" value="L">
<label class="swatchLbl medium rectangle" for="swatch-1-l" title="L">L</label>
</div>
</div>
</div>
<p class="infolinks"><a href="#sizechart" class="sizelink btn"> Size Guide</a> <a href="#productInquiry" class="emaillink btn"> Ask About this Product</a></p>
<!-- Product Action -->
<div class="product-action clearfix">
<div class="product-form__item--quantity">
<div class="wrapQtyBtn">
<div class="qtyField">
<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>
<div class="product-form__item--submit">
<button type="button" name="add" class="btn product-form__cart-submit">
<span>Add to cart</span>
</button>
</div>
<div class="shopify-payment-button" data-shopify="payment-button">
<a href="checkout"> <button type="button" class="shopify-payment-button__button shopify-payment-button__button--unbranded">Buy it now</button></a>
</div>
</div>
<!-- End Product Action -->
</form>
<div class="display-table shareRow">
<div class="display-table-cell medium-up--one-third">
<div class="wishlist-btn">
<a class="wishlist add-to-wishlist" href="#" title="Add to Wishlist"><i class="icon anm anm-heart-l" aria-hidden="true"></i> <span>Add to Wishlist</span></a>
</div>
</div>
<div class="display-table-cell text-right">
<div class="social-sharing">
<a target="_blank" href="#" class="btn btn--small btn--secondary btn--share share-facebook" title="Share on Facebook">
<i class="fa fa-facebook-square" aria-hidden="true"></i> <span class="share-title" aria-hidden="true">Share</span>
</a>
<a target="_blank" href="#" class="btn btn--small btn--secondary btn--share share-twitter" title="Tweet on Twitter">
<i class="fa fa-twitter" aria-hidden="true"></i> <span class="share-title" aria-hidden="true">Tweet</span>
</a>
<a href="#" title="Share on google+" class="btn btn--small btn--secondary btn--share">
<i class="fa fa-google-plus" aria-hidden="true"></i> <span class="share-title" aria-hidden="true">Google+</span>
</a>
<a target="_blank" href="#" class="btn btn--small btn--secondary btn--share share-pinterest" title="Pin on Pinterest">
<i class="fa fa-pinterest" aria-hidden="true"></i> <span class="share-title" aria-hidden="true">Pin it</span>
</a>
<a href="#" class="btn btn--small btn--secondary btn--share share-pinterest" title="Share by Email" target="_blank">
<i class="fa fa-envelope" aria-hidden="true"></i> <span class="share-title" aria-hidden="true">Email</span>
</a>
</div>
</div>
</div>
<p id="freeShipMsg" class="freeShipMsg" data-price="199"><i class="fa fa-truck" aria-hidden="true"></i> GETTING CLOSER! ONLY <b class="freeShip"><span class="money" data-currency-usd="$199.00" data-currency="USD">$199.00</span></b> AWAY FROM <b>FREE SHIPPING!</b></p>
<p class="shippingMsg"><i class="fa fa-clock-o" aria-hidden="true"></i> ESTIMATED DELIVERY BETWEEN <b id="fromDate">Wed. May 1</b> and <b id="toDate">Tue. May 7</b>.</p>
<div class="userViewMsg" data-user="20" data-time="11000"><i class="fa fa-users" aria-hidden="true"></i> <strong class="uersView">14</strong> PEOPLE ARE LOOKING FOR THIS PRODUCT</div>
</div>
</div>
</div>
<!--End-product-single-->
<!--Product Fearure-->
<div class="prFeatures">
<div class="row">
<div class="col-12 col-sm-6 col-md-3 col-lg-3 feature">
<img src="assets/images/credit-card.png" alt="Safe Payment" title="Safe Payment" />
<div class="details">
<h3>Safe Payment</h3>Pay with the world's most payment methods.
</div>
</div>
<div class="col-12 col-sm-6 col-md-3 col-lg-3 feature">
<img src="assets/images/shield.png" alt="Confidence" title="Confidence" />
<div class="details">
<h3>Confidence</h3>Protection covers your purchase and personal data.
</div>
</div>
<div class="col-12 col-sm-6 col-md-3 col-lg-3 feature">
<img src="assets/images/worldwide.png" alt="Worldwide Delivery" title="Worldwide Delivery" />
<div class="details">
<h3>Worldwide Delivery</h3>FREE & fast shipping to over 200+ countries & regions.
</div>
</div>
<div class="col-12 col-sm-6 col-md-3 col-lg-3 feature">
<img src="assets/images/phone-call.png" alt="Hotline" title="Hotline" />
<div class="details">
<h3>Hotline</h3>Talk to help line for your question on 4141 456 789, 4125 666 888
</div>
</div>
</div>
</div>
<!--End Product Fearure-->
<!--Product Tabs-->
<div class="tabs-listing">
<ul class="product-tabs">
<li rel="tab1"><a class="tablink">Product Details</a></li>
<li rel="tab2"><a class="tablink">Product Reviews</a></li>
<li rel="tab3"><a class="tablink">Size Chart</a></li>
<li rel="tab4"><a class="tablink">Shipping & Returns</a></li>
</ul>
<div class="tab-container">
<div id="tab1" class="tab-content">
<div class="product-description rte">
<p>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, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<ul>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>
<li>Sed ut perspiciatis unde omnis iste natus error sit</li>
<li>Neque porro quisquam est qui dolorem ipsum quia dolor</li>
<li>Lorem Ipsum is not simply random text.</li>
<li>Free theme updates</li>
</ul>
<h3>Sed ut perspiciatis unde omnis iste natus error sit voluptatem</h3>
<p>You can change the position of any sections such as slider, banner, products, collection and so on by just dragging and dropping. </p>
<h3>Lorem Ipsum is not simply random text.</h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.</p>
<p>Change colors, fonts, banners, megamenus and more. Preview changes are live before saving them.</p>
<h3>1914 translation by H. Rackham</h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.</p>
<h3>Section 1.10.33 of "de Finibus Bonorum et Malorum", written by Cicero in 45 BC</h3>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga.</p>
<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>
<p>You can use variant style from colors, images or variant images. Also available differnt type of design styles and size.</p>
<h3>Lorem Ipsum is not simply random text.</h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness.</p>
<h3>Proin ut lacus eget elit molestie posuere.</h3>
<p>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, when an unknown printer took a galley of type and scrambled.</p>
</div>
</div>
<div id="tab2" class="tab-content">
<div id="shopify-product-reviews">
<div class="spr-container">
<div class="spr-header clearfix">
<div class="spr-summary">
<span class="product-review"><a class="reviewLink"><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i> </a><span class="spr-summary-actions-togglereviews">Based on 6 reviews456</span></span>
<span class="spr-summary-actions">
<a href="#" class="spr-summary-actions-newreview btn">Write a review</a>
</span>
</div>
</div>
<div class="spr-content">
<div class="spr-form clearfix">
<form method="post" action="#" id="new-review-form" class="new-review-form">
<h3 class="spr-form-title">Write a review</h3>
<fieldset class="spr-form-contact">
<div class="spr-form-contact-name">
<label class="spr-form-label" for="review_author_10508262282">Name</label>
<input class="spr-form-input spr-form-input-text " id="review_author_10508262282" type="text" name="review[author]" value="" placeholder="Enter your name">
</div>
<div class="spr-form-contact-email">
<label class="spr-form-label" for="review_email_10508262282">Email</label>
<input class="spr-form-input spr-form-input-email " id="review_email_10508262282" type="email" name="review[email]" value="" placeholder="[email protected]">
</div>
</fieldset>
<fieldset class="spr-form-review">
<div class="spr-form-review-rating">
<label class="spr-form-label">Rating</label>
<div class="spr-form-input spr-starrating">
<div class="product-review"><a class="reviewLink" href="#"><i class="fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i><i class="font-13 fa fa-star-o"></i></a></div>
</div>
</div>
<div class="spr-form-review-title">
<label class="spr-form-label" for="review_title_10508262282">Review Title</label>
<input class="spr-form-input spr-form-input-text " id="review_title_10508262282" type="text" name="review[title]" value="" placeholder="Give your review a title">
</div>
<div class="spr-form-review-body">
<label class="spr-form-label" for="review_body_10508262282">Body of Review <span class="spr-form-review-body-charactersremaining">(1500)</span></label>
<div class="spr-form-input">
<textarea class="spr-form-input spr-form-input-textarea " id="review_body_10508262282" data-product-id="10508262282" name="review[body]" rows="10" placeholder="Write your comments here"></textarea>
</div>
</div>
</fieldset>
<fieldset class="spr-form-actions">
<input type="submit" class="spr-button spr-button-primary button button-primary btn btn-primary" value="Submit Review">
</fieldset>
</form>
</div>
<div class="spr-reviews">
<div class="spr-review">
<div class="spr-review-header">
<span class="product-review spr-starratings spr-review-header-starratings"><span class="reviewLink"><i class="fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i></span></span>
<h3 class="spr-review-header-title">Lorem ipsum dolor sit amet</h3>
<span class="spr-review-header-byline"><strong>dsacc</strong> on <strong>Apr 09, 2019</strong></span>
</div>
<div class="spr-review-content">
<p class="spr-review-content-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
</div>
<div class="spr-review">
<div class="spr-review-header">
<span class="product-review spr-starratings spr-review-header-starratings"><span class="reviewLink"><i class="fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i></span></span>
<h3 class="spr-review-header-title">Lorem Ipsum is simply dummy text of the printing</h3>
<span class="spr-review-header-byline"><strong>larrydude</strong> on <strong>Dec 30, 2018</strong></span>
</div>
<div class="spr-review-content">
<p class="spr-review-content-body">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
</p>
</div>
</div>
<div class="spr-review">
<div class="spr-review-header">
<span class="product-review spr-starratings spr-review-header-starratings"><span class="reviewLink"><i class="fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i><i class="font-13 fa fa-star"></i></span></span>
<h3 class="spr-review-header-title">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</h3>
<span class="spr-review-header-byline"><strong>quoctri1905</strong> on <strong>Dec 30, 2018</strong></span>
</div>
<div class="spr-review-content">
<p class="spr-review-content-body">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, when an unknown printer took a galley of type and scrambled.<br>
<br>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab3" class="tab-content">
<h3>WOMEN'S BODY SIZING CHART</h3>
<table>
<tbody>
<tr>
<th>Size</th>
<th>XS</th>
<th>S</th>
<th>M</th>
<th>L</th>
<th>XL</th>
</tr>
<tr>
<td>Chest</td>
<td>31" - 33"</td>
<td>33" - 35"</td>
<td>35" - 37"</td>
<td>37" - 39"</td>
<td>39" - 42"</td>
</tr>
<tr>
<td>Waist</td>
<td>24" - 26"</td>
<td>26" - 28"</td>
<td>28" - 30"</td>
<td>30" - 32"</td>
<td>32" - 35"</td>
</tr>
<tr>
<td>Hip</td>
<td>34" - 36"</td>
<td>36" - 38"</td>
<td>38" - 40"</td>
<td>40" - 42"</td>
<td>42" - 44"</td>
</tr>
<tr>
<td>Regular inseam</td>
<td>30"</td>
<td>30½"</td>
<td>31"</td>
<td>31½"</td>
<td>32"</td>
</tr>
<tr>
<td>Long (Tall) Inseam</td>
<td>31½"</td>
<td>32"</td>
<td>32½"</td>
<td>33"</td>
<td>33½"</td>
</tr>
</tbody>
</table>
<h3>MEN'S BODY SIZING CHART</h3>
<table>
<tbody>
<tr>
<th>Size</th>
<th>XS</th>
<th>S</th>
<th>M</th>
<th>L</th>
<th>XL</th>
<th>XXL</th>
</tr>
<tr>
<td>Chest</td>
<td>33" - 36"</td>
<td>36" - 39"</td>
<td>39" - 41"</td>
<td>41" - 43"</td>
<td>43" - 46"</td>
<td>46" - 49"</td>
</tr>
<tr>
<td>Waist</td>
<td>27" - 30"</td>
<td>30" - 33"</td>
<td>33" - 35"</td>
<td>36" - 38"</td>
<td>38" - 42"</td>
<td>42" - 45"</td>
</tr>
<tr>
<td>Hip</td>
<td>33" - 36"</td>
<td>36" - 39"</td>
<td>39" - 41"</td>
<td>41" - 43"</td>
<td>43" - 46"</td>
<td>46" - 49"</td>
</tr>
</tbody>
</table>
<div class="text-center">
<img src="assets/images/size.jpg" alt="" />
</div>
</div>
<div id="tab4" class="tab-content">
<h4>Returns Policy</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p>
<p>Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p>
<h4>Shipping</h4>
<p>Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>
</div>
</div>
</div>
<!--End Product Tabs-->
<!--Related Product Slider-->
<div class="related-product grid-products">
<header class="section-header">
<h2 class="section-header__title text-center h2"><span>Related Products</span></h2>
<p class="sub-heading">You can stop autoplay, increase/decrease aniamtion speed and number of grid to show and products from store admin.</p>
</header>
<div class="productPageSlider">
<div class="col-12 item">
<!-- start product image -->
<div class="product-image">
<!-- start product image -->
<a href="#">
<!-- 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 -->
<!-- product label -->
<div class="product-labels rectangular"><span class="lbl on-sale">-16%</span> <span class="lbl pr-label1">new</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">Select Options</button>
</form>
<div class="button-set">
<a href="#" title="Quick View" class="quick-view" tabindex="0">
<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>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="#">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 -->
<div class="product-review">
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star-o"></i>
<i class="font-13 fa fa-star-o"></i>
</div>
<!-- Variant -->
<ul class="swatches">
<li class="swatch medium rounded"><img src="assets/images/product-images/variant1.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant2.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant3.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant4.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant5.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant6.jpg" alt="image" /></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="#">
<!-- 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 -->
</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="#" title="Quick View" class="quick-view" tabindex="0">
<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>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="#">Elastic Waist Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="price">$748.00</span>
</div>
<!-- End product price -->
<div class="product-review">
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
</div>
<!-- Variant -->
<ul class="swatches">
<li class="swatch medium rounded"><img src="assets/images/product-images/variant2-1.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant2-2.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant2-3.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant2-4.jpg" alt="image" /></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="#">
<!-- 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 -->
<!-- product label -->
<div class="product-labels rectangular"><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">Select Options</button>
</form>
<div class="button-set">
<a href="#" title="Quick View" class="quick-view" tabindex="0">
<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>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="#">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 -->
<div class="product-review">
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star-o"></i>
</div>
<!-- Variant -->
<ul class="swatches">
<li class="swatch medium rounded"><img src="assets/images/product-images/variant3-1.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant3-2.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant3-3.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant3-4.jpg" alt="image" /></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="#">
<!-- 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 -->
<!-- product label -->
<div class="product-labels"><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">Select Options</button>
</form>
<div class="button-set">
<a href="#" title="Quick View" class="quick-view" tabindex="0">
<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>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="#">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 -->
<div class="product-review">
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star"></i>
<i class="font-13 fa fa-star-o"></i>
<i class="font-13 fa fa-star-o"></i>
</div>
<!-- Variant -->
<ul class="swatches">
<li class="swatch medium rounded"><img src="assets/images/product-images/variant4-1.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant4-2.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant4-3.jpg" alt="image" /></li>
<li class="swatch medium rounded"><img src="assets/images/product-images/variant4-4.jpg" alt="image" /></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="#">
<!-- 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 -->
<!-- product label -->
<div class="product-labels"><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">Select Options</button>
</form>
<div class="button-set">
<a href="#" title="Quick View" class="quick-view" tabindex="0">
<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>
<!-- end product button -->
</div>
<!-- end product image -->
<!--start product details -->
<div class="product-details text-center">
<!-- product name -->
<div class="product-name">
<a href="#">Paper Dress</a>
</div>
<!-- End product name -->
<!-- product price -->
<div class="product-price">
<span class="price">$550.00</span>
</div>