-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsingle-product-page.html
781 lines (754 loc) · 50.1 KB
/
single-product-page.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" type="icon" href="assets/images/favicon.png" />
<title>Single product page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="node_modules/swiper/swiper-bundle.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<!-- Header -->
<header class="bg-gray-dark sticky top-0 z-50">
<div class="container mx-auto flex justify-between items-center py-4">
<!-- Left section: Logo -->
<a href="index.html" class="flex items-center">
<div>
<img src="assets/images/template-white-logo.png" alt="Logo" class="h-14 w-auto mr-4">
</div>
</a>
<!-- Hamburger menu (for mobile) -->
<div class="flex lg:hidden">
<button id="hamburger" class="text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
<!-- Center section: Menu -->
<nav class="hidden lg:flex md:flex-grow justify-center">
<ul class="flex justify-center space-x-4 text-white">
<li><a href="index.html" class="hover:text-secondary font-semibold">Home</a></li>
<!-- Men Dropdown -->
<li class="relative group" x-data="{ open: false }">
<a href="shop.html" @mouseover="open = true" @mouseleave="open = false" href="#" class="hover:text-secondary font-semibold flex items-center">
Men
<i :class="open ? 'fas fa-chevron-up ml-1 text-xs' : 'fas fa-chevron-down ml-1 text-xs'"></i>
</a>
<ul
x-show="open"
@mouseover="open = true"
@mouseleave="open = false"
class="absolute left-0 bg-white text-black space-y-2 mt-1 p-2 rounded shadow-lg"
x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="opacity-0 scale-90"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transition ease-in duration-100"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Men Item 1</a></li>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Men Item 2</a></li>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Men Item 3</a></li>
</ul>
</li>
<!-- Women Dropdown -->
<li class="relative group" x-data="{ open: false }">
<a href="shop.html" @mouseover="open = true" @mouseleave="open = false" href="#" class="hover:text-secondary font-semibold flex items-center">
Women
<i :class="open ? 'fas fa-chevron-up ml-1 text-xs' : 'fas fa-chevron-down ml-1 text-xs'"></i>
</a>
<ul
x-show="open"
@mouseover="open = true"
@mouseleave="open = false"
class="absolute left-0 bg-white text-black space-y-2 mt-1 p-2 rounded shadow-lg"
x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="opacity-0 scale-90"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transition ease-in duration-100"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Women Item 1</a></li>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Women Item 2</a></li>
<li><a href="shop.html" class="min-w-40 block px-4 py-2 hover:bg-primary hover:text-white rounded">Women Item 3</a></li>
</ul>
</li>
<li><a href="shop.html" class="hover:text-secondary font-semibold">Shop</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-semibold">Product</a></li>
<li><a href="404.html" class="hover:text-secondary font-semibold">404 page</a></li>
<li><a href="checkout.html" class="hover:text-secondary font-semibold">Checkout</a></li>
</ul>
</nav>
<!-- Right section: Buttons (for desktop) -->
<div class="hidden lg:flex items-center space-x-4 relative">
<a href="register.html"
class="bg-primary border border-primary hover:bg-transparent text-white hover:text-primary font-semibold px-4 py-2 rounded-full inline-block">Register</a>
<a href="register.html"
class="bg-primary border border-primary hover:bg-transparent text-white hover:text-primary font-semibold px-4 py-2 rounded-full inline-block">Login</a>
<div class="relative group cart-wrapper">
<a href="/cart.html" >
<img src="assets/images/cart-shopping.svg" alt="Cart" class="h-6 w-6 group-hover:scale-120">
</a>
<!-- Cart dropdown -->
<div class="absolute right-0 mt-1 w-80 bg-white shadow-lg p-4 rounded hidden group-hover:block">
<div class="space-y-4">
<!-- product item -->
<div class="flex items-center justify-between pb-4 border-b border-gray-line">
<div class="flex items-center">
<img src="/assets/images/single-product/1.jpg" alt="Product" class="h-12 w-12 object-cover rounded mr-2">
<div>
<p class="font-semibold">Summer black dress</p>
<p class="text-sm">Quantity: 1</p>
</div>
</div>
<p class="font-semibold">$25.00</p>
</div>
<!-- product item -->
<div class="flex items-center justify-between">
<div class="flex items-center">
<img src="/assets/images/single-product/2.jpg" alt="Product" class="h-12 w-12 object-cover rounded mr-2">
<div>
<p class="font-semibold">Black suit</p>
<p class="text-sm">Quantity: 1</p>
</div>
</div>
<p class="font-semibold">$125.00</p>
</div>
</div>
<a href="/cart.html" class="block text-center mt-4 border border-primary bg-primary hover:bg-transparent text-white hover:text-primary py-2 rounded-full font-semibold">Go to Cart</a>
</div>
</div>
<a id="search-icon" href="javascript:void(0);" class="text-white hover:text-secondary group">
<img src="assets/images/search-icon.svg" alt="Search"
class="h-6 w-6 transition-transform transform group-hover:scale-120">
</a>
<!-- Search field -->
<div id="search-field"
class="hidden absolute top-full right-0 mt-2 w-full bg-white shadow-lg p-2 rounded">
<input type="text" class="w-full p-2 border border-gray-300 rounded"
placeholder="Search for products...">
</div>
</div>
</div>
</header>
<!-- Mobile menu -->
<nav id="mobile-menu-placeholder" class="mobile-menu hidden flex flex-col items-center space-y-8 lg:hidden">
<ul class="w-full">
<li><a href="index.html" class="hover:text-secondary font-bold block py-2">Home</a></li>
<!-- Men Dropdown -->
<li class="relative group" x-data="{ open: false }">
<a @click="open = !open; $event.preventDefault()" class="hover:text-secondary font-bold block py-2 flex justify-center items-center cursor-pointer">
<span>Men</span>
<span @click.stop="open = !open">
<i :class="open ? 'fas fa-chevron-up text-xs ml-2' : 'fas fa-chevron-down text-xs ml-2'"></i>
</span>
</a>
<ul class="mobile-dropdown-menu" x-show="open" x-transition class="space-y-2">
<li><a href="shop.html" class="hover:text-secondary font-bold block pt-2 pb-3">Shop Men</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Men item 1</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Men item 2</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Men item 3</a></li>
</ul>
</li>
<!-- Women Dropdown -->
<li class="relative group" x-data="{ open: false }">
<a @click="open = !open; $event.preventDefault()" class="hover:text-secondary font-bold block py-2 flex justify-center items-center cursor-pointer">
<span>Women</span>
<span @click.stop="open = !open">
<i :class="open ? 'fas fa-chevron-up text-xs ml-2' : 'fas fa-chevron-down text-xs ml-2'"></i>
</span>
</a>
<ul class="mobile-dropdown-menu" x-show="open" x-transition class="pl-4 space-y-2">
<li><a href="shop.html" class="hover:text-secondary font-bold block py-2">Shop Women</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Women item 1</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Women item 2</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Women item 3</a></li>
</ul>
</li>
<li><a href="shop.html" class="hover:text-secondary font-bold block py-2">Shop</a></li>
<li><a href="single-product-page.html" class="hover:text-secondary font-bold block py-2">Product</a></li>
<li><a href="404.html" class="hover:text-secondary font-bold block py-2">404 page</a></li>
<li><a href="checkout.html" class="hover:text-secondary font-bold block py-2">Checkout</a></li>
</ul>
<div class="flex flex-col mt-6 space-y-2 items-center">
<a href="register.html"
class="bg-primary hover:bg-transparent text-white hover:text-primary border border-primary font-semibold px-4 py-2 rounded-full inline-block flex items-center justify-center min-w-[110px]">Register</a>
<a href="register.html"
class="bg-primary hover:bg-transparent text-white hover:text-primary border border-primary font-semibold px-4 py-2 rounded-full inline-block flex items-center justify-center min-w-[110px]">Login</a>
<a href="register.html"
class="bg-primary hover:bg-transparent text-white hover:text-primary border border-primary font-semibold px-4 py-2 rounded-full inline-block flex items-center justify-center min-w-[110px]">Cart - <span>5</span> items</a>
</div>
<!-- Search field -->
<div
class=" top-full right-0 mt-2 w-full bg-white shadow-lg p-2 rounded">
<input type="text" class="w-full p-2 border border-gray-300 rounded"
placeholder="Search for products...">
</div>
</nav>
<!-- Breadcrumbs -->
<section id="breadcrumbs" class="pt-6 bg-gray-50">
<div class="container mx-auto px-4">
<ol class="list-reset flex">
<li><a href="index.html" class="font-semibold hover:text-primary">Home</a></li>
<li><span class="mx-2">></span></li>
<li><a href="shop.html" class="font-semibold hover:text-primary">Shop</a></li>
<li><span class="mx-2">></span></li>
<li><a href="category.html" class="font-semibold hover:text-primary">T-shirts</a></li>
<li><span class="mx-2">></span></li>
<li>Preppy T-shirt</li>
</ol>
</div>
</section>
<!-- Product info -->
<section id="product-info">
<div class="container mx-auto">
<div class="py-6">
<div class="flex flex-col lg:flex-row gap-6">
<!-- Image Section -->
<div class="w-full lg:w-1/2">
<div class="grid gap-4">
<!-- Big Image -->
<div id="main-image-container">
<img id="main-image"
class="h-auto w-full max-w-full rounded-lg object-cover object-center md:h-[480px]"
src="/assets/images/products/1.jpg"
alt="Main Product Image" />
</div>
<!-- Small Images -->
<div class="grid grid-cols-5 gap-4">
<div>
<img onclick="changeImage(this)"
data-full="/assets/images/single-product/1.jpg"
src="/assets/images/single-product/1.jpg"
class="object-cover object-center max-h-30 max-w-full rounded-lg cursor-pointer"
alt="Gallery Image 1" />
</div>
<div>
<img onclick="changeImage(this)"
data-full="/assets/images/single-product/2.jpg"
src="/assets/images/single-product/2.jpg"
class="object-cover object-center max-h-30 max-w-full rounded-lg cursor-pointer"
alt="Gallery Image 2" />
</div>
<div>
<img onclick="changeImage(this)"
data-full="/assets/images/single-product/3.jpg"
src="/assets/images/single-product/3.jpg"
class="object-cover object-center max-h-30 max-w-full rounded-lg cursor-pointer"
alt="Gallery Image 3" />
</div>
<div>
<img onclick="changeImage(this)"
data-full="/assets/images/single-product/4.jpg"
src="/assets/images/single-product/4.jpg"
class="object-cover object-center max-h-30 max-w-full rounded-lg cursor-pointer"
alt="Gallery Image 4" />
</div>
<div>
<img onclick="changeImage(this)"
data-full="/assets/images/single-product/5.jpg"
src="/assets/images/single-product/5.jpg"
class="object-cover object-center max-h-30 max-w-full rounded-lg cursor-pointer"
alt="Gallery Image 5" />
</div>
</div>
</div>
</div>
<!-- Product Details Section -->
<div class="w-full lg:w-1/2 flex flex-col justify-between">
<div class="pb-8 border-b border-gray-line">
<h1 class="text-3xl font-bold mb-4">Preppy T-shirt</h1>
<div class="flex items-center mb-8">
<span>★★★★★</span>
<span class="ml-2">(0 Reviews)</span>
<a href="#" class="ml-4 text-primary font-semibold">Write a review</a>
</div>
<div class="mb-4 pb-4 border-b border-gray-line">
<p class="mb-2">Brand:<strong><a href="#" class="hover:text-primary"> Nike</a></strong>
</p>
<p class="mb-2">Product code:<strong> 00123</strong></p>
<p class="mb-2">Availability:<strong> In Stock</strong></p>
</div>
<div class="text-2xl font-semibold mb-8">$40.00</div>
<div class="flex items-center mb-8">
<button id="decrease"
class="bg-primary hover:bg-transparent border border-transparent hover:border-primary text-white hover:text-primary font-semibold w-10 h-10 rounded-full flex items-center justify-center focus:outline-none"
disabled>-</button>
<input id="quantity" type="number" value="1"
class="w-16 py-2 text-center focus:outline-none" readonly>
<button id="increase"
class="bg-primary hover:bg-transparent border border-transparent hover:border-primary text-white hover:text-primary font-semibold w-10 h-10 rounded-full focus:outline-none">+</button>
</div>
<button
class="bg-primary border border-transparent hover:bg-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full">Add
to Cart</button>
</div>
<!-- Social sharing -->
<div class="flex space-x-4 my-6">
<a href="#" class="w-4 h-4 flex items-center justify-center">
<img src="assets/images/social_icons/facebook.svg" alt="Facebook"
class="w-4 h-4 transition-transform transform hover:scale-110">
</a>
<a href="#" class="w-4 h-4 flex items-center justify-center">
<img src="assets/images/social_icons/instagram.svg" alt="Instagram"
class="w-4 h-4 transition-transform transform hover:scale-110">
</a>
<a href="#" class="w-4 h-4 flex items-center justify-center">
<img src="assets/images/social_icons/pinterest.svg" alt="Pinterest"
class="w-4 h-4 transition-transform transform hover:scale-110">
</a>
<a href="#" class="w-4 h-4 flex items-center justify-center">
<img src="assets/images/social_icons/twitter.svg" alt="Twitter"
class="w-4 h-4 transition-transform transform hover:scale-110">
</a>
<a href="#" class="w-4 h-4 flex items-center justify-center">
<img src="assets/images/social_icons/viber.svg" alt="Viber"
class="w-4 h-4 transition-transform transform hover:scale-110">
</a>
</div>
<!-- Additional Information -->
<div>
<h3 class="text-lg font-semibold mb-2">Product Description</h3>
<p>This is a premium quality t-shirt perfect for casual wear. Made with high-quality fabric
to ensure comfort and durability.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Product tabs description -->
<section>
<div class="container mx-auto">
<div class="py-12">
<div class="mt-10">
<div class="flex space-x-4" role="tablist">
<button id="description-tab" role="tab" aria-controls="description-content" aria-selected="true"
class="tab active">Description</button>
<button id="additional-info-tab" role="tab" aria-controls="additional-info-content"
aria-selected="false" class="tab">Additional information</button>
<button id="size-shape-tab" role="tab" aria-controls="size-shape-content" aria-selected="false"
class="tab">Size & Shape</button>
<button id="reviews-tab" role="tab" aria-controls="reviews-content" aria-selected="false"
class="tab">Reviews (3)</button>
</div>
<div class="mt-8">
<div id="description-content" role="tabpanel" aria-labelledby="description-tab"
class="tab-content">
<div class="flex flex-col lg:flex-row lg:space-x-8">
<div class="w-full lg:w-1/2">
<h3 class="text-xl font-semibold mb-2">With the new fashion trends and all the
available shopping options, you can order your clothes online and make money
without even leaving your house.</h3>
<p class="mb-4">These days, you can take your own inspiration and create something
new for yourself. All you need to do is read books and magazines about fashion,
watch videos on YouTube, keep yourself updated on social media, and, of course,
shop online!</p>
</div>
<div class="w-full lg:w-1/4">
<h3 class="text-xl font-semibold mb-5">Material & Washing</h3>
<p class="mb-2 pb-2 border-b border-gray-line">Material: <span
class="font-semibold">100% cotton</span></p>
<p class="mb-2 pb-2 border-b border-gray-line">Fabric: <span
class="font-semibold">Soft jersey</span></p>
<p class="mb-2">Care instructions: <span class="font-semibold">Machine wash at 30°C,
do not tumble dry, iron on low heat, do not bleach</span></p>
</div>
<div class="w-full lg:w-1/4">
<h3 class="text-xl font-semibold mb-5">Size & Shape</h3>
<p class="mb-2 pb-2 border-b border-gray-line">Model height: <span
class="font-semibold">Our model is 180 cm tall and is wearing size M</span>
</p>
<p class="mb-2 pb-2 border-b border-gray-line">Fit: <span
class="font-semibold">Regular</span></p>
<p class="mb-2 pb-2 border-b border-gray-line">Length: <span
class="font-semibold">Standard</span></p>
<p class="mb-2">Sleeve length: <span class="font-semibold">Short sleeves</span></p>
</div>
</div>
</div>
<div id="additional-info-content" role="tabpanel" aria-labelledby="additional-info-tab"
class="tab-content hidden">
<p>Additional information about the product.</p>
<div class="flex flex-col space-y-8">
<div>
<h3 class="text-lg font-semibold mb-2">Colors</h3>
<p class="text-base text-gray-700">
Available colors:
<a href="#" class="text-primary hover:underline">Red</a>,
<a href="#" class="text-primary hover:underline">Blue</a>,
<a href="#" class="text-primary hover:underline">Green</a>,
<a href="#" class="text-primary hover:underline">Black</a>,
<a href="#" class="text-primary hover:underline">White</a>.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">Brand</h3>
<p class="text-base text-gray-700">
This t-shirt is made by
<a href="#" class="text-primary hover:underline">Nike</a>.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-2">Material & Care</h3>
<p class="text-base text-gray-700">
Material: 100% Cotton
<br>
Care instructions: Machine wash at 40 °C, do not tumble dry, iron at medium
temperature, do not bleach.
</p>
</div>
</div>
</div>
<div id="size-shape-content" role="tabpanel" aria-labelledby="size-shape-tab"
class="tab-content hidden">
<div class="overflow-x-auto">
<table class="min-w-full bg-white">
<thead>
<tr>
<th
class="px-6 py-3 border-b border-gray-line bg-gray-100 text-left text-xs leading-4 font-medium text-gray-700 uppercase tracking-wider">
Size
</th>
<th
class="px-6 py-3 border-b border-gray-line bg-gray-100 text-left text-xs leading-4 font-medium text-gray-700 uppercase tracking-wider">
Chest (inches)
</th>
<th
class="px-6 py-3 border-b border-gray-line bg-gray-100 text-left text-xs leading-4 font-medium text-gray-700 uppercase tracking-wider">
Waist (inches)
</th>
<th
class="px-6 py-3 border-b border-gray-line bg-gray-100 text-left text-xs leading-4 font-medium text-gray-700 uppercase tracking-wider">
Sleeve Length (inches)
</th>
</tr>
</thead>
<tbody>
<tr>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
Small
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
34-36
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
28-30
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
32-33
</td>
</tr>
<tr>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
Medium
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
38-40
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
32-34
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
33-34
</td>
</tr>
<tr>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
Large
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
42-44
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
36-38
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
34-35
</td>
</tr>
<tr>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
X-Large
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
46-48
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
40-42
</td>
<td
class="px-6 py-4 whitespace-no-wrap border-b border-gray-line text-sm leading-5 text-gray-700">
35-36
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="reviews-content" role="tabpanel" aria-labelledby="reviews-tab"
class="tab-content hidden">
<!-- Reviews List -->
<div class="space-y-6">
<h3 class="text-lg font-semibold mb-4">Customer Reviews</h3>
<div id="reviews-list">
<!-- Review 1 -->
<div class="py-4">
<div class="flex items-center mb-2">
<span class="text-lg font-semibold text-gray-700">John Doe</span>
<span class="ml-2 text-primary">★★★★★</span>
</div>
<p>Great quality! Fits perfectly and the material feels premium. Highly
recommend this t-shirt.</p>
</div>
<!-- Review 2 -->
<div class="border-t border-gray-line py-4">
<div class="flex items-center mb-2">
<span class="text-lg font-semibold text-gray-700">Jane Smith</span>
<span class="ml-2 text-primary">★★★★☆</span>
</div>
<p>I love the design and the fabric is very comfortable. However, I wish it came
in more colors.</p>
</div>
<!-- Review 3 -->
<div class="border-t border-gray-line py-4">
<div class="flex items-center mb-2">
<span class="text-lg font-semibold text-gray-700">Alice Johnson</span>
<span class="ml-2 text-primary">★★★★★</span>
</div>
<p>Excellent t-shirt! The size is perfect and it looks great. Will definitely
buy again.</p>
</div>
</div>
</div>
<!-- Submit Review Form -->
<div class="mt-8">
<h3 class="text-lg font-semibold mb-4">Write a Review</h3>
<form id="review-form" class="space-y-4">
<div class="space-y-4 md:flex md:space-x-4 md:space-y-0">
<div class="md:flex-1">
<label for="review-name"
class="block text-sm font-medium text-gray-700">Name</label>
<input type="text" id="review-name" name="review-name"
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary focus:border-primary sm:text-sm">
</div>
<div class="md:flex-1">
<label for="review-email"
class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" id="review-email" name="review-email"
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary focus:border-primary sm:text-sm">
</div>
<div class="md:flex-1">
<label for="review-rating"
class="block text-sm font-medium text-gray-700">Rating</label>
<select id="review-rating" name="review-rating"
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary focus:border-primary sm:text-sm">
<option value="5">★★★★★</option>
<option value="4">★★★★☆</option>
<option value="3">★★★☆☆</option>
<option value="2">★★☆☆☆</option>
<option value="1">★☆☆☆☆</option>
</select>
</div>
</div>
<div>
<label for="review-text"
class="block text-sm font-medium text-gray-700">Review</label>
<textarea id="review-text" name="review-text" rows="4"
class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary focus:border-primary sm:text-sm"></textarea>
</div>
<div>
<button type="submit"
class="bg-primary hover:bg-transparent border border-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full focus:outline-none">Submit
Review</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Latest-products -->
<section id="latest-products" class="py-10">
<div class="container mx-auto px-4">
<h2 class="text-2xl font-bold mb-8">Latest products</h2>
<div class="flex flex-wrap -mx-4">
<!-- Product 1 -->
<div class="w-full sm:w-1/2 lg:w-1/4 px-4 mb-8">
<div class="bg-white p-3 rounded-lg shadow-lg">
<img src="assets/images/products/5.jpg" alt="Product 1" class="w-full object-cover mb-4 rounded-lg">
<a href="#" class="text-lg font-semibold mb-2">Blue women's suit</a>
<p class=" my-2">Women</p>
<div class="flex items-center mb-4">
<span class="text-lg font-bold text-primary">$19.99</span>
<span class="text-sm line-through ml-2">$24.99</span>
</div>
<button class="bg-primary border border-transparent hover:bg-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full w-full">Add to Cart</button>
</div>
</div>
<!-- Product 2 -->
<div class="w-full sm:w-1/2 lg:w-1/4 px-4 mb-8">
<div class="bg-white p-3 rounded-lg shadow-lg">
<img src="assets/images/products/6.jpg" alt="Product 2" class="w-full object-cover mb-4 rounded-lg">
<a href="#" class="text-lg font-semibold mb-2">White shirt with long sleeves</a>
<p class=" my-2">Women</p>
<div class="flex items-center mb-4">
<span class="text-lg font-bold text-gray-900">$29.99</span>
</div>
<button class="bg-primary border border-transparent hover:bg-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full w-full">Add to Cart</button>
</div>
</div>
<!-- Product 3 -->
<div class="w-full sm:w-1/2 lg:w-1/4 px-4 mb-8">
<div class="bg-white p-3 rounded-lg shadow-lg">
<img src="assets/images/products/7.jpg" alt="Product 3" class="w-full object-cover mb-4 rounded-lg">
<a href="#" class="text-lg font-semibold mb-2">Yellow men's suit</a>
<p class="my-2">Men</p>
<div class="flex items-center mb-4">
<span class="text-lg font-bold text-gray-900">$15.99</span>
<span class="text-sm line-through ml-2">$19.99</span>
</div>
<button class="bg-primary border border-transparent hover:bg-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full w-full">Add to Cart</button>
</div>
</div>
<!-- Product 4 -->
<div class="w-full sm:w-1/2 lg:w-1/4 px-4 mb-8">
<div class="bg-white p-3 rounded-lg shadow-lg">
<img src="assets/images/products/8.jpg" alt="Product 4" class="w-full object-cover mb-4 rounded-lg">
<a href="#" class="text-lg font-semibold mb-2">Red dress</a>
<p class="my-2">Women</p>
<div class="flex items-center mb-4">
<span class="text-lg font-bold text-primary">$39.99</span>
<span class="text-sm line-through ml-2">$49.99</span>
</div>
<button class="bg-primary border border-transparent hover:bg-transparent hover:border-primary text-white hover:text-primary font-semibold py-2 px-4 rounded-full w-full">Add to Cart</button>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="border-t border-gray-line">
<!-- Top part -->
<div class="container mx-auto px-4 py-10">
<div class="flex flex-wrap -mx-4">
<!-- Menu 1 -->
<div class="w-full sm:w-1/6 px-4 mb-8">
<h3 class="text-lg font-semibold mb-4">Shop</h3>
<ul>
<li><a href="/shop.html" class="hover:text-primary">Shop</a></li>
<li><a href="/single-product-page.html" class="hover:text-primary">Women</a></li>
<li><a href="/shop.html" class="hover:text-primary">Men</a></li>
<li><a href="/single-product-page.html" class="hover:text-primary">Shoes</a></li>
<li><a href="/single-product-page.html" class="hover:text-primary">Accessories</a></li>
</ul>
</div>
<!-- Menu 2 -->
<div class="w-full sm:w-1/6 px-4 mb-8">
<h3 class="text-lg font-semibold mb-4">Pages</h3>
<ul>
<li><a href="/shop.html" class="hover:text-primary">Shop</a></li>
<li><a href="/single-product-page.html" class="hover:text-primary">Product</a></li>
<li><a href="/checkout.html" class="hover:text-primary">Checkout</a></li>
<li><a href="/404.html" class="hover:text-primary">404</a></li>
</ul>
</div>
<!-- Menu 3 -->
<div class="w-full sm:w-1/6 px-4 mb-8">
<h3 class="text-lg font-semibold mb-4">Account</h3>
<ul>
<li><a href="/cart.html" class="hover:text-primary">Cart</a></li>
<li><a href="/register.html" class="hover:text-primary">Registration</a></li>
<li><a href="/register.html" class="hover:text-primary">Login</a></li>
</ul>
</div>
<!-- Social Media -->
<div class="w-full sm:w-1/6 px-4 mb-8">
<h3 class="text-lg font-semibold mb-4">Follow Us</h3>
<ul>
<li class="flex items-center mb-2">
<img src="/assets/images/social_icons/facebook.svg" alt="Facebook" class="w-4 h-4 transition-transform transform hover:scale-110 mr-2">
<a href="#" class="hover:text-primary">Facebook</a>
</li>
<li class="flex items-center mb-2">
<img src="/assets/images/social_icons/twitter.svg" alt="Twitter" class="w-4 h-4 transition-transform transform hover:scale-110 mr-2">
<a href="#" class="hover:text-primary">Twitter</a>
</li>
<li class="flex items-center mb-2">
<img src="/assets/images/social_icons/instagram.svg" alt="Instagram" class="w-4 h-4 transition-transform transform hover:scale-110 mr-2">
<a href="#" class="hover:text-primary">Instagram</a>
</li>
<li class="flex items-center mb-2">
<img src="/assets/images/social_icons/pinterest.svg" alt="Instagram" class="w-4 h-4 transition-transform transform hover:scale-110 mr-2">
<a href="#" class="hover:text-primary">Pinterest</a>
</li>
<li class="flex items-center mb-2">
<img src="/assets/images/social_icons/youtube.svg" alt="Instagram" class="w-4 h-4 transition-transform transform hover:scale-110 mr-2">
<a href="#" class="hover:text-primary">YouTube</a>
</li>
</ul>
</div>
<!-- Contact Information -->
<div class="w-full sm:w-2/6 px-4 mb-8">
<h3 class="text-lg font-semibold mb-4">Contact Us</h3>
<p><img src="assets/images/template-logo.png" alt="Logo" class="h-[60px] mb-4"></p>
<p>123 Street Name, Paris, France</p>
<p class="text-xl font-bold my-4">Phone: (123) 456-7890</p>
<a href="mailto:[email protected]" class="underline">Email: [email protected]</a>
</div>
</div>
</div>
<!-- Bottom part -->
<div class="py-6 border-t border-gray-line">
<div class="container mx-auto px-4 flex flex-wrap justify-between items-center">
<!-- Copyright and Links -->
<div class="w-full lg:w-3/4 text-center lg:text-left mb-4 lg:mb-0">
<p class="mb-2 font-bold">© 2024 Your Company. All rights reserved.</p>
<ul class="flex justify-center lg:justify-start space-x-4 mb-4 lg:mb-0">
<li><a href="#" class="hover:text-primary">Privacy Policy</a></li>
<li><a href="#" class="hover:text-primary">Terms of Service</a></li>
<li><a href="#" class="hover:text-primary">FAQ</a></li>
</ul>
<p class="text-sm mt-4">Your shop's description goes here. This is a brief introduction to your shop and what you offer.</p>
</div>
<!-- Payment Icons -->
<div class="w-full lg:w-1/4 text-center lg:text-right">
<img src="/assets/images/social_icons/paypal.svg" alt="PayPal" class="inline-block h-8 mr-2">
<img src="/assets/images/social_icons/stripe.svg" alt="Stripe" class="inline-block h-8 mr-2">
<img src="/assets/images/social_icons/visa.svg" alt="Visa" class="inline-block h-8">
</div>
</div>
</div>
</footer>
<script src="node_modules/swiper/swiper-bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js" defer></script>
<script src="assets/js/script.js"></script>
</body>
</html>