-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop_list_right_sidebar.html
1253 lines (1216 loc) · 74.7 KB
/
shop_list_right_sidebar.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 htmlmystore.justthemevalley.com/genius/Version3/shop_list_right_sidebar.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Apr 2017 11:43:27 GMT -->
<head>
<!-- Basic page needs -->
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<![endif]-->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Genius premium HTML5 & CSS3 template</title>
<meta name="description" content="">
<!-- Mobile specific metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700' rel='stylesheet' type='text/css'>
<!-- CSS Style -->
<link rel="stylesheet" href="style.css">
</head>
<body class="shop_list_page">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="page">
<!-- Header -->
<header>
<div class="header-container">
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-5 col-xs-6">
<!-- Default Welcome Message -->
<span class="phone hidden-xs hidden-sm"><i class="fa fa-phone fa-lg"></i> +123.456.789</span>
<div class="welcome-msg hidden-xs">Welcome to Genius! </div>
<div class="language-currency-wrapper">
<div class="inner-cl">
<div class="block block-language form-language">
<div class="lg-cur"> <span> <img src="images/flag-default.jpg" alt="French"> <span class="lg-fr">French</span> <i class="fa fa-angle-down"></i> </span> </div>
<ul>
<li> <a class="selected" href="#"> <img src="images/flag-english.jpg" alt="flag"> <span>English</span> </a> </li>
<li> <a href="#"> <img src="images/flag-default.jpg" alt="flag"> <span>French</span> </a> </li>
<li> <a href="#"> <img src="images/flag-german.jpg" alt="flag"> <span>German</span> </a> </li>
<li> <a href="#"> <img src="images/flag-brazil.jpg" alt="flag"> <span>Brazil</span> </a> </li>
<li> <a href="#"> <img src="images/flag-chile.jpg" alt="flag"> <span>Chile</span> </a> </li>
<li> <a href="#"> <img src="images/flag-spain.jpg" alt="flag"> <span>Spain</span> </a> </li>
</ul>
</div>
<div class="block block-currency">
<div class="item-cur"> <span>USD </span> <i class="fa fa-angle-down"></i></div>
<ul>
<li> <a href="#"><span class="cur_icon">€</span> EUR</a> </li>
<li> <a href="#"><span class="cur_icon">¥</span> JPY</a> </li>
<li> <a class="selected" href="#"><span class="cur_icon">$</span> USD</a> </li>
</ul>
</div>
</div>
</div>
</div>
<!-- top links -->
<div class="headerlinkmenu col-lg-6 col-md-6 col-sm-7 col-xs-6 text-right">
<div class="links">
<div class="jtv-user-info">
<div class="dropdown"> <a class="current-open" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#"><span>My Account </span> <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="account_page.html">Account</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li class="divider"></li>
<li><a href="account_page.html">Log In</a></li>
<li><a href="account_page.html">Sign Up</a></li>
</ul>
</div>
</div>
<div class="services hidden-xs"><a title="servicesg" href="#">Services</a></div>
<div class="myaccount hidden-xs"><a title="My Account" href="#">My Support</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-3 col-md-3 col-xs-12">
<!-- Header Logo -->
<div class="logo"><a title="e-commerce" href="index-2.html"><img alt="e-commerce" src="images/logo.png"></a> </div>
<!-- End Header Logo -->
</div>
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-6">
<!-- Search -->
<div class="top-search">
<div id="search">
<form>
<div class="input-group">
<select class="cate-dropdown hidden-xs hidden-sm" name="category_id">
<option>All Categories</option>
<option>women</option>
<option> Accessories </option>
<option> Dresses</option>
<option> Top</option>
<option> Handbags </option>
<option> Shoes </option>
<option> Clothing </option>
<option>Men</option>
<option>Electronics</option>
<option> Mobiles </option>
<option> Music & Audio </option>
</select>
<input type="text" class="form-control" placeholder="Search" name="search">
<button class="btn-search" type="button"><i class="fa fa-search"></i></button>
</div>
</form>
</div>
</div>
<!-- End Search -->
</div>
<div class="col-lg-3 col-sm-4 col-xs-12 top-cart">
<div class="link-wishlist"> <a href="#"> <span class="wishlist-count">3</span> <i class="fa fa-heart fa-lg"></i> </a> </div>
<div class="top-cart-contain">
<div class="mini-cart">
<div data-toggle="dropdown" data-hover="dropdown" class="basket dropdown-toggle"> <a href="#">
<div class="cart-icon"><i class="fa fa-shopping-cart"></i></div>
<div class="shoppingcart-inner"><span class="cart-title">Shopping Cart</span> <span class="cart-total">4 Item(s): $520.00</span></div>
</a></div>
<div>
<div class="top-cart-content">
<div class="block-subtitle hidden-xs">Recently added item(s)</div>
<ul id="cart-sidebar" class="mini-products-list">
<li class="item odd"> <a href="#" title="Ipsums Dolors Untra" class="product-image"><img src="images/products/img07.jpg" alt="Lorem ipsum dolor" width="65"></a>
<div class="product-details"> <a href="#" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a>
<p class="product-name"><a href="#">Lorem ipsum dolor sit amet Consectetur</a> </p>
<strong>1</strong> x <span class="price">$20.00</span> </div>
</li>
<li class="item even"> <a href="#" title="Ipsums Dolors Untra" class="product-image"><img src="images/products/img08.jpg" alt="Lorem ipsum dolor" width="65"></a>
<div class="product-details"> <a href="#" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a>
<p class="product-name"><a href="#">Consectetur utes anet adipisicing elit</a> </p>
<strong>1</strong> x <span class="price">$230.00</span> </div>
</li>
<li class="item last odd"> <a href="#" title="Ipsums Dolors Untra" class="product-image"><img src="images/products/img10.jpg" alt="Lorem ipsum dolor" width="65"></a>
<div class="product-details"> <a href="#" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a>
<p class="product-name"><a href="#">Sed do eiusmod tempor incidist</a> </p>
<strong>2</strong> x <span class="price">$420.00</span> </div>
</li>
</ul>
<div class="top-subtotal">Subtotal: <span class="price">$520.00</span></div>
<div class="actions">
<button onclick="location.href='checkout.html'" class="btn-checkout" type="button"><i class="fa fa-check"></i><span>Checkout</span></button>
<button onclick="location.href='shopping_cart.html'" class="view-cart" type="button"><i class="fa fa-shopping-cart"></i> <span>View Cart</span></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- Start Menu Area -->
<div class="menu-area">
<div class="container">
<div class="row">
<div class="col-md-12 hidden-xs">
<div class="main-menu">
<nav>
<ul>
<li class="custom-menu"><a href="index-2.html">Home</a>
<ul class="dropdown">
<li><a href="http://htmlmystore.justthemevalley.com/genius/index.html">Fruits Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version2/index.html">Shoes Store</a></li>
<li><a href="index-2.html">Fashion Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version4/index.html">Jewellery Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version5/index.html">Electronic Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/rtl-fruits-store/index.html">RTL Fruits Store</a></li>
</ul>
</li>
<li class="megamenu"><a href="shop_grid.html">Men</a>
<div class="mega-menu"> <span> <a class="mega-title" href="#">Clothing </a> <a href="shop_grid.html">Casual shirt</a> <a href="shop_grid.html">Trousers</a> <a href="shop_grid.html">Suits & Blazers </a> <a href="shop_grid.html">Sportswear </a> </span> <span> <a class="mega-title" href="#">Jewellery </a> <a href="shop_grid.html">Gold</a> <a href="shop_grid.html">Platinum</a> <a href="shop_grid.html">Rings </a> <a href="shop_grid.html">Neckwear </a> </span> <span> <a class="mega-title" href="#">Shoes </a> <a href="shop_grid.html">Sports & Outdoor</a> <a href="shop_grid.html">Mocassins</a> <a href="shop_grid.html">Sneakers </a> <a href="shop_grid.html">Formal Shoes </a> </span> <span class="mega-menu-img hidden-sm"> <a href="shop_grid.html"><img src="images/menu-img1.jpg" alt="Bannar 1"></a> </span> <span> <a class="mega-title" href="#">Eyewear </a> <a href="shop_grid.html">Backpacks</a> <a href="shop_grid.html">Ray-Ban</a> <a href="shop_grid.html">Opium </a> <a href="shop_grid.html">Joe Black </a> </span> <span> <a class="mega-title" href="#">Watches </a> <a href="shop_grid.html">Fastrack </a> <a href="shop_grid.html">Timex </a> <a href="shop_grid.html">Citizen</a> <a href="shop_grid.html">Titan </a> </span> <span> <a class="mega-title" href="#">Accessories </a> <a href="shop_grid.html">Handbags</a> <a href="shop_grid.html">Sunglasses</a> <a href="shop_grid.html">Clutches </a> <a href="shop_grid.html">Backpacks </a> </span> </div>
</li>
<li class="megamenu active"><a href="shop_grid.html">Women</a>
<div class="mega-menu"> <span class="mega-menu-img left hidden-sm"> <a href="shop_grid.html"><img src="images/menu-img2.jpg" alt="Bannar 2"></a> </span> <span> <a class="mega-title" href="#">Clothing </a> <a href="shop_grid.html">Casual shirt</a> <a href="shop_grid.html">Trousers</a> <a href="shop_grid.html">Suits & Blazers </a> <a href="shop_grid.html">Sportswear </a> </span> <span> <a class="mega-title" href="#">Jewellery </a> <a href="shop_grid.html">Gold</a> <a href="shop_grid.html">Platinum</a> <a href="shop_grid.html">Rings </a> <a href="shop_grid.html">Neckwear </a> </span> <span> <a class="mega-title" href="#">Shoes </a> <a href="shop_grid.html">Sports & Outdoor</a> <a href="shop_grid.html">Mocassins</a> <a href="shop_grid.html">Sneakers </a> <a href="shop_grid.html">Formal Shoes </a> </span> <span> <a class="mega-title" href="#">Eyewear </a> <a href="shop_grid.html">Backpacks</a> <a href="shop_grid.html">Ray-Ban</a> <a href="shop_grid.html">Opium </a> <a href="shop_grid.html">Joe Black </a> </span> <span> <a class="mega-title" href="#">Watches </a> <a href="shop_grid.html">Fastrack </a> <a href="shop_grid.html">Timex </a> <a href="shop_grid.html">Citizen</a> <a href="shop_grid.html">Titan </a> </span> <span> <a class="mega-title" href="#">Accessories </a> <a href="shop_grid.html">Handbags</a> <a href="shop_grid.html">Sunglasses</a> <a href="shop_grid.html">Clutches </a> <a href="shop_grid.html">Backpacks </a> </span> </div>
</li>
<li class="megamenu"><a href="shop_grid.html">Children</a>
<div class="mega-menu"> <span> <a class="mega-title" href="#">Baby clothing </a> <a href="shop_grid.html">Casual shirt</a> <a href="shop_grid.html">Trousers</a> <a href="shop_grid.html">Suits & Blazers </a> <a href="shop_grid.html">Sportswear </a> </span> <span> <a class="mega-title" href="#">Boys </a> <a href="shop_grid.html">Clothing</a> <a href="shop_grid.html">Shoes</a> <a href="shop_grid.html">Watches </a> <a href="shop_grid.html">Sunglasses </a> </span> <span> <a class="mega-title" href="#">Girls </a> <a href="shop_grid.html">Baby Girl</a> <a href="shop_grid.html">Shoes</a> <a href="shop_grid.html">Watches </a> <a href="shop_grid.html">Sunglasses </a> </span> <span class="mega-menu-img hidden-sm"> <a href="shop_grid.html"><img src="images/menu-img3.jpg" alt="Bannar 3"></a> </span> </div>
</li>
<li class="megamenu"><a href="shop_grid.html">Pages</a>
<div class="mega-menu"> <span> <a class="mega-title" href="#">Shop Pages </a> <a href="shop_grid.html"> Shop grid </a> <a href="shop_grid_right_sidebar.html"> Shop grid right sidebar</a> <a href="shop_list.html"> Shop list </a> <a href="shop_list_right_sidebar.html"> Shop list right sidebar</a> <a href="shop_grid_full_width.html"> Shop Full width </a> <a href="single_product_right_sidebar.html"> single product right sidebar</a> </span> <span> <a class="mega-title" href="#">Ecommerce Pages </a> <a href="wishlist.html"> Wishlists </a> <a href="checkout.html"> Checkout </a> <a href="compare.html"> Compare </a> <a href="shopping_cart.html"> Shopping cart </a> <a href="quick_view.html"> Quick View </a> <a href="single_product_magnify_zoom.html"> single product magnify zoom</a> </span> <span> <a class="mega-title" href="#">Product Categories </a> <a href="single_product.html"> single product </a> <a href="single_product_left_sidebar.html"> single product left sidebar</a> <a href="cat-3-col.html"> 3 Column Sidebar </a> <a href="cat-4-col.html"> 4 Column Sidebar</a> <a href="cat-4-col-full.html"> 4 Column Full width </a> <a href="col3-sidebar.html"> col3 Sidebar</a> </span> <span> <a class="mega-title" href="#">Static Pages </a> <a href="account_page.html"> Create Account Page </a> <a href="about_us.html"> About Us </a> <a href="contact_us.html"> Contact us </a> <a href="404error.html"> Error 404 </a> <a href="faq.html"> FAQ </a> </span> </div>
</li>
<li class="custom-menu"><a href="blog.html">Blog</a>
<ul class="dropdown">
<li> <a href="blog_right_sidebar.html"> Blog – Right Sidebar </a></li>
<li> <a href="blog_left_sidebar.html"> Blog – Left Sidebar </a></li>
<li><a href="blog_full_width.html"> Blog – Full-Width </a></li>
<li><a href="single_post.html"> Single post </a> </li>
</ul>
</li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
</nav>
<!-- Signup -->
<p class="top-Signup"><a href="#" class="" role="button" data-toggle="modal" data-target="#login-modal">Login/Signup</a></p>
<div class="modal fade" id="login-modal" tabindex="-1" role="dialog" aria-hidden="true" >
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header"> <img id="img_logo" src="images/logo.png" alt="logo">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span class="glyphicon glyphicon-remove" aria-hidden="true"></span> </button>
</div>
<div id="div-forms">
<form id="login-form">
<div class="modal-body">
<div id="div-login-msg"> <span id="text-login-msg">Username or email address </span> </div>
<input id="login_username" class="form-control" type="text" placeholder="Username" required>
<input id="login_password" class="form-control" type="password" placeholder="Password" required>
<div class="checkbox">
<label>
<input type="checkbox">
Remember me </label>
</div>
</div>
<div class="modal-footer">
<div>
<button type="submit" class="btn-login">Login</button>
</div>
<div>
<button onclick="location.href='account_page.html'" id="login_register_btn" type="button" class="btn btn-link">Register</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- END # MODAL LOGIN -->
</div>
</div>
</div>
</div>
</div>
<!-- End Menu Area -->
<!-- Start Mobile Menu -->
<div class="mobile-menu hidden-sm hidden-md hidden-lg">
<nav><span class="mobile-menu-title">Categories</span>
<ul>
<li class=""><a href="index-2.html">Home</a>
<ul class="sub-menu">
<li><a href="http://htmlmystore.justthemevalley.com/genius/index.html">Fruits Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version2/index.html">Shoes Store</a></li>
<li><a href="index-2.html">Fashion Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version4/index.html">Jewellery Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/Version5/index.html">Electronic Store</a></li>
<li><a href="http://htmlmystore.justthemevalley.com/genius/rtl-fruits-store/index.html">RTL Fruits Store</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Pages</a>
<ul>
<li><a href="shop_grid.html" class="">Shop Pages </a>
<ul>
<li> <a href="shop_grid.html"> Shop grid </a> </li>
<li> <a href="shop_grid_right_sidebar.html"> Shop grid right sidebar</a> </li>
<li> <a href="shop_list.html"> Shop list </a> </li>
<li> <a href="shop_list_right_sidebar.html"> Shop list right sidebar</a> </li>
<li> <a href="shop_grid_full_width.html"> Shop Full width </a> </li>
</ul>
</li>
<li><a href="shop_grid.html">Ecommerce Pages </a>
<ul>
<li> <a href="wishlist.html"> Wishlists </a> </li>
<li> <a href="checkout.html"> Checkout </a> </li>
<li> <a href="compare.html"> Compare </a> </li>
<li> <a href="shopping_cart.html"> Shopping cart </a> </li>
<li> <a href="quick_view.html"> Quick View </a> </li>
</ul>
</li>
<li> <a href="shop_grid.html">Static Pages </a>
<ul>
<li> <a href="account_page.html"> Create Account Page </a> </li>
<li> <a href="about_us.html"> About Us </a> </li>
<li> <a href="contact_us.html"> Contact us </a> </li>
<li> <a href="404error.html"> Error 404 </a> </li>
<li> <a href="faq.html"> FAQ </a> </li>
</ul>
</li>
<li> <a href="shop_grid.html">Product Categories </a>
<ul>
<li> <a href="cat-3-col.html"> 3 Column Sidebar </a> </li>
<li> <a href="cat-4-col.html"> 4 Column Sidebar</a> </li>
<li> <a href="cat-4-col-full.html"> 4 Column Full width </a> </li>
<li> <a href="col3-sidebar.html"> col3 Sidebar</a> </li>
</ul>
</li>
<li> <a href="shop_grid.html">Single Product Pages </a>
<ul>
<li><a href="single_product.html"> single product </a> </li>
<li> <a href="single_product_left_sidebar.html"> single product left sidebar</a> </li>
<li> <a href="single_product_right_sidebar.html"> single product right sidebar</a> </li>
<li> <a href="single_product_magnify_zoom.html"> single product magnify zoom</a> </li>
</ul>
</li>
<li> <a href="shop_grid.html"> Blog Pages </a>
<ul>
<li><a href="blog_right_sidebar.html">Blog – Right sidebar </a></li>
<li><a href="blog_left_sidebar.html">Blog – Left sidebar </a></li>
<li><a href="blog_full_width.html">Blog_ - Full width</a></li>
<li><a href="single_post.html">Single post </a></li>
</ul>
</li>
</ul>
</li>
<li><a href="shop_grid.html">Women</a>
<ul class="">
<li><a href="#">Clother</a>
<ul>
<li><a href="shop_grid.html">Cocktail</a></li>
<li><a href="shop_grid.html">Day</a></li>
<li><a href="shop_grid.html">Evening</a></li>
<li><a href="shop_grid.html">Sports</a></li>
<li><a href="shop_grid.html">Sexy Dress</a></li>
<li><a href="shop_grid.html">Fsshion Skirt</a></li>
<li><a href="shop_grid.html">Evening Dress</a></li>
<li><a href="shop_grid.html">Children's Clothing</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Dress and skirt</a>
<ul>
<li><a href="shop_grid.html">Sports</a></li>
<li><a href="shop_grid.html">Run</a></li>
<li><a href="shop_grid.html">Sandals</a></li>
<li><a href="shop_grid.html">Books</a></li>
<li><a href="shop_grid.html">A-line Dress</a></li>
<li><a href="shop_grid.html">Lacy Looks</a></li>
<li><a href="shop_grid.html">Shirts-T-Shirts</a></li>
</ul>
</li>
<li><a href="shop_grid.html">shoes</a>
<ul>
<li><a href="shop_grid.html">blazers</a></li>
<li><a href="shop_grid.html">table</a></li>
<li><a href="shop_grid.html">coats</a></li>
<li><a href="shop_grid.html">Sports</a></li>
<li><a href="shop_grid.html">kids</a></li>
<li><a href="shop_grid.html">Sweater</a></li>
<li><a href="shop_grid.html">Coat</a></li>
</ul>
</li>
</ul>
</li>
<li class=""><a href="shop_grid.html">Men</a>
<ul class="">
<li><a href="shop_grid.html">Bages</a>
<ul>
<li><a href="shop_grid.html">Bootes Bages</a></li>
<li><a href="shop_grid.html">Blazers</a></li>
<li><a href="shop_grid.html">Mermaid</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Clothing</a>
<ul>
<li><a href="shop_grid.html">coats</a></li>
<li><a href="shop_grid.html">T-shirt</a></li>
</ul>
</li>
<li><a href="shop_grid.html">lingerie</a>
<ul>
<li><a href="shop_grid.html">brands</a></li>
<li><a href="shop_grid.html">furniture</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="shop_grid.html">Handbags</a>
<ul class="">
<li><a href="shop_grid.html">Footwear Man</a>
<ul>
<li><a href="shop_grid.html">Gold Rigng</a></li>
<li><a href="shop_grid.html">paltinum Rings</a></li>
<li><a href="shop_grid.html">Silver Ring</a></li>
<li><a href="shop_grid.html">Tungsten Ring</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Footwear Womens</a>
<ul>
<li><a href="shop_grid.html">Brand Gold</a></li>
<li><a href="shop_grid.html">paltinum Rings</a></li>
<li><a href="shop_grid.html">Silver Ring</a></li>
<li><a href="shop_grid.html">Tungsten Ring</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Band</a>
<ul>
<li><a href="shop_grid.html">Platinum Necklaces</a></li>
<li><a href="shop_grid.html">Gold Ring</a></li>
<li><a href="shop_grid.html">silver ring</a></li>
<li><a href="shop_grid.html">Diamond Bracelets</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="shop_grid.html">Shoes</a>
<ul class="">
<li><a href="shop_grid.html">Rings</a>
<ul>
<li><a href="shop_grid.html">Coats & jackets</a></li>
<li><a href="shop_grid.html">blazers</a></li>
<li><a href="shop_grid.html">raincoats</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Dresses</a>
<ul>
<li><a href="shop_grid.html">footwear</a></li>
<li><a href="shop_grid.html">blazers</a></li>
<li><a href="shop_grid.html">clog sandals</a></li>
<li><a href="shop_grid.html">combat boots</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Accessories</a>
<ul>
<li><a href="shop_grid.html">bootees Bags</a></li>
<li><a href="shop_grid.html">blazers</a></li>
<li><a href="shop_grid.html">jackets</a></li>
<li><a href="shop_grid.html">kids</a></li>
<li><a href="shop_grid.html">shoes</a></li>
</ul>
</li>
<li><a href="shop_grid.html">Top</a>
<ul>
<li><a href="shop_grid.html">briefs</a></li>
<li><a href="shop_grid.html">camis</a></li>
<li><a href="shop_grid.html">nigthwear</a></li>
<li><a href="shop_grid.html">kids</a></li>
<li><a href="shop_grid.html">shapewer</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<!-- End Mobile Menu -->
<!-- Breadcrumbs -->
<div class="breadcrumbs">
<div class="container">
<div class="row">
<div class="col-xs-12">
<ul>
<li class="home"> <a title="Go to Home Page" href="index-2.html">Home</a><span>»</span></li>
<li class=""> <a title="Go to Home Page" href="shop_grid.html">Women </a><span>»</span></li>
<li><strong>Clothing</strong></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Breadcrumbs End -->
<!-- Main Container -->
<div class="main-container col2-right-layout">
<div class="container">
<div class="category-description"><a href="#"><img src="images/cat-img1.jpg" alt="banner"></a></div>
<div class="row">
<div class="col-main col-sm-9 col-xs-12">
<div class="shop-inner">
<div class="page-title">
<h2>Apple</h2>
</div>
<div class="toolbar">
<div class="view-mode">
<ul>
<li> <a href="shop_grid.html"> <i class="fa fa-th-large"></i> </a> </li>
<li class="active"> <a href="shop_list.html"> <i class="fa fa-th-list"></i> </a> </li>
</ul>
</div>
<div class="sorter">
<div class="short-by">
<label>Sort By:</label>
<select>
<option selected="selected">Position</option>
<option>Name</option>
<option>Price</option>
<option>Size</option>
</select>
</div>
<div class="short-by page">
<label>Show:</label>
<select>
<option selected="selected">9</option>
<option>12</option>
<option>16</option>
<option>30</option>
</select>
</div>
</div>
</div>
<div class="product-list-area">
<ul class="products-list" id="products-list">
<li class="item ">
<div class="product-img">
<div class="icon-sale-label sale-left">Sale</div>
<a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img01.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">4 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box">
<p class="special-price"> <span class="price-label"></span> <span class="price"> $222.99 </span> </p>
<p class="old-price"> <span class="price-label"></span> <span class="price"> $442.99 </span> </p>
</div>
<div class="desc std">
<p>Nunc facilisis sagittis ullamcorper. Proin lectus ipsum,
gravida et mattis vulputate, tristique ut lectus. Sed et lorem nunc.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere
cubilia Curae; Aenean eleifend laoreet congue. Vivamus adipiscing nisl
ut dolor dignissim semper. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </p>
</div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img02.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">3 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$99.99</span> </span> </div>
<div class="desc std">
<p>Aliquam et metus pharetra, bibendum massa nec, fermentum odio. Nunc id leo ultrices, mollis ligula in, finibus tortor. Mauris eu dui ut.
<p> Donec vitae hendrerit arcu, sit amet faucibus nisl. Cras pretium arcu ex. Aenean posuere libero eu augue condimentum rhoncus. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </p>
</div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img">
<div class="icon-new-label new-right">New</div>
<a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img03.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$699.99</span> </span> </div>
<div class="desc std">Donec Vitae Hendrerit Arcu, Sit Amet Faucibus Nisl. Cras Pretium Arcu Ex. Aenean Posuere Libero Eu Augue Condimentum Rhoncus. Praesent Ornare Tortor Donec Vitae Hendrerit Arcu, Sit Amet Faucibus Nisl. Praesent ornare tortor Aenean posuere libero eu augue condimentum rhoncus. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img04.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$399.99</span> </span> </div>
<div class="desc std">Aliquam quis dui at orci mattis tincidunt et vel risus. In odio quam, vestibulum non faucibus sit amet, posuere id lectus. In odio quam, vestibulum non faucibus sit amet, posuere id lectus. Nulla nunc felis, condimentum ac congue blandit, mattis a mauris. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img05.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$99.00</span> </span> </div>
<div class="desc std">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img06.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$299<span class="sub">.00</span></span> </span> </div>
<div class="desc std">
<p>Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi
accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a
ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.</p>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </p>
</div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img07.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$49.99</span> </span> </div>
<div class="desc std">
<p>Vivamus dignissim nisl eu euismod ullamcorper. Donec
pellentesque diam id est tristique vestibulum. Donec eget feugiat ante.
Integerarcu libero, dictum nec congue sed, faucibus sit amet lectus. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </p>
</div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img08.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price"> <span class="price">$299.99</span> </span> </div>
<div class="desc std">Morbi accumsan ipsum velit. Nam
nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris itae
erat conuat auctor eu in elitlass aptent taciti sociosqu ad litora. Morbi pretium sed velit in tempus. Nullam nec aliquam lorem. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
<li class="item ">
<div class="product-img"> <a href="single_product.html" title="Ipsums Dolors Untra">
<figure> <img class="small-image" src="images/products/img09.jpg" alt="Ipsums Dolors Untra"></figure>
</a> </div>
<div class="product-shop">
<h2 class="product-name"><a href="single_product.html" title="Ipsums Dolors Untra">Ipsums Dolors Untra</a></h2>
<div class="ratings">
<div class="rating"> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
<p class="rating-links"> <a href="#/">0 Review(s)</a> <span class="separator">|</span> <a href="#review-form">Add Your Review</a> </p>
</div>
<div class="price-box"> <span class="regular-price" > <span class="price">$79.00</span> </span> </div>
<div class="desc std">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ultrices sollicitudin justo, eget mollis justo semper vel. Duis tempor eget leo eget pretium. <a class="link-learn" title="Learn More" href="single_product.html">Learn More</a> </div>
<div class="actions">
<button class="button cart-button" title="Add to Cart" type="button"><i class="fa fa-shopping-cart"></i><span>Add to Cart</span></button>
<ul>
<li> <a href="wishlist.html"> <i class="fa fa-heart"></i><span> Add to Wishlist</span> </a> </li>
<li> <a href="compare.html"> <i class="fa fa-signal"></i><span> Add to Compare</span> </a> </li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<div class="pagination-area">
<ul>
<li><a class="active" href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i></a></li>
</ul>
</div>
</div>
</div>
<aside class="left sidebar col-sm-3 col-xs-12">
<div class="block category-sidebar">
<div class="sidebar-title">
<h3>Categories</h3>
</div>
<ul class="product-categories">
<li class="cat-item current-cat cat-parent"><a href= "shop_grid.html">Women</a>
<ul class="children">
<li class="cat-item cat-parent"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Accessories</a>
<ul class="children">
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Dresses</a></li>
<li class="cat-item cat-parent"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Handbags</a>
<ul class="children">
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Beaded Handbags</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Sling bag</a></li>
</ul>
</li>
</ul>
</li>
<li class="cat-item cat-parent"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Handbags</a>
<ul class="children">
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> backpack</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Beaded Handbags</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Fabric Handbags</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Sling bag</a></li>
</ul>
</li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Jewellery</a> </li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Swimwear</a> </li>
</ul>
</li>
<li class="cat-item cat-parent"><a href="shop_grid.html">Men</a>
<ul class="children">
<li class="cat-item cat-parent"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Dresses</a>
<ul class="children">
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Casual</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Designer</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Evening</a></li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Hoodies</a></li>
</ul>
</li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Jackets</a> </li>
<li class="cat-item"><a href="shop_grid.html"><i class="fa fa-angle-right"></i> Shoes</a> </li>
</ul>
</li>
<li class="cat-item"><a href="shop_grid.html">Electronics</a></li>
<li class="cat-item"><a href="shop_grid.html">Furniture</a></li>
<li class="cat-item"><a href="shop_grid.html">KItchen</a></li>
</ul>
</div>
<div class="block shop-by-side">
<div class="sidebar-bar-title">
<h3>Shop By</h3>
</div>
<div class="block-content">
<p class="block-subtitle">Shopping Options</p>
<div class="layered-Category">
<h2 class="saider-bar-title">Categories</h2>
<div class="layered-content">
<ul class="check-box-list">
<li>
<input type="checkbox" id="jtv1" name="jtvc">
<label for="jtv1"> <span class="button"></span> Camera & Photo<span class="count">(12)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv2" name="jtvc">
<label for="jtv2"> <span class="button"></span> Computers<span class="count">(18)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv3" name="jtvc">
<label for="jtv3"> <span class="button"></span> Apple Store<span class="count">(15)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv4" name="jtvc">
<label for="jtv4"> <span class="button"></span> Car Electronic<span class="count">(03)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv5" name="jtvc">
<label for="jtv5"> <span class="button"></span> Accessories<span class="count">(04)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv7" name="jtvc">
<label for="jtv7"> <span class="button"></span> Game & Video<span class="count">(07)</span> </label>
</li>
<li>
<input type="checkbox" id="jtv8" name="jtvc">
<label for="jtv8"> <span class="button"></span> Best selling<span class="count">(05)</span> </label>
</li>
</ul>
</div>
</div>
<div class="manufacturer-area">
<h2 class="saider-bar-title">Manufacturer</h2>
<div class="saide-bar-menu">
<ul>
<li><a href="#"><i class="fa fa-angle-right"></i> Aliquam</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Duis tempus id </a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Leo quis molestie. </a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Suspendisse </a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Nunc gravida </a></li>
</ul>
</div>
</div>
<div class="color-area">
<h2 class="saider-bar-title">Color</h2>
<div class="color">
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
</div>
</div>
<div class="size-area">
<h2 class="saider-bar-title">Size</h2>
<div class="size">
<ul>
<li><a href="#">S</a></li>
<li><a href="#">L</a></li>
<li><a href="#">M</a></li>
<li><a href="#">XL</a></li>
<li><a href="#">XXL</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="block product-price-range ">
<div class="sidebar-bar-title">
<h3>Price</h3>
</div>
<div class="block-content">
<div class="slider-range">
<div data-label-reasult="Range:" data-min="0" data-max="500" data-unit="$" class="slider-range-price" data-value-min="50" data-value-max="350"></div>
<div class="amount-range-price">Range: $10 - $550</div>
<ul class="check-box-list">
<li>
<input type="checkbox" id="p1" name="cc" />
<label for="p1"> <span class="button"></span> $20 - $50<span class="count">(0)</span> </label>
</li>
<li>
<input type="checkbox" id="p2" name="cc" />
<label for="p2"> <span class="button"></span> $50 - $100<span class="count">(0)</span> </label>
</li>
<li>
<input type="checkbox" id="p3" name="cc" />
<label for="p3"> <span class="button"></span> $100 - $250<span class="count">(0)</span> </label>
</li>
</ul>
</div>
</div>
</div>
<div class="block sidebar-cart">
<div class="sidebar-bar-title">
<h3>My Cart</h3>
</div>
<div class="block-content">
<p class="amount">There are <a href="shopping_cart.html">2 items</a> in your cart.</p>
<ul>
<li class="item"> <a href="shopping_cart.html" title="Sample Product" class="product-image"><img src="images/products/img07.jpg" alt="Sample Product "></a>
<div class="product-details">
<div class="access"> <a href="#" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a></div>
<p class="product-name"> <a href="shopping_cart.html">Lorem ipsum dolor sit amet Consectetur</a> </p>
<strong>1</strong> x <span class="price">$19.99</span> </div>
</li>
<li class="item last"> <a href="#" title="Sample Product" class="product-image"><img src="images/products/img08.jpg" alt="Sample Product"></a>
<div class="product-details">
<div class="access"> <a href="#" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a></div>
<p class="product-name"> <a href="shopping_cart.html">Consectetur utes anet adipisicing elit</a> </p>
<strong>1</strong> x <span class="price">$8.00</span>
<!--access clearfix-->
</div>
</li>
</ul>
<div class="summary">
<p class="subtotal"> <span class="label">Cart Subtotal:</span> <span class="price">$27.99</span> </p>
</div>
<div class="cart-checkout">
<button class="button button-checkout" title="Submit" type="submit"><i class="fa fa-check"></i> <span>Checkout</span></button>
</div>
</div>
</div>
<div class="block compare">
<div class="sidebar-bar-title">
<h3>Compare Products (2)</h3>
</div>
<div class="block-content">
<ol id="compare-items">
<li class="item"> <a href="compare.html" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a> <a href="#" class="product-name"><i class="fa fa-angle-right"></i> Vestibulum porta tristique porttitor.</a> </li>
<li class="item"> <a href="compare.html" title="Remove This Item" class="remove-cart"><i class="icon-close"></i></a> <a href="#" class="product-name"><i class="fa fa-angle-right"></i> Lorem ipsum dolor sit amet</a> </li>
</ol>
<div class="ajax-checkout">
<button type="submit" title="Submit" class="button button-compare"> <span><i class="fa fa-signal"></i> Compare</span></button>
<button type="submit" title="Submit" class="button button-clear"> <span><i class="fa fa-eraser"></i> Clear All</span></button>
</div>
</div>
</div>
<div class="single-img-add sidebar-add-slider ">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active"> <img src="images/add-slide1.jpg" alt="slide1">
<div class="carousel-caption">
<h3><a href="single_product.html" title=" Sample Product">Sale Up to 50% off</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#" class="info">shopping Now</a> </div>
</div>
<div class="item"> <img src="images/add-slide2.jpg" alt="slide2">
<div class="carousel-caption">
<h3><a href="single_product.html" title=" Sample Product">Smartwatch Collection</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<a href="#" class="info">All Collection</a> </div>
</div>
<div class="item"> <img src="images/add-slide3.jpg" alt="slide3">
<div class="carousel-caption">
<h3><a href="single_product.html" title=" Sample Product">Summer Sale</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div>
</div>
<div class="block special-product">
<div class="sidebar-bar-title">
<h3>Special Products</h3>
</div>
<div class="block-content">
<ul>
<li class="item">
<div class="products-block-left"> <a href="single_product.html" title="Sample Product" class="product-image"><img src="images/products/img01.jpg" alt="Sample Product "></a></div>
<div class="products-block-right">
<p class="product-name"> <a href="single_product.html">Lorem ipsum dolor sit amet Consectetur</a> </p>
<span class="price">$19.99</span>
<div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star-o"></i> </div>
</div>
</li>
<li class="item">
<div class="products-block-left"> <a href="single_product.html" title="Sample Product" class="product-image"><img src="images/products/img02.jpg" alt="Sample Product "></a></div>
<div class="products-block-right">
<p class="product-name"> <a href="single_product.html">Consectetur utes anet adipisicing elit</a> </p>
<span class="price">$89.99</span>
<div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star-o"></i> <i class="fa fa-star-o"></i> </div>
</div>
</li>
</ul>
<a class="link-all" href="shop_grid.html">All Products</a> </div>
</div>
<div class="block popular-tags-area ">
<div class="sidebar-bar-title">
<h3>Popular Tags</h3>
</div>
<div class="tag">
<ul>
<li><a href="#">Boys</a></li>