generated from TanMink/eCommerce_tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1814 lines (1782 loc) · 71.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--* favicon -->
<link
rel="shortcut icon"
href="./assets/images/logo/favicon.ico"
type="image/x-icon"
/>
<!--! css link -->
<link rel="stylesheet" href="./assets/style.css" />
<!--? swiperjs cdn link -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!--todo tailwind cdn link -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: "#da373d",
},
},
},
};
</script>
<title>eCommerece</title>
</head>
<body>
<!--! newspaper popup -->
<div
id="newspaper"
class="z-20 fixed w-screen h-screen hidden items-center justify-center"
>
<div
id="newspaperOverlay"
class="z-10 fixed top-0 w-screen h-screen bg-[#00000066]"
></div>
<div
id="newspaperBox"
class="z-20 w-4/5 lg:w-3/6 h-2/5 lg:h-3/5 bg-white flex items-center rounded-md overflow-hidden border shadow-md"
>
<div class="hidden md:flex md:w-1/2 h-full">
<img
class="w-full h-full"
src="./assets/images/newsletter.png"
alt="newsletter"
/>
</div>
<div
class="w-full md:w-1/2 h-full flex flex-col justify-center p-12 px-8 gap-4 relative"
>
<button
class="closeButton absolute top-4 right-4 text-2xl hover:text-red-500"
>
<ion-icon name="close-circle-outline"></ion-icon>
</button>
<h3 class="text-xl font-bold text-gray-800">Subscribe Newsletter.</h3>
<p class="text-md text-gray-600 font-semibold">
Subscribe the <span class="text-lg font-semibold">Anon</span> to get
latest products and discount update.
</p>
<input class="border p-2" type="email" placeholder="Email Address" />
<button
class="rounded-md self-center py-2 px-3 bg-gray-900 text-white hover:bg-red-500"
>
SUBSCRIBE
</button>
</div>
</div>
</div>
<header class="header w-full">
<!--! topHeader -->
<div
class="top-header w-screen flex flex-col items-center justify-between border-b"
>
<div class="flex w-full items-center justify-between p-4 md:px-20 border-b">
<div class="icons hidden lg:flex items-center gap-2">
<a
class="text-gray-700 bg-gray-300/50 p-1 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center transition-all"
href="#"
>
<ion-icon name="logo-instagram"></ion-icon>
</a>
<a
class="text-gray-700 bg-gray-300/50 p-1 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center transition-all"
href="#"
>
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a
class="text-gray-700 bg-gray-300/50 p-1 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center transition-all"
href="#"
>
<ion-icon name="logo-github"></ion-icon>
</a>
</div>
<h3 class="text-gray-400 font-semibold text-xs">
FREE SHIPPING THIS WEEK ORDER OVER - $55
</h3>
<div class="select hidden md:flex">
<select class="mr-2 p-1 px-2 text-sm font-semibold" id="currency">
<option value="USD">USD $</option>
<option value="EUR">EUR €</option>
</select>
<select class="mr-2 p-1 px-2 text-sm font-semibold" id="language">
<option value="Persian">English</option>
<option value="English">Persian</option>
</select>
</div>
</div>
<div
class="gap-4 flex flex-col sm:flex-row w-full items-center justify-between p-6 md:px-24"
>
<h1 class="font-semibold text-4xl text-gray-600">Anon</h1>
<form class="relative w-full sm:w-3/5">
<input
class="w-full h-full p-2 border rounded-xl"
placeholder="Enter Your Product Name..."
id="search"
type="text"
/>
<label class="absolute right-2 top-2" for="search">
<i class="fa-solid fa-magnifying-glass cursor-pointer"></i>
</label>
</form>
<div class="icons hidden mr-2 text-3xl md:flex gap-8 text-gray-600">
<div class="relative">
<ion-icon name="person-outline"></ion-icon>
</div>
<div class="relative">
<span
class="text-xs text-center font-semibold text-white absolute -top-2 -right-2 w-4 h-4 bg-red-400 rounded-full"
>0</span
>
<ion-icon name="heart-outline"></ion-icon>
</div>
<div class="relative">
<span
class="text-xs text-center font-semibold text-white absolute -top-2 -right-2 w-4 h-4 bg-red-400 rounded-full"
>0</span
>
<ion-icon name="bag-handle-outline"></ion-icon>
</div>
</div>
</div>
</div>
<!--! topHeader -->
<!--? navbar -->
<!--todo desktop Navbar -->
<div class="desktopNavbar">
<nav class="my-4 hidden lg:flex justify-center">
<ul
class="desktopNavbarUl flex justify-center items-center gap-12 font-sm font-bold text-gray-600"
>
<li class="nav_items relative">
<a href="#Home">HOME</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
</li>
<li class="nav_items relative category_nav_item">
<a href="#Categories">CATEGORIES</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
<!--? hoverItems -->
<ul
class="categoriesItem absolute top-10 shadow-lg rounded-xl hidden grid-cols-4 p-4 gap-4 border text-gray-400 font-normal bg-white z-10"
>
<li>
<h3 class="border-b py-2 mb-4 text-gray-900 font-semibold">
Electronics
</h3>
<ul class="flex flex-col items-start justify-start gap-2">
<li>
<a href="#"> Desktop </a>
</li>
<li>
<a href="#"> Laptop </a>
</li>
<li>
<a href="#"> Camera </a>
</li>
<li>
<a href="#"> Tablet </a>
</li>
<li>
<a href="#"> Headphone </a>
</li>
<li>
<img
src="./assets/images/electronics-banner-1.jpg"
alt="pic"
/>
</li>
</ul>
</li>
<li>
<h3 class="border-b py-2 mb-4 text-gray-900 font-semibold">
Men's
</h3>
<ul class="flex flex-col items-start justify-start gap-2">
<li>
<a href="#"> Formal </a>
</li>
<li>
<a href="#"> Casual </a>
</li>
<li>
<a href="#"> Sports </a>
</li>
<li>
<a href="#"> Jacket </a>
</li>
<li>
<a href="#"> Sunglasses </a>
</li>
<li>
<img
src="./assets/images/electronics-banner-2.jpg"
alt="pic"
/>
</li>
</ul>
</li>
<li>
<h3 class="border-b py-2 mb-4 text-gray-900 font-semibold">
Women's
</h3>
<ul class="flex flex-col items-start justify-start gap-2">
<li>
<a href="#"> Formal </a>
</li>
<li>
<a href="#"> Casual </a>
</li>
<li>
<a href="#"> Perfume </a>
</li>
<li>
<a href="#"> Cosmetics </a>
</li>
<li>
<a href="#"> Bags </a>
</li>
<li><img src="./assets/images/mens-banner.jpg" alt="pic" /></li>
</ul>
</li>
<li>
<h3 class="border-b py-2 mb-4 text-gray-900 font-semibold">
Electronics
</h3>
<ul class="flex flex-col items-start justify-start gap-2">
<li>
<a href="#"> Smart </a>
Watch
</li>
<li>
<a href="#"> Smart </a>
TV
</li>
<li>
<a href="#"> Keyboard </a>
</li>
<li>
<a href="#"> Mouse </a>
</li>
<li>
<a href="#"> Microphone </a>
</li>
<li>
<img src="./assets/images/womens-banner.jpg" alt="pic" />
</li>
</ul>
</li>
</ul>
<!--? hoverItems -->
</li>
<li class="nav_items relative men_nav_item">
<a href="#Men">MEN'S</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
<!--? hoverItems -->
<ul
class="hoveredItems w-52 absolute top-10 hidden flex-col items-start justify-start gap-2 p-4 rounded-xl shadow-lg border font-normal bg-white"
>
<li>
<a href="#">Shirt</a>
</li>
<li>
<a href="#">Shorts & Jeans</a>
</li>
<li>
<a href="#">Safety</a>
</li>
<li>
<a href="#">Wallet</a>
</li>
</ul>
<!--? hoverItems -->
</li>
<li class="nav_items relative women_nav_item">
<a href="#Women">WOMEN'S</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
<!--? hoverItems -->
<ul
class="hoveredItems w-52 absolute top-10 hidden flex-col items-start justify-start gap-2 p-4 rounded-xl shadow-lg border font-normal bg-white"
>
<li>
<a href="#">Dress & Frock</a>
</li>
<li>
<a href="#">Earrings</a>
</li>
<li>
<a href="#">Necklace</a>
</li>
<li>
<a href="#">Makeup Kit</a>
</li>
</ul>
<!--? hoverItems -->
</li>
<li class="nav_items relative jewelry_nav_item">
<a href="#Jewelry">JEWELRY</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
<!--? hoverItems -->
<ul
class="hoveredItems w-52 absolute top-10 hidden flex-col items-start justify-start gap-2 p-4 rounded-xl shadow-lg border font-normal bg-white"
>
<li>
<a href="#">Earrings</a>
</li>
<li>
<a href="#">Couple Rings</a>
</li>
<li>
<a href="#">Necklace</a>
</li>
<li>
<a href="#">Bracelets</a>
</li>
</ul>
<!--? hoverItems -->
</li>
<li class="nav_items relative perfume_nav_item">
<a href="#Perfume">PERFUME</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
<!--? hoverItems -->
<ul
class="hoveredItems w-52 absolute top-10 hidden flex-col items-start justify-start gap-2 p-4 rounded-xl shadow-lg border font-normal bg-white"
>
<li>
<a href="#">Clothes Perfume</a>
</li>
<li>
<a href="#">Flower Fragrance</a>
</li>
<li>
<a href="#">Safety</a>
</li>
<li>
<a href="#">Air Freshener</a>
</li>
</ul>
<!--? hoverItems -->
</li>
<li class="nav_items relative">
<a href="#Blog">BLOG</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
</li>
<li class="nav_items relative">
<a href="#HotOffers">HOT OFFERS</a>
<span
class="absolute bottom-0 left-0 w-0 h-0.5 bg-red-400 transition-all ease-in-out"
></span>
</li>
</ul>
</nav>
</div>
<!--? mobile Navbar -->
<div class="mobileNavbar">
<!--? navbar button -->
<div
style="box-shadow: 0 0 0.3rem lightgray"
class="z-10 bg-white w-96 lg:hidden flex justify-around items-center p-4 border rounded-t-xl fixed bottom-0 left-1/2 -translate-x-1/2 text-lg"
>
<button id="openNavbarButton" type="button">
<ion-icon name="menu-outline"></ion-icon>
</button>
<button class="relative" type="button">
<span
class="text-xs text-center font-semibold text-white absolute -top-2 -right-2 w-4 h-4 bg-red-400 rounded-full"
>
0
</span>
<ion-icon name="bag-handle-outline"></ion-icon>
</button>
<button type="button">
<ion-icon name="home-outline"></ion-icon>
</button>
<button class="relative" type="button">
<span
class="text-xs text-center font-semibold text-white absolute -top-2 -right-2 w-4 h-4 bg-red-400 rounded-full"
>
0
</span>
<ion-icon name="heart-outline"></ion-icon>
</button>
<button id="categoriesBtn" type="button">
<ion-icon name="grid-outline"></ion-icon>
</button>
</div>
<!--* overlay -->
<div
id="overlayNavbar"
class="hidden fixed top-0 left-0 w-screen h-screen bg-gray-500/30 z-10"
></div>
<!--! sidebarNavbar -->
<div
class="fixed top-0 w-72 h-screen bg-white p-4 shadow-lg hidden flex-col justify-start gap-4 text-lg font-semibold overflow-auto z-20"
id="sidebarNavbar"
>
<div class="flex justify-between border-b-2 py-4">
<h3 class="text-red-400">Menu</h3>
<button class="closeButton hover:text-red-500">
<ion-icon name="close-circle-outline"></ion-icon>
</button>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">Home</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<a href="#">Shirt</a>
<a href="#">Shorts & Jeans</a>
<a href="#">Safety Shoes</a>
<a href="#">Wallet</a>
<summary>Men's</summary>
</details>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<a href="#">Dress & Frock</a>
<a href="#">Earrings</a>
<a href="#">Necklace</a>
<a href="#">Makeup Kit</a>
<summary>Women's</summary>
</details>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<a href="#">Earrings</a>
<a href="#">Couple Rings</a>
<a href="#">Necklace</a>
<a href="#">Bracelets</a>
<summary>Jewelry</summary>
</details>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<a href="#">Clothes Perfume</a>
<a href="#">Deodorant</a>
<a href="#">Flower Fragrance</a>
<a href="#">Air Freshener</a>
<summary>Perfume</summary>
</details>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<a href="#">Blog</a>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<a href="#">Hot Offers</a>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<div class="border rounded-xl shadow-xl flex flex-col items-start">
<a class="border-b w-full pb-2" href="#">English</a>
<a class="border-b w-full pb-2" href="#">Persian</a>
</div>
<summary>Language</summary>
</details>
</div>
<div class="mobile_navbar_item border-b pb-3 text-gray-600">
<details>
<div class="border rounded-xl shadow-xl flex flex-col items-start">
<a class="border-b w-full pb-2" href="#">USD $</a>
<a class="border-b w-full pb-2" href="#">EUR €</a>
</div>
<summary>Currency</summary>
</details>
</div>
<div class="icons flex items-center justify-center gap-4">
<a
class="text-gray-900 bg-gray-300/50 p-2 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center"
href="#"
>
<ion-icon name="logo-instagram"></ion-icon>
</a>
<a
class="text-gray-900 bg-gray-300/50 p-2 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center"
href="#"
>
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a
class="text-gray-900 bg-gray-300/50 p-2 rounded-md hover:scale-110 hover:text-white hover:bg-red-400 flex items-center justify-center"
href="#"
>
<ion-icon name="logo-github"></ion-icon>
</a>
</div>
</div>
<!--todo sidebarCategories -->
<div
id="sidebarCategories"
class="fixed top-0 w-80 h-screen bg-white p-6 shadow-lg hidden flex-col justify-start gap-4 font-semibold overflow-auto z-20"
>
<div class="categories w-full h-auto">
<div class="w-full flex items-center justify-between">
<h1 class="text-lg font-semibold mb-4">CATEGORY</h1>
<button class="closeButton text-xl hover:text-red-500">
<ion-icon name="close-circle-outline"></ion-icon>
</button>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shirt</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shorts & Jeans</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Jacket</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Dress & Frock</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Clothes
<img
class="w-4 h-4"
src="./assets/images/icons/dress.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Sports</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Formal</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Casual</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Safety Shoes</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Footwear
<img
class="w-4 h-4"
src="./assets/images/icons/shoes.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Earrings</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Couple Rings</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Necklace</a>
<span>50</span>
</div>
<summary>
<div class="flex items-center gap-2">
Jewelry
<img
class="w-4 h-4"
src="./assets/images/icons/jewelry.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Clothes Perfume</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Deodorant</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Jacket</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Dress & Frock</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Perfume
<img
class="w-4 h-4"
src="./assets/images/icons/perfume.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shampoo</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Sunscreen</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Body Wash</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Makeup Kit</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Cosmetics
<img
class="w-4 h-4"
src="./assets/images/icons/cosmetics.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Sunglasses</a>
<span>23</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Lenses</a>
<span>53</span>
</div>
<summary>
<div class="flex items-center gap-2">
Glasses
<img
class="w-4 h-4"
src="./assets/images/icons/glasses.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Wallet</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Purse</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Gym Backpack</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shopping Bag</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Bags
<img
class="w-4 h-4"
src="./assets/images/icons/bag.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
</div>
<div
class="bestsellers w-full h-auto mt-2 flex flex-col items-start justify-start gap-4"
>
<h2 class="text-lg font-semibold">BEST SELLERS</h2>
<div class="flex items-center justify-start gap-2">
<div class="w-20 h-20 p-2 border shadow-lg bg-gray-300/20 rounded-md">
<img
class="w-full h-full"
src="./assets/images/products/1.jpg"
alt=""
/>
</div>
<div class="text-gray-700">
<h4 class="text-gray-900">Baby Fabric Shoes</h4>
<div class="stars text-yellow-500">
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star-half-outline"></ion-icon>
</div>
<div class="flex items-center justify-start gap-4">
<s class="text-gray-500">$14.00</s> <strong>$7.00</strong>
</div>
</div>
</div>
<div class="flex items-center justify-start gap-2">
<div class="w-20 h-20 p-2 border shadow-lg bg-gray-300/20 rounded-md">
<img
class="w-full h-full"
src="./assets/images/products/2.jpg"
alt=""
/>
</div>
<div class="text-gray-700">
<h4 class="text-gray-900">Men's Hoodies T-Shirt</h4>
<div class="stars text-yellow-500">
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star-half-outline"></ion-icon>
<ion-icon name="star-outline"></ion-icon>
</div>
<div class="flex items-center justify-start gap-4">
<s class="text-gray-500">$5.00</s> <strong>$2.00</strong>
</div>
</div>
</div>
<div class="flex items-center justify-start gap-2">
<div class="w-20 h-20 p-2 border shadow-lg bg-gray-300/20 rounded-md">
<img
class="w-full h-full"
src="./assets/images/products/3.jpg"
alt=""
/>
</div>
<div class="text-gray-700">
<h4 class="text-gray-900">Girls T-Shirt</h4>
<div class="stars text-yellow-500">
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star-half-outline"></ion-icon>
<ion-icon name="star-outline"></ion-icon>
<ion-icon name="star-outline"></ion-icon>
</div>
<div class="flex items-center justify-start gap-4">
<s class="text-gray-500">$10.00</s> <strong>$5.00</strong>
</div>
</div>
</div>
<div class="flex items-center justify-start gap-2">
<div class="w-20 h-20 p-2 border shadow-lg bg-gray-300/20 rounded-md">
<img
class="w-full h-full"
src="./assets/images/products/4.jpg"
alt=""
/>
</div>
<div class="text-gray-700">
<h4 class="text-gray-900">Woolen Hat For Men</h4>
<div class="stars text-yellow-500">
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star"></ion-icon>
<ion-icon name="star-half-outline"></ion-icon>
</div>
<div class="flex items-center justify-start gap-4">
<s class="text-gray-500">$24.00</s> <strong>$17.00</strong>
</div>
</div>
</div>
</div>
</div>
</div>
<!--? Navbar -->
</header>
<main>
<!-- !banner -->
<div class="banner mt-10 lg:-mt-4 flex items-center justify-center">
<div class="swiper swiper-js">
<div
class="swiper-wrapper h-64 lg:h-96 w-full lg:w-5/6 relative"
id="swiperSlide"
></div>
<div class="swiper-scrollbar"></div>
</div>
</div>
<!--todo Title Categories -->
<div class="flex items-center justify-center mt-10">
<div class="swiper categories_swiper">
<div class="swiper-wrapper relative gap-4" id="titlecategories"></div>
<div class="swiper-scrollbar"></div>
</div>
</div>
<!--? Products and categories -->
<section
class="w-full min-h-auto px-8 lg:px-0 lg:w-5/6 mx-auto mt-16 flex gap-8"
>
<aside class="sticky top-0 hidden lg:flex flex-col lg:w-1/4 max-h-screen">
<div class="aside_section overflow-y-auto">
<div class="categories w-full rounded-xl p-4 bg-white border shadow-lg">
<h1 class="text-xl font-semibold mb-4">CATEGORY</h1>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shirt</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shorts & Jeans</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Jacket</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Dress & Frock</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Clothes
<img
class="w-4 h-4"
src="./assets/images/icons/dress.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Sports</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Formal</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Casual</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Safety Shoes</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Footwear
<img
class="w-4 h-4"
src="./assets/images/icons/shoes.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Earrings</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Couple Rings</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Necklace</a>
<span>50</span>
</div>
<summary>
<div class="flex items-center gap-2">
Jewelry
<img
class="w-4 h-4"
src="./assets/images/icons/jewelry.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Clothes Perfume</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Deodorant</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Jacket</a>
<span>50</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Dress & Frock</a>
<span>120</span>
</div>
<summary>
<div class="flex items-center gap-2">
Perfume
<img
class="w-4 h-4"
src="./assets/images/icons/perfume.svg"
alt="productPicture"
/>
</div>
</summary>
</details>
</div>
<div class="border-b pb-3 text-lg text-gray-600">
<details>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Shampoo</a>
<span>300</span>
</div>
<div class="flex justify-between items-baseline text-sm">
<a href="#">Sunscreen</a>
<span>30</span>
</div>
<div class="flex justify-between items-baseline text-sm">