-
Notifications
You must be signed in to change notification settings - Fork 0
/
product-on-sale.html
1560 lines (1555 loc) · 121 KB
/
product-on-sale.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from nouthemes.net/html/martfury/product-on-sale.html by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 28 Apr 2020 19:13:02 GMT -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<title>Martfury - Multi Vendor & Marketplace</title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700&amp;subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="plugins/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="fonts/Linearicons/Linearicons/Font/demo-files/demo.css">
<link rel="stylesheet" href="plugins/bootstrap4/css/bootstrap.min.css">
<link rel="stylesheet" href="plugins/owl-carousel/assets/owl.carousel.css">
<link rel="stylesheet" href="plugins/slick/slick/slick.css">
<link rel="stylesheet" href="plugins/lightGallery-master/dist/css/lightgallery.min.css">
<link rel="stylesheet" href="plugins/jquery-bar-rating/dist/themes/fontawesome-stars.css">
<link rel="stylesheet" href="plugins/jquery-ui/jquery-ui.min.css">
<link rel="stylesheet" href="plugins/select2/dist/css/select2.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header header--product" data-sticky="true">
<nav class="navigation">
<div class="container">
<article class="ps-product--header-sticky">
<div class="ps-product__thumbnail"><img src="img/products/detail/on-sale/1.jpg" alt="" /></div>
<div class="ps-product__wrapper">
<div class="ps-product__content"><a class="ps-product__title" href="#">Marshall Kilburn Portable Wireless Speaker</a>
<ul class="ps-tab-list">
<li class="active"><a href="#tab-1">Description</a></li>
<li><a href="#tab-2">Specification</a></li>
<li><a href="#tab-4">Reviews (1)</a></li>
<li><a href="#tab-6">More Offers</a></li>
</ul>
</div>
<div class="ps-product__shopping"><span class="ps-product__price"><span>$100.56</span>
<del>$106.22</del></span><a class="ps-btn" href="#"> Add to Cart</a></div>
</div>
</article>
</div>
</nav>
</header>
<header class="header header--1" data-sticky="false">
<div class="header__top">
<div class="ps-container">
<div class="header__left">
<div class="menu--product-categories">
<div class="menu__toggle"><i class="icon-menu"></i><span> Shop by Department</span></div>
<div class="menu__content">
<ul class="menu--dropdown">
<li class="current-menu-item "><a href="#"><i class="icon-star"></i> Hot Promotions</a>
</li>
<li class="current-menu-item menu-item-has-children has-mega-menu"><a href="#"><i class="icon-laundry"></i> Consumer Electronic</a>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Electronic<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Home Audio & Theathers</a>
</li>
<li class="current-menu-item "><a href="#">TV & Videos</a>
</li>
<li class="current-menu-item "><a href="#">Camera, Photos & Videos</a>
</li>
<li class="current-menu-item "><a href="#">Cellphones & Accessories</a>
</li>
<li class="current-menu-item "><a href="#">Headphones</a>
</li>
<li class="current-menu-item "><a href="#">Videosgames</a>
</li>
<li class="current-menu-item "><a href="#">Wireless Speakers</a>
</li>
<li class="current-menu-item "><a href="#">Office Electronic</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Accessories & Parts<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Digital Cables</a>
</li>
<li class="current-menu-item "><a href="#">Audio & Video Cables</a>
</li>
<li class="current-menu-item "><a href="#">Batteries</a>
</li>
</ul>
</div>
</div>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-shirt"></i> Clothing & Apparel</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-lampshade"></i> Home, Garden & Kitchen</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-heart-pulse"></i> Health & Beauty</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-diamond2"></i> Yewelry & Watches</a>
</li>
<li class="current-menu-item menu-item-has-children has-mega-menu"><a href="#"><i class="icon-desktop"></i> Computer & Technology</a>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Computer & Technologies<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Computer & Tablets</a>
</li>
<li class="current-menu-item "><a href="#">Laptop</a>
</li>
<li class="current-menu-item "><a href="#">Monitors</a>
</li>
<li class="current-menu-item "><a href="#">Networking</a>
</li>
<li class="current-menu-item "><a href="#">Drive & Storages</a>
</li>
<li class="current-menu-item "><a href="#">Computer Components</a>
</li>
<li class="current-menu-item "><a href="#">Security & Protection</a>
</li>
<li class="current-menu-item "><a href="#">Gaming Laptop</a>
</li>
<li class="current-menu-item "><a href="#">Accessories</a>
</li>
</ul>
</div>
</div>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-baby-bottle"></i> Babies & Moms</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-baseball"></i> Sport & Outdoor</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-smartphone"></i> Phones & Accessories</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-book2"></i> Books & Office</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-car-siren"></i> Cars & Motocycles</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-wrench"></i> Home Improments</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-tag"></i> Vouchers & Services</a>
</li>
</ul>
</div>
</div><a class="ps-logo" href="index-2.html"><img src="img/logo_light.png" alt=""></a>
</div>
<div class="header__center">
<form class="ps-form--quick-search" action="http://nouthemes.net/html/martfury/index.html" method="get">
<div class="form-group--icon"><i class="icon-chevron-down"></i>
<select class="form-control">
<option value="0" selected="selected">All</option>
<option class="level-0" value="babies-moms">Babies & Moms</option>
<option class="level-0" value="books-office">Books & Office</option>
<option class="level-0" value="cars-motocycles">Cars & Motocycles</option>
<option class="level-0" value="clothing-apparel">Clothing & Apparel</option>
<option class="level-1" value="accessories-clothing-apparel"> Accessories</option>
<option class="level-1" value="bags"> Bags</option>
<option class="level-1" value="kids-fashion"> Kid’s Fashion</option>
<option class="level-1" value="mens"> Mens</option>
<option class="level-1" value="shoes"> Shoes</option>
<option class="level-1" value="sunglasses"> Sunglasses</option>
<option class="level-1" value="womens"> Womens</option>
<option class="level-0" value="computers-technologies">Computers & Technologies</option>
<option class="level-1" value="desktop-pc"> Desktop PC</option>
<option class="level-1" value="laptop"> Laptop</option>
<option class="level-1" value="smartphones"> Smartphones</option>
<option class="level-0" value="consumer-electrics">Consumer Electrics</option>
<option class="level-1" value="air-conditioners"> Air Conditioners</option>
<option class="level-2" value="accessories"> Accessories</option>
<option class="level-2" value="type-hanging-cell"> Type Hanging Cell</option>
<option class="level-2" value="type-hanging-wall"> Type Hanging Wall</option>
<option class="level-1" value="audios-theaters"> Audios & Theaters</option>
<option class="level-2" value="headphone"> Headphone</option>
<option class="level-2" value="home-theater-system"> Home Theater System</option>
<option class="level-2" value="speakers"> Speakers</option>
<option class="level-1" value="car-electronics"> Car Electronics</option>
<option class="level-2" value="audio-video"> Audio & Video</option>
<option class="level-2" value="car-security"> Car Security</option>
<option class="level-2" value="radar-detector"> Radar Detector</option>
<option class="level-2" value="vehicle-gps"> Vehicle GPS</option>
<option class="level-1" value="office-electronics"> Office Electronics</option>
<option class="level-2" value="printers"> Printers</option>
<option class="level-2" value="projectors"> Projectors</option>
<option class="level-2" value="scanners"> Scanners</option>
<option class="level-2" value="store-business"> Store & Business</option>
<option class="level-1" value="refrigerators"> Refrigerators</option>
<option class="level-1" value="tv-televisions"> TV Televisions</option>
<option class="level-2" value="4k-ultra-hd-tvs"> 4K Ultra HD TVs</option>
<option class="level-2" value="led-tvs"> LED TVs</option>
<option class="level-2" value="oled-tvs"> OLED TVs</option>
<option class="level-1" value="washing-machines"> Washing Machines</option>
<option class="level-2" value="type-drying-clothes"> Type Drying Clothes</option>
<option class="level-2" value="type-horizontal"> Type Horizontal</option>
<option class="level-2" value="type-vertical"> Type Vertical</option>
<option class="level-0" value="garden-kitchen">Garden & Kitchen</option>
<option class="level-1" value="cookware"> Cookware</option>
<option class="level-1" value="decoration"> Decoration</option>
<option class="level-1" value="furniture"> Furniture</option>
<option class="level-1" value="garden-tools"> Garden Tools</option>
<option class="level-1" value="home-improvement"> Home Improvement</option>
<option class="level-1" value="powers-and-hand-tools"> Powers And Hand Tools</option>
<option class="level-1" value="utensil-gadget"> Utensil & Gadget</option>
<option class="level-0" value="health-beauty">Health & Beauty</option>
<option class="level-1" value="equipments"> Equipments</option>
<option class="level-1" value="hair-care"> Hair Care</option>
<option class="level-1" value="perfumer"> Perfumer</option>
<option class="level-1" value="skin-care"> Skin Care</option>
<option class="level-0" value="jewelry-watches">Jewelry & Watches</option>
<option class="level-1" value="gemstone-jewelry"> Gemstone Jewelry</option>
<option class="level-1" value="mens-watches"> Men’s Watches</option>
<option class="level-1" value="womens-watches"> Women’s Watches</option>
<option class="level-0" value="phones-accessories">Phones & Accessories</option>
<option class="level-1" value="iphone-8"> Iphone 8</option>
<option class="level-1" value="iphone-x"> Iphone X</option>
<option class="level-1" value="sam-sung-note-8"> Sam Sung Note 8</option>
<option class="level-1" value="sam-sung-s8"> Sam Sung S8</option>
<option class="level-0" value="sport-outdoor">Sport & Outdoor</option>
<option class="level-1" value="freezer-burn"> Freezer Burn</option>
<option class="level-1" value="fridge-cooler"> Fridge Cooler</option>
<option class="level-1" value="wine-cabinets"> Wine Cabinets</option>
</select>
</div>
<input class="form-control" type="text" placeholder="I'm shopping for...">
<button>Search</button>
</form>
</div>
<div class="header__right">
<div class="header__actions"><a class="header__extra" href="#"><i class="icon-chart-bars"></i><span><i>0</i></span></a><a class="header__extra" href="#"><i class="icon-heart"></i><span><i>0</i></span></a>
<div class="ps-cart--mini"><a class="header__extra" href="#"><i class="icon-bag2"></i><span><i>0</i></span></a>
<div class="ps-cart__content">
<div class="ps-cart__items">
<div class="ps-product--cart-mobile">
<div class="ps-product__thumbnail"><a href="#"><img src="img/products/clothing/7.jpg" alt=""></a></div>
<div class="ps-product__content"><a class="ps-product__remove" href="#"><i class="icon-cross"></i></a><a href="product-default.html">MVMTH Classical Leather Watch In Black</a>
<p><strong>Sold by:</strong> YOUNG SHOP</p><small>1 x $59.99</small>
</div>
</div>
<div class="ps-product--cart-mobile">
<div class="ps-product__thumbnail"><a href="#"><img src="img/products/clothing/5.jpg" alt=""></a></div>
<div class="ps-product__content"><a class="ps-product__remove" href="#"><i class="icon-cross"></i></a><a href="product-default.html">Sleeve Linen Blend Caro Pane Shirt</a>
<p><strong>Sold by:</strong> YOUNG SHOP</p><small>1 x $59.99</small>
</div>
</div>
</div>
<div class="ps-cart__footer">
<h3>Sub Total:<strong>$59.99</strong></h3>
<figure><a class="ps-btn" href="shopping-cart.html">View Cart</a><a class="ps-btn" href="checkout.html">Checkout</a></figure>
</div>
</div>
</div>
<div class="ps-block--user-header">
<div class="ps-block__left"><i class="icon-user"></i></div>
<div class="ps-block__right"><a href="my-account.html">Login</a><a href="my-account.html">Register</a></div>
</div>
</div>
</div>
</div>
</div>
<nav class="navigation">
<div class="ps-container">
<div class="navigation__left">
<div class="menu--product-categories">
<div class="menu__toggle"><i class="icon-menu"></i><span> Shop by Department</span></div>
<div class="menu__content">
<ul class="menu--dropdown">
<li class="current-menu-item "><a href="#"><i class="icon-star"></i> Hot Promotions</a>
</li>
<li class="current-menu-item menu-item-has-children has-mega-menu"><a href="#"><i class="icon-laundry"></i> Consumer Electronic</a>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Electronic<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Home Audio & Theathers</a>
</li>
<li class="current-menu-item "><a href="#">TV & Videos</a>
</li>
<li class="current-menu-item "><a href="#">Camera, Photos & Videos</a>
</li>
<li class="current-menu-item "><a href="#">Cellphones & Accessories</a>
</li>
<li class="current-menu-item "><a href="#">Headphones</a>
</li>
<li class="current-menu-item "><a href="#">Videosgames</a>
</li>
<li class="current-menu-item "><a href="#">Wireless Speakers</a>
</li>
<li class="current-menu-item "><a href="#">Office Electronic</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Accessories & Parts<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Digital Cables</a>
</li>
<li class="current-menu-item "><a href="#">Audio & Video Cables</a>
</li>
<li class="current-menu-item "><a href="#">Batteries</a>
</li>
</ul>
</div>
</div>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-shirt"></i> Clothing & Apparel</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-lampshade"></i> Home, Garden & Kitchen</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-heart-pulse"></i> Health & Beauty</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-diamond2"></i> Yewelry & Watches</a>
</li>
<li class="current-menu-item menu-item-has-children has-mega-menu"><a href="#"><i class="icon-desktop"></i> Computer & Technology</a>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Computer & Technologies<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="#">Computer & Tablets</a>
</li>
<li class="current-menu-item "><a href="#">Laptop</a>
</li>
<li class="current-menu-item "><a href="#">Monitors</a>
</li>
<li class="current-menu-item "><a href="#">Networking</a>
</li>
<li class="current-menu-item "><a href="#">Drive & Storages</a>
</li>
<li class="current-menu-item "><a href="#">Computer Components</a>
</li>
<li class="current-menu-item "><a href="#">Security & Protection</a>
</li>
<li class="current-menu-item "><a href="#">Gaming Laptop</a>
</li>
<li class="current-menu-item "><a href="#">Accessories</a>
</li>
</ul>
</div>
</div>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-baby-bottle"></i> Babies & Moms</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-baseball"></i> Sport & Outdoor</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-smartphone"></i> Phones & Accessories</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-book2"></i> Books & Office</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-car-siren"></i> Cars & Motocycles</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-wrench"></i> Home Improments</a>
</li>
<li class="current-menu-item "><a href="#"><i class="icon-tag"></i> Vouchers & Services</a>
</li>
</ul>
</div>
</div>
</div>
<div class="navigation__right">
<ul class="menu">
<li class="menu-item-has-children"><a href="index-2.html">Home</a><span class="sub-toggle"></span>
<ul class="sub-menu">
<li class="current-menu-item menu-item-has-children"><a href="index-2.html">Marketplace Full Width</a><span class="sub-toggle"><i class="fa fa-angle-down"></i></span>
<ul class="sub-menu">
<li class="current-menu-item "><a href="homepage-2.html">Home Auto Parts</a>
</li>
<li class="current-menu-item "><a href="homepage-10.html">Home Technology</a>
</li>
<li class="current-menu-item "><a href="homepage-9.html">Home Organic</a>
</li>
</ul>
</li>
<li class="current-menu-item "><a href="homepage-2.html">Home Auto Parts</a>
</li>
<li class="current-menu-item "><a href="homepage-10.html">Home Technology</a>
</li>
<li class="current-menu-item "><a href="homepage-9.html">Home Organic</a>
</li>
<li class="current-menu-item "><a href="homepage-3.html">Home Marketplace V1</a>
</li>
<li class="current-menu-item "><a href="homepage-4.html">Home Marketplace V2</a>
</li>
<li class="current-menu-item "><a href="homepage-5.html">Home Marketplace V3</a>
</li>
<li class="current-menu-item "><a href="homepage-6.html">Home Marketplace V4</a>
</li>
<li class="current-menu-item "><a href="homepage-7.html">Home Electronic</a>
</li>
<li class="current-menu-item "><a href="homepage-8.html">Home Furniture</a>
</li>
<li class="current-menu-item "><a href="homepage-kids.html">Home Kids</a>
</li>
<li class="current-menu-item "><a href="homepage-photo-and-video.html">Home photo and picture</a>
</li>
</ul>
</li>
<li class="menu-item-has-children has-mega-menu"><a href="shop-default.html">Shop</a><span class="sub-toggle"></span>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Catalog Pages<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="shop-default.html">Shop Default</a>
</li>
<li class="current-menu-item "><a href="shop-default.html">Shop Fullwidth</a>
</li>
<li class="current-menu-item "><a href="shop-categories.html">Shop Categories</a>
</li>
<li class="current-menu-item "><a href="shop-sidebar.html">Shop Sidebar</a>
</li>
<li class="current-menu-item "><a href="shop-sidebar-without-banner.html">Shop Without Banner</a>
</li>
<li class="current-menu-item "><a href="shop-carousel.html">Shop Carousel</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Product Layout<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="product-default.html">Default</a>
</li>
<li class="current-menu-item "><a href="product-extend.html">Extended</a>
</li>
<li class="current-menu-item "><a href="product-full-content.html">Full Content</a>
</li>
<li class="current-menu-item "><a href="product-box.html">Boxed</a>
</li>
<li class="current-menu-item "><a href="product-sidebar.html">Sidebar</a>
</li>
<li class="current-menu-item "><a href="product-default.html">Fullwidth</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Product Types<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="product-default.html">Simple</a>
</li>
<li class="current-menu-item "><a href="product-default.html">Color Swatches</a>
</li>
<li class="current-menu-item "><a href="product-image-swatches.html">Images Swatches</a>
</li>
<li class="current-menu-item "><a href="product-countdown.html">Countdown</a>
</li>
<li class="current-menu-item "><a href="product-multi-vendor.html">Multi-Vendor</a>
</li>
<li class="current-menu-item "><a href="product-instagram.html">Instagram</a>
</li>
<li class="current-menu-item "><a href="product-affiliate.html">Affiliate</a>
</li>
<li class="current-menu-item "><a href="product-on-sale.html">On sale</a>
</li>
<li class="current-menu-item "><a href="product-video.html">Video Featured</a>
</li>
<li class="current-menu-item "><a href="product-groupped.html">Grouped</a>
</li>
<li class="current-menu-item "><a href="product-out-stock.html">Out Of Stock</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Woo Pages<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="shopping-cart.html">Shopping Cart</a>
</li>
<li class="current-menu-item "><a href="checkout.html">Checkout</a>
</li>
<li class="current-menu-item "><a href="whishlist.html">Whishlist</a>
</li>
<li class="current-menu-item "><a href="compare.html">Compare</a>
</li>
<li class="current-menu-item "><a href="order-tracking.html">Order Tracking</a>
</li>
<li class="current-menu-item "><a href="my-account.html">My Account</a>
</li>
</ul>
</div>
</div>
</li>
<li class="menu-item-has-children has-mega-menu"><a href="#">Pages</a><span class="sub-toggle"></span>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Basic Page<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="about-us.html">About Us</a>
</li>
<li class="current-menu-item "><a href="contact-us.html">Contact</a>
</li>
<li class="current-menu-item "><a href="faqs.html">Faqs</a>
</li>
<li class="current-menu-item "><a href="comming-soon.html">Comming Soon</a>
</li>
<li class="current-menu-item "><a href="404-page.html">404 Page</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Vendor Pages<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="become-a-vendor.html">Become a Vendor</a>
</li>
<li class="current-menu-item "><a href="vendor-store.html">Vendor Store</a>
</li>
<li class="current-menu-item "><a href="vendor-dashboard-free.html">Vendor Dashboard Free</a>
</li>
<li class="current-menu-item "><a href="vendor-dashboard-pro.html">Vendor Dashboard Pro</a>
</li>
<li class="current-menu-item "><a href="store-list.html">Store List</a>
</li>
<li class="current-menu-item "><a href="store-list.html">Store List 2</a>
</li>
<li class="current-menu-item "><a href="store-detail.html">Store Detail</a>
</li>
</ul>
</div>
</div>
</li>
<li class="menu-item-has-children has-mega-menu"><a href="#">Blogs</a><span class="sub-toggle"></span>
<div class="mega-menu">
<div class="mega-menu__column">
<h4>Blog Layout<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="blog-grid.html">Grid</a>
</li>
<li class="current-menu-item "><a href="blog-list.html">Listing</a>
</li>
<li class="current-menu-item "><a href="blog-small-thumb.html">Small Thumb</a>
</li>
<li class="current-menu-item "><a href="blog-left-sidebar.html">Left Sidebar</a>
</li>
<li class="current-menu-item "><a href="blog-right-sidebar.html">Right Sidebar</a>
</li>
</ul>
</div>
<div class="mega-menu__column">
<h4>Single Blog<span class="sub-toggle"></span></h4>
<ul class="mega-menu__list">
<li class="current-menu-item "><a href="blog-detail.html">Single 1</a>
</li>
<li class="current-menu-item "><a href="blog-detail-2.html">Single 2</a>
</li>
<li class="current-menu-item "><a href="blog-detail-3.html">Single 3</a>
</li>
<li class="current-menu-item "><a href="blog-detail-4.html">Single 4</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
<ul class="navigation__extra">
<li><a href="#">Sell on Martfury</a></li>
<li><a href="#">Tract your order</a></li>
<li>
<div class="ps-dropdown"><a href="#">US Dollar</a>
<ul class="ps-dropdown-menu">
<li><a href="#">Us Dollar</a></li>
<li><a href="#">Euro</a></li>
</ul>
</div>
</li>
<li>
<div class="ps-dropdown language"><a href="#"><img src="img/flag/en.png" alt="">English</a>
<ul class="ps-dropdown-menu">
<li><a href="#"><img src="img/flag/germany.png" alt=""> Germany</a></li>
<li><a href="#"><img src="img/flag/fr.png" alt=""> France</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<header class="header header--mobile header--mobile-product" data-sticky="true">
<div class="navigation--mobile">
<div class="navigation__left"><a class="header__back" href="shop-default.html"><i class="icon-chevron-left"></i><strong>Back to Categories</strong></a></div>
<div class="navigation__right">
<div class="header__actions">
<div class="ps-cart--mini"><a class="header__extra" href="#"><i class="icon-bag2"></i><span><i>0</i></span></a>
<div class="ps-cart__content">
<div class="ps-cart__items">
<div class="ps-product--cart-mobile">
<div class="ps-product__thumbnail"><a href="#"><img src="img/products/clothing/7.jpg" alt=""></a></div>
<div class="ps-product__content"><a class="ps-product__remove" href="#"><i class="icon-cross"></i></a><a href="product-default.html">MVMTH Classical Leather Watch In Black</a>
<p><strong>Sold by:</strong> YOUNG SHOP</p><small>1 x $59.99</small>
</div>
</div>
<div class="ps-product--cart-mobile">
<div class="ps-product__thumbnail"><a href="#"><img src="img/products/clothing/5.jpg" alt=""></a></div>
<div class="ps-product__content"><a class="ps-product__remove" href="#"><i class="icon-cross"></i></a><a href="product-default.html">Sleeve Linen Blend Caro Pane Shirt</a>
<p><strong>Sold by:</strong> YOUNG SHOP</p><small>1 x $59.99</small>
</div>
</div>
</div>
<div class="ps-cart__footer">
<h3>Sub Total:<strong>$59.99</strong></h3>
<figure><a class="ps-btn" href="shopping-cart.html">View Cart</a><a class="ps-btn" href="checkout.html">Checkout</a></figure>
</div>
</div>
</div>
<div class="ps-block--user-header">
<div class="ps-block__left"><i class="icon-user"></i></div>
<div class="ps-block__right"><a href="my-account.html">Login</a><a href="my-account.html">Register</a></div>
</div>
</div>
</div>
</div>
</header>
<nav class="navigation--mobile-product"><a class="ps-btn ps-btn--black" href="shopping-cart.html">Add to cart</a><a class="ps-btn" href="checkout.html">Buy Now</a></nav>
<div class="ps-breadcrumb">
<div class="ps-container">
<ul class="breadcrumb">
<li><a href="index-2.html">Home</a></li>
<li><a href="shop-default.html">Health & Beauty</a></li>
<li><a href="shop-default.html">Equipments</a></li>
<li>Baxter Care Hair Kit For Bearded Mens</li>
</ul>
</div>
</div>
<div class="ps-page--product">
<div class="ps-container">
<div class="ps-page__container">
<div class="ps-page__left">
<div class="ps-product--detail ps-product--fullwidth">
<div class="ps-product__header">
<div class="ps-product__thumbnail" data-vertical="true">
<figure>
<div class="ps-wrapper">
<div class="ps-product__gallery" data-arrow="true">
<div class="item"><a href="img/products/detail/on-sale/1.jpg"><img src="img/products/detail/on-sale/1.jpg" alt=""></a></div>
<div class="item"><a href="img/products/detail/on-sale/2.jpg"><img src="img/products/detail/on-sale/2.jpg" alt=""></a></div>
<div class="item"><a href="img/products/detail/on-sale/3.jpg"><img src="img/products/detail/on-sale/3.jpg" alt=""></a></div>
<div class="item"><a href="img/products/detail/on-sale/4.jpg"><img src="img/products/detail/on-sale/4.jpg" alt=""></a></div>
</div>
</div>
</figure>
<div class="ps-product__variants" data-item="4" data-md="4" data-sm="4" data-arrow="false">
<div class="item"><img src="img/products/detail/on-sale/1.jpg" alt=""></div>
<div class="item"><img src="img/products/detail/on-sale/2.jpg" alt=""></div>
<div class="item"><img src="img/products/detail/on-sale/3.jpg" alt=""></div>
<div class="item"><img src="img/products/detail/on-sale/4.jpg" alt=""></div>
</div>
</div>
<div class="ps-product__info">
<h1>Marshall Kilburn Portable Wireless Speaker</h1>
<div class="ps-product__meta">
<p>Brand:<a href="shop-default.html">Sony</a></p>
<div class="ps-product__rating">
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>(1 review)</span>
</div>
</div>
<h4 class="ps-product__price sale">$93.59
<del> $125.17</del><small> (-25%)</small>
</h4>
<div class="ps-product__desc">
<p> Sold By:<a class="mr-20" href="shop-default.html"><strong> Go Pro</strong></a> Status:<a href="shop-default.html"><strong class="ps-tag--in-stock"> In-stock</strong></a></p>
<ul class="ps-list--dot">
<li> Unrestrained and portable active stereo speaker</li>
<li> Free from the confines of wires and chords</li>
<li> 20 hours of portable capabilities</li>
<li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>
<li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li>
</ul>
</div>
<div class="ps-product__countdown">
<figure>
<figcaption> Don't Miss Out! This promotion will expires in</figcaption>
<ul class="ps-countdown" data-time="July 21, 2020 15:37:25">
<li><span class="days"></span>
<p>Days</p>
</li>
<li><span class="hours"></span>
<p>Hours</p>
</li>
<li><span class="minutes"></span>
<p>Minutes</p>
</li>
<li><span class="seconds"></span>
<p>Seconds</p>
</li>
</ul>
</figure>
<figure>
<figcaption>Sold Items</figcaption>
<div class="ps-product__progress-bar ps-progress" data-value="36">
<div class="ps-progress__value"><span></span></div>
<p><b>20/85</b> Sold</p>
</div>
</figure>
</div>
<div class="ps-product__shopping">
<figure>
<figcaption>Quantity</figcaption>
<div class="form-group--number">
<button class="up"><i class="fa fa-plus"></i></button>
<button class="down"><i class="fa fa-minus"></i></button>
<input class="form-control" type="text" placeholder="1">
</div>
</figure><a class="ps-btn ps-btn--black" href="#">Add to cart</a><a class="ps-btn" href="#">Buy Now</a>
<div class="ps-product__actions"><a href="#"><i class="icon-heart"></i></a><a href="#"><i class="icon-chart-bars"></i></a></div>
</div>
<div class="ps-product__specification"><a class="report" href="#">Report Abuse</a>
<p><strong>SKU:</strong> SF1133569600-1</p>
<p class="categories"><strong> Categories:</strong><a href="#">Consumer Electronics</a>,<a href="#"> Refrigerator</a>,<a href="#">Babies & Moms</a></p>
<p class="tags"><strong> Tags</strong><a href="#">sofa</a>,<a href="#">technologies</a>,<a href="#">wireless</a></p>
</div>
<div class="ps-product__sharing"><a class="facebook" href="#"><i class="fa fa-facebook"></i></a><a class="twitter" href="#"><i class="fa fa-twitter"></i></a><a class="google" href="#"><i class="fa fa-google-plus"></i></a><a class="linkedin" href="#"><i class="fa fa-linkedin"></i></a><a class="instagram" href="#"><i class="fa fa-instagram"></i></a></div>
</div>
</div>
<div class="ps-product__content ps-tab-root">
<ul class="ps-tab-list">
<li class="active"><a href="#tab-1">Description</a></li>
<li><a href="#tab-2">Specification</a></li>
<li><a href="#tab-3">Vendor</a></li>
<li><a href="#tab-4">Reviews (1)</a></li>
<li><a href="#tab-5">Questions and Answers</a></li>
<li><a href="#tab-6">More Offers</a></li>
</ul>
<div class="ps-tabs">
<div class="ps-tab active" id="tab-1">
<div class="ps-document">
<h5>Embodying the Raw, Wayward Spirit of Rock 'N' Roll</h5>
<p>Embodying the raw, wayward spirit of rock ‘n’ roll, the Kilburn portable active stereo speaker takes the unmistakable look and sound of Marshall, unplugs the chords, and takes the show on the road.</p>
<p>Weighing in under 7 pounds, the Kilburn is a lightweight piece of vintage styled engineering. Setting the bar as one of the loudest speakers in its class, the Kilburn is a compact, stout-hearted hero with a well-balanced audio which boasts a clear midrange and extended highs for a sound that is both articulate and pronounced. The analogue knobs allow you to fine tune the controls to your personal preferences while the guitar-influenced leather strap enables easy and stylish travel.</p><img class="mb-30" src="img/products/detail/content/description.jpg" alt="">
<h5>What do you get</h5>
<p>Sound of Marshall, unplugs the chords, and takes the show on the road.</p>
<p>Weighing in under 7 pounds, the Kilburn is a lightweight piece of vintage styled engineering. Setting the bar as one of the loudest speakers in its class, the Kilburn is a compact, stout-hearted hero with a well-balanced audio which boasts a clear midrange and extended highs for a sound that is both articulate and pronounced. The analogue knobs allow you to fine tune the controls to your personal preferences while the guitar-influenced leather strap enables easy and stylish travel.</p>
<p>The FM radio is perhaps gone for good, the assumption apparently being that the jury has ruled in favor of streaming over the internet. The IR blaster is another feature due for retirement – the S6 had it, then the Note5 didn’t, and now with the S7 the trend is clear.</p>
<h5>Perfectly Done</h5>
<p>Meanwhile, the IP68 water resistance has improved from the S5, allowing submersion of up to five feet for 30 minutes, plus there’s no annoying flap covering the charging port</p>
<ul class="pl-0">
<li>No FM radio (except for T-Mobile units in the US, so far)</li>
<li>No IR blaster</li>
<li>No stereo speakers</li>
</ul>
<p>If you’ve taken the phone for a plunge in the bath, you’ll need to dry the charging port before plugging in. Samsung hasn’t reinvented the wheel with the design of the Galaxy S7, but it didn’t need to. The Gala S6 was an excellently styled device, and the S7 has managed to improve on that.</p>
</div>
</div>
<div class="ps-tab" id="tab-2">
<div class="table-responsive">
<table class="table table-bordered ps-table ps-table--specification">
<tbody>
<tr>
<td>Color</td>
<td>Black, Gray</td>
</tr>
<tr>
<td>Style</td>
<td>Ear Hook</td>
</tr>
<tr>
<td>Wireless</td>
<td>Yes</td>
</tr>
<tr>
<td>Dimensions</td>
<td>5.5 x 5.5 x 9.5 inches</td>
</tr>
<tr>
<td>Weight</td>
<td>6.61 pounds</td>
</tr>
<tr>
<td>Battery Life</td>
<td>20 hours</td>
</tr>
<tr>
<td>Bluetooth</td>
<td>Yes</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ps-tab" id="tab-3">
<h4>GoPro</h4>
<p>Digiworld US, New York’s no.1 online retailer was established in May 2012 with the aim and vision to become the one-stop shop for retail in New York with implementation of best practices both online</p><a href="#">More Products from gopro</a>
</div>
<div class="ps-tab" id="tab-4">
<div class="row">
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12 ">
<div class="ps-block--average-rating">
<div class="ps-block__header">
<h3>4.00</h3>
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>1 Review</span>
</div>
<div class="ps-block__star"><span>5 Star</span>
<div class="ps-progress" data-value="100"><span></span></div><span>100%</span>
</div>
<div class="ps-block__star"><span>4 Star</span>
<div class="ps-progress" data-value="0"><span></span></div><span>0</span>
</div>
<div class="ps-block__star"><span>3 Star</span>
<div class="ps-progress" data-value="0"><span></span></div><span>0</span>
</div>
<div class="ps-block__star"><span>2 Star</span>
<div class="ps-progress" data-value="0"><span></span></div><span>0</span>
</div>
<div class="ps-block__star"><span>1 Star</span>
<div class="ps-progress" data-value="0"><span></span></div><span>0</span>
</div>
</div>
</div>
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12 ">
<form class="ps-form--review" action="http://nouthemes.net/html/martfury/index.html" method="get">
<h4>Submit Your Review</h4>
<p>Your email address will not be published. Required fields are marked<sup>*</sup></p>
<div class="form-group form-group__rating">
<label>Your rating of this product</label>
<select class="ps-rating" data-read-only="false">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
<div class="form-group">
<textarea class="form-control" rows="6" placeholder="Write your review here"></textarea>
</div>
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 ">
<div class="form-group">
<input class="form-control" type="text" placeholder="Your Name">
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 ">
<div class="form-group">
<input class="form-control" type="email" placeholder="Your Email">
</div>
</div>
</div>
<div class="form-group submit">
<button class="ps-btn">Submit Review</button>
</div>
</form>
</div>
</div>
</div>
<div class="ps-tab" id="tab-5">
<div class="ps-block--questions-answers">
<h3>Questions and Answers</h3>
<div class="form-group">
<input class="form-control" type="text" placeholder="Have a question? Search for answer?">
</div>
</div>
</div>
<div class="ps-tab active" id="tab-6">
<p>Sorry no more offers available</p>
</div>
</div>
</div>
</div>
</div>
<div class="ps-page__right">
<aside class="widget widget_product widget_features">
<p><i class="icon-network"></i> Shipping worldwide</p>
<p><i class="icon-3d-rotate"></i> Free 7-day return if eligible, so easy</p>
<p><i class="icon-receipt"></i> Supplier give bills for this product.</p>
<p><i class="icon-credit-card"></i> Pay online or when receiving goods</p>
</aside>
<aside class="widget widget_sell-on-site">
<p><i class="icon-store"></i> Sell on Martfury?<a href="#"> Register Now !</a></p>
</aside>
<aside class="widget widget_ads"><a href="#"><img src="img/ads/product-ads.png" alt=""></a></aside>
<aside class="widget widget_same-brand">
<h3>Same Brand</h3>
<div class="widget__content">
<div class="ps-product">
<div class="ps-product__thumbnail"><a href="product-default.html"><img src="img/products/shop/5.jpg" alt=""></a>
<div class="ps-product__badge">-37%</div>
<ul class="ps-product__actions">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Read More"><i class="icon-bag2"></i></a></li>
<li><a href="#" data-placement="top" title="Quick View" data-toggle="modal" data-target="#product-quickview"><i class="icon-eye"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Add to Whishlist"><i class="icon-heart"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Compare"><i class="icon-chart-bars"></i></a></li>
</ul>
</div>
<div class="ps-product__container"><a class="ps-product__vendor" href="#">Robert's Store</a>
<div class="ps-product__content"><a class="ps-product__title" href="product-default.html">Grand Slam Indoor Of Show Jumping Novel</a>
<div class="ps-product__rating">
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>01</span>
</div>
<p class="ps-product__price sale">$32.99 <del>$41.00 </del></p>
</div>
<div class="ps-product__content hover"><a class="ps-product__title" href="product-default.html">Grand Slam Indoor Of Show Jumping Novel</a>
<p class="ps-product__price sale">$32.99 <del>$41.00 </del></p>
</div>
</div>
</div>
<div class="ps-product">
<div class="ps-product__thumbnail"><a href="product-default.html"><img src="img/products/shop/6.jpg" alt=""></a>
<div class="ps-product__badge">-5%</div>
<ul class="ps-product__actions">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Read More"><i class="icon-bag2"></i></a></li>
<li><a href="#" data-placement="top" title="Quick View" data-toggle="modal" data-target="#product-quickview"><i class="icon-eye"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Add to Whishlist"><i class="icon-heart"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Compare"><i class="icon-chart-bars"></i></a></li>
</ul>
</div>
<div class="ps-product__container"><a class="ps-product__vendor" href="#">Youngshop</a>
<div class="ps-product__content"><a class="ps-product__title" href="product-default.html">Sound Intone I65 Earphone White Version</a>
<div class="ps-product__rating">
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>01</span>
</div>
<p class="ps-product__price sale">$100.99 <del>$106.00 </del></p>
</div>
<div class="ps-product__content hover"><a class="ps-product__title" href="product-default.html">Sound Intone I65 Earphone White Version</a>
<p class="ps-product__price sale">$100.99 <del>$106.00 </del></p>
</div>
</div>
</div>
</div>
</aside>
</div>
</div>
<div class="ps-section--default ps-customer-bought">
<div class="ps-section__header">
<h3>Customers who bought this item also bought</h3>
</div>
<div class="ps-section__content">
<div class="row">
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-6 col-6 ">
<div class="ps-product">
<div class="ps-product__thumbnail"><a href="product-default.html"><img src="img/products/shop/4.jpg" alt=""></a>
<div class="ps-product__badge hot">hot</div>
<ul class="ps-product__actions">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Read More"><i class="icon-bag2"></i></a></li>
<li><a href="#" data-placement="top" title="Quick View" data-toggle="modal" data-target="#product-quickview"><i class="icon-eye"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Add to Whishlist"><i class="icon-heart"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Compare"><i class="icon-chart-bars"></i></a></li>
</ul>
</div>
<div class="ps-product__container"><a class="ps-product__vendor" href="#">Global Office</a>
<div class="ps-product__content"><a class="ps-product__title" href="product-default.html">Xbox One Wireless Controller Black Color</a>
<div class="ps-product__rating">
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>01</span>
</div>
<p class="ps-product__price">$55.99</p>
</div>
<div class="ps-product__content hover"><a class="ps-product__title" href="product-default.html">Xbox One Wireless Controller Black Color</a>
<p class="ps-product__price">$55.99</p>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-6 col-6 ">
<div class="ps-product">
<div class="ps-product__thumbnail"><a href="product-default.html"><img src="img/products/shop/5.jpg" alt=""></a>
<div class="ps-product__badge">-37%</div>
<ul class="ps-product__actions">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Read More"><i class="icon-bag2"></i></a></li>
<li><a href="#" data-placement="top" title="Quick View" data-toggle="modal" data-target="#product-quickview"><i class="icon-eye"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Add to Whishlist"><i class="icon-heart"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Compare"><i class="icon-chart-bars"></i></a></li>
</ul>
</div>
<div class="ps-product__container"><a class="ps-product__vendor" href="#">Robert's Store</a>
<div class="ps-product__content"><a class="ps-product__title" href="product-default.html">Grand Slam Indoor Of Show Jumping Novel</a>
<div class="ps-product__rating">
<select class="ps-rating" data-read-only="true">
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
<option value="2">5</option>
</select><span>01</span>
</div>