-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmy-order.html
More file actions
732 lines (683 loc) · 51.7 KB
/
my-order.html
File metadata and controls
732 lines (683 loc) · 51.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - Love Care</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.fade-in {
animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-gradient {
background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.team-card {
transition: all 0.3s ease;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.value-card {
transition: all 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.timeline-item {
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: 20px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, #ec4899, #db2777);
}
.timeline-item:last-child::before {
display: none;
}
.mobile-menu {
display: none;
}
@media (max-width: 768px) {
.desktop-nav {
display: none;
}
}
</style>
</head>
<body class="bg-pink-50">
<!-- Header -->
<header class="bg-pink-100 border-b border-pink-200 sticky top-0 z-50">
<div class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<!-- Logo (left side) -->
<a href="index.html" class="flex items-center space-x-3">
<div class="w-12 h-12 space-x-3">
<img src="https://images.scalebranding.com/heart-care-logo-c5a5346c-b932-4532-92c0-bb692dd6b976.jpg"
alt="Love care Logo" class="w-full h-full object-cover rounded-full">
</div>
<span class="text-2xl font-bold text-gray-800 "
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 ">Cαɾҽ</span>
</span>
</a>
<!-- Navigation Centered -->
<nav class="desktop-nav hidden md:flex space-x-20 justify-center flex-1">
<a href="index.html"
class="text-gray-700 hover:text-pink-600 transition-colors flex items-center justify-center">Home</a>
<a href="shop.html"
class="text-gray-700 hover:text-pink-600 transition-colors flex items-center justify-center">Shop</a>
<a href="about.html"
class="text-gray-700 hover:text-pink-600 transition-colors flex items-center justify-center">About</a>
<a href="contact.html"
class="text-gray-700 hover:text-pink-600 transition-colors flex items-center justify-center">Contact</a>
</nav>
<!-- Icons (right side) -->
<div class="flex items-center space-x-10">
<a href="./profile.html"><i
class="fas fa-user text-pink-700 font-semibold flex items-center justify-cente"></i></a>
<div class="relative">
<a href="./cart.html" class="block">
<i
class="fas fa-shopping-cart text-gray-600 cursor-pointer hover:text-pink-600 transition-colors"></i>
<span
class="absolute -top-2 -right-2 bg-red-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">3</span>
</a>
</div>
<i
class="fas fa-bars text-gray-600 cursor-pointer hover:text-pink-600 transition-colors md:hidden"></i>
</div>
</div>
</div>
</header>
<!-- Account Page Content -->
<!-- About Hero Section -->
<main class="py-4 sm:py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- Page Header -->
<div class="mb-6 sm:mb-8 text-center">
<h1 class="text-2xl sm:text-3xl font-bold text-gray-800 dark:text-white">My Account</h1>
<p class="mt-1 sm:mt-2 text-sm sm:text-base text-gray-600 dark:text-gray-400">Manage your profile,
orders, and preferences</p>
</div>
<div class="flex flex-col lg:flex-row gap-4 sm:gap-6 lg:gap-8">
<!-- Profile Sidebar with Navigation -->
<div class="lg:w-1/4">
<div
class="bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<!-- User Card -->
<div
class="p-4 sm:p-6 flex flex-col items-center border-b border-gray-200 dark:border-gray-700">
<div class="relative w-20 h-20 sm:w-24 sm:h-24 mb-3 sm:mb-4">
<img src="https://i.pinimg.com/1200x/ff/54/e3/ff54e3d714e9cc1ba683e57b2e8e2af3.jpg"
alt="User profile"
class="w-full h-full rounded-full object-cover border-4 border-white shadow-lg">
<div
class="absolute bottom-0 right-0 sm:bottom-1 sm:right-1 bg-primary text-white w-6 h-6 sm:w-8 sm:h-8 rounded-full flex items-center justify-center cursor-pointer transition-colors hover:bg-blue-700">
<i class="fas fa-pen fa-xs"></i>
</div>
</div>
<h2 class="text-lg sm:text-xl font-bold text-gray-800 dark:text-white">Puth Sovannary</h2>
<p class="text-sm sm:text-base text-gray-600 dark:text-gray-400 mt-1">
sovannary.puth121@example.com</p>
<span
class="mt-2 sm:mt-3 inline-block px-2 py-0.5 sm:px-3 sm:py-1 bg-gradient-to-r bg-pink-400 text-white text-xs font-bold rounded-full">Premium
Member</span>
</div>
<div
class="px-4 py-3 sm:px-6 sm:py-4 flex justify-between border-b border-gray-200 dark:border-gray-700">
<div class="text-center">
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Member Since</p>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">Jun 2022</p>
</div>
<div class="text-center">
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Loyalty Points</p>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">1,240 pts</p>
</div>
</div>
<!-- Mobile Dropdown Navigation -->
<div class="lg:hidden">
<button id="account-mobile-menu-button"
class="w-full flex justify-between items-center px-4 py-3 bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors">
<span class="font-medium text-gray-800 dark:text-white">Menu</span>
<i class="fas fa-chevron-down text-gray-500 dark:text-gray-400 transition-transform duration-200"
id="account-mobile-menu-icon"></i>
</button>
<div id="account-mobile-menu" class="hidden bg-white dark:bg-gray-800">
<a href="./profile.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-primary">
<i
class="fas fa-user-circle text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Profile Overview</span>
</a>
<a href="./my-order.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-bag text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">My Orders</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">4</span>
</a>
<a href="./wishlist.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i class="fas fa-heart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Wishlist</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">3</span>
</a>
<a href="./cart.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-cart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Cart</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">2</span>
</a>
<a href="./payment-method.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fa-solid fa-credit-card text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Payment Method</span>
</a>
<a href="../../../index.html"
class="flex items-center px-6 py-3 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors border-l-4 border-transparent">
<i class="fas fa-sign-out-alt w-6 text-center mr-3"></i>
<span class="flex-1">Sign Out</span>
</a>
</div>
</div>
<!-- Desktop Navigation -->
<div class="hidden lg:block py-2">
<a href="./profile.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors ">
<i class="fas fa-user-circle text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Profile Overview</span>
</a>
<a href="./my-order.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-pink-400">
<i
class="fas fa-shopping-bag text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">My Orders</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">4</span>
</a>
<a href="./wishlist.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i class="fas fa-heart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Wishlist</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">3</span>
</a>
<a href="./cart.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-cart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Cart</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">2</span>
</a>
<a href="./payment-method.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fa-solid fa-credit-card text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Payment Method</span>
</a>
<a href="../../../index.html"
class="flex items-center px-6 py-4 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors border-l-4 border-transparent">
<i class="fas fa-sign-out-alt w-6 text-center mr-3"></i>
<span class="flex-1">Sign Out</span>
</a>
</div>
</div>
<!-- Additional Account Info -->
<div
class="mt-4 sm:mt-6 bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<div class="p-4 sm:p-6">
<h3 class="text-base sm:text-lg font-semibold text-gray-800 dark:text-white mb-3 sm:mb-4">
Account Security</h3>
<div class="space-y-3 sm:space-y-4">
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">
Two-Factor Auth</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Enabled</p>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer" checked>
<div
class="w-9 h-5 sm:w-11 sm:h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 sm:after:h-5 sm:after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-500">
</div>
</label>
</div>
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">Email
Notifications</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Enabled</p>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer" checked>
<div
class="w-9 h-5 sm:w-11 sm:h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 sm:after:h-5 sm:after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-500">
</div>
</label>
</div>
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">
Loyalty Status</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Gold Member</p>
</div>
<div
class="w-6 h-6 sm:w-8 sm:h-8 rounded-full bg-yellow-400 flex items-center justify-center">
<i class="fas fa-crown text-white text-xs sm:text-sm"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- My Orders Content -->
<div class="lg:w-3/4">
<div
class="bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<div class="p-6 border-b border-gray-200 dark:border-gray-700">
<h2 class="text-2xl font-bold text-gray-800 dark:text-white">My Orders</h2>
<p class="text-gray-600 dark:text-gray-400 mt-1">View your order history and
track shipments
</p>
</div>
<div class="p-6">
<!-- Order Filter Controls -->
<div
class="flex flex-col md:flex-row justify-between items-start md:items-center gap-4 mb-6">
<div class="flex items-center gap-3">
<span
class="text-sm font-medium text-gray-700 dark:text-gray-300">Filter:</span>
<select
class="bg-gray-50 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 text-gray-700 dark:text-gray-200 rounded-lg px-3 py-2 text-sm focus:ring-primary focus:border-primary">
<option>All Orders</option>
<option>Last 30 Days</option>
<option>Past 6 Months</option>
<option>2025</option>
</select>
</div>
<div class="relative w-full md:w-64">
<input type="text" placeholder="Search orders..."
class="w-full pl-10 pr-4 py-2 bg-gray-50 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 rounded-lg text-sm focus:ring-primary focus:border-primary">
<i
class="fas fa-search absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400"></i>
</div>
</div>
<!-- Orders List -->
<div class="space-y-6">
<!-- Order 1 -->
<div
class="border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden">
<!-- Order Header -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-b border-gray-200 dark:border-gray-700">
<div>
<div class="flex items-center gap-3">
<span
class="font-medium text-gray-800 dark:text-white">Order
#LOVECARE-456352</span>
<span
class="px-2 py-1 bg-green-100 dark:bg-green-900/50 text-green-800 dark:text-green-200 text-xs rounded-full">Delivered</span>
</div>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">Placed
on June 12,
2025</p>
</div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-receipt"></i> View Invoice
</button>
</div>
<!-- Order Items -->
<div class="divide-y divide-gray-200 dark:divide-gray-700">
<!-- Item 1 -->
<div class="p-4 flex flex-col md:flex-row gap-4">
<div
class="w-20 h-20 bg-gray-100 dark:bg-gray-600 rounded-lg overflow-hidden flex-shrink-0">
<img src="./img/pp2.png"
alt="MacBook Pro" class="w-full h-full object-contain">
</div>
<div class="flex-1">
<h3 class="font-medium text-gray-800 dark:text-white">
Chhuk Blush</h3>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">
Pink</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Qty: 1
</p>
</div>
<div class="md:text-right">
<p class="font-medium text-gray-800 dark:text-white">
$10.00</p>
<p class="text-sm text-green-600 dark:text-green-400 mt-1">
Delivered Jun
15, 2023</p>
</div>
</div>
<!-- Item 2 -->
<div class="p-4 flex flex-col md:flex-row gap-4">
<div
class="w-20 h-20 bg-gray-100 dark:bg-gray-600 rounded-lg overflow-hidden flex-shrink-0">
<img src="./img/pp3.png"
alt="Magic Mouse" class="w-full h-full object-contain">
</div>
<div class="flex-1">
<h3 class="font-medium text-gray-800 dark:text-white">Nokoreach Blush</h3>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">
Brown</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Qty: 1
</p>
</div>
<div class="md:text-right">
<p class="font-medium text-gray-800 dark:text-white">$10.00
</p>
<p class="text-sm text-green-600 dark:text-green-400 mt-1">
Delivered Jun
15, 2025</p>
</div>
</div>
</div>
<!-- Order Footer -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-t border-gray-200 dark:border-gray-700">
<div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-truck"></i> Track Package
</button>
</div>
<div class="text-right">
<p class="text-sm text-gray-500 dark:text-gray-400">Total: <span
class="font-medium text-gray-800 dark:text-white ml-1">$20.00</span>
</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Paid with
Visa •••• 4242
</p>
</div>
</div>
</div>
<!-- Order 2 -->
<div
class="border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden">
<!-- Order Header -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-b border-gray-200 dark:border-gray-700">
<div>
<div class="flex items-center gap-3">
<span
class="font-medium text-gray-800 dark:text-white">Order
#LOVECARE-852085</span>
<span
class="px-2 py-1 bg-blue-100 dark:bg-blue-900/50 text-blue-800 dark:text-blue-200 text-xs rounded-full">Shipped</span>
</div>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">Placed
on May 28,
2025</p>
</div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-receipt"></i> View Invoice
</button>
</div>
<!-- Order Items -->
<div class="divide-y divide-gray-200 dark:divide-gray-700">
<!-- Item 1 -->
<div class="p-4 flex flex-col md:flex-row gap-4">
<div
class="w-20 h-20 bg-gray-100 dark:bg-gray-600 rounded-lg overflow-hidden flex-shrink-0">
<img src="./img/somroslip.png"
alt="Dell XPS 15" class="w-full h-full object-contain">
</div>
<div class="flex-1">
<h3 class="font-medium text-gray-800 dark:text-white">Somros lipstick</h3>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">
</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Qty: 1
</p>
</div>
<div class="md:text-right">
<p class="font-medium text-gray-800 dark:text-white">
$10.00</p>
<div class="flex items-center gap-2 mt-1">
<div
class="w-full bg-gray-200 dark:bg-gray-600 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full"
style="width: 65%">
</div>
</div>
<span
class="text-xs text-blue-600 dark:text-blue-400">Shipped</span>
</div>
</div>
</div>
</div>
<!-- Order Footer -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-t border-gray-200 dark:border-gray-700">
<div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-truck"></i> Track Package
</button>
<button
class="text-gray-700 dark:text-gray-300 hover:text-primary text-sm font-medium flex items-center gap-1 mt-2">
<i class="fas fa-undo"></i> Return Item
</button>
</div>
<div class="text-right">
<p class="text-sm text-gray-500 dark:text-gray-400">Total: <span
class="font-medium text-gray-800 dark:text-white ml-1">$10.00</span>
</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Paid with
Mastercard
•••• 5555</p>
</div>
</div>
</div>
<!-- Order 3 -->
<div
class="border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden">
<!-- Order Header -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-b border-gray-200 dark:border-gray-700">
<div>
<div class="flex items-center gap-3">
<span
class="font-medium text-gray-800 dark:text-white">Order
#LOVECARE-313452</span>
<span
class="px-2 py-1 bg-yellow-100 dark:bg-yellow-900/50 text-yellow-800 dark:text-yellow-200 text-xs rounded-full">Processing</span>
</div>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">Placed
on May 15,
2023</p>
</div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-receipt"></i> View Invoice
</button>
</div>
<!-- Order Items -->
<div class="divide-y divide-gray-200 dark:divide-gray-700">
<!-- Item 1 -->
<div class="p-4 flex flex-col md:flex-row gap-4">
<div
class="w-20 h-20 bg-gray-100 dark:bg-gray-600 rounded-lg overflow-hidden flex-shrink-0">
<img src="./img/tyninlotion.png"
alt="AirPods Pro" class="w-full h-full object-contain">
</div>
<div class="flex-1">
<h3 class="font-medium text-gray-800 dark:text-white">Tynin cushion</h3>
<p class="text-sm text-gray-500 dark:text-gray-400 mt-1">
White</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Qty: 2
</p>
</div>
<div class="md:text-right">
<p class="font-medium text-gray-800 dark:text-white">$24.00
</p>
<div class="flex items-center gap-2 mt-1">
<div
class="w-full bg-gray-200 dark:bg-gray-600 rounded-full h-2">
<div class="bg-yellow-500 h-2 rounded-full"
style="width: 30%">
</div>
</div>
<span
class="text-xs text-yellow-600 dark:text-yellow-400">Preparing</span>
</div>
</div>
</div>
</div>
<!-- Order Footer -->
<div
class="bg-gray-50 dark:bg-gray-700/50 p-4 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 border-t border-gray-200 dark:border-gray-700">
<div>
<button
class="text-gray-700 dark:text-gray-300 hover:text-red-600 text-sm font-medium flex items-center gap-1">
<i class="fas fa-times-circle"></i> Cancel Order
</button>
</div>
<div class="text-right">
<p class="text-sm text-gray-500 dark:text-gray-400">Total: <span
class="font-medium text-gray-800 dark:text-white ml-1">$24.00</span>
</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Paid with
Visa •••• 4242
</p>
</div>
</div>
</div>
</div>
<!-- Pagination -->
<div class="mt-8 flex flex-col sm:flex-row justify-between items-center gap-4">
<p class="text-sm text-gray-500 dark:text-gray-400">Showing 1 to 3 of 8
orders</p>
<div class="flex gap-1">
<button
class="px-3 py-1 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-200 rounded-lg text-sm font-medium disabled:opacity-50"
disabled>
<i class="fas fa-chevron-left"></i>
</button>
<button
class="px-3 py-1 bg-blue-600 text-white rounded-lg text-sm font-medium">1</button>
<button
class="px-3 py-1 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-200 rounded-lg text-sm font-medium hover:bg-gray-200 dark:hover:bg-gray-600">2</button>
<button
class="px-3 py-1 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-200 rounded-lg text-sm font-medium hover:bg-gray-200 dark:hover:bg-gray-600">3</button>
<button
class="px-3 py-1 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-200 rounded-lg text-sm font-medium">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-pink-100 dark:bg-gray-900 dark:text white border-t border-pink-200 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<a href="index.html" class="flex items-center space-x-3">
<div class="w-12 h-12">
<img src="https://images.scalebranding.com/heart-care-logo-c5a5346c-b932-4532-92c0-bb692dd6b976.jpg"
alt="Love care Logo" class="w-full h-full object-cover rounded-full">
</div>
<span class="text-2xl font-bold text-gray-800 hover:text-pink-600 dark:text-white transition-colors"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 hover:text-blue-600">Cαɾҽ</span>
</span>
</a>
<p class="text-gray-600 dark:text-white text-sm mb-4">Premium beauty and skincare products for your daily
routine.
</p>
<div class="flex space-x-4 ">
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Quick Links</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><a href="index.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Home</a></li>
<li><a href="shop.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Shop</a></li>
<li><a href="about.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">About</a></li>
<li><a href="contact.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Contact</a></li>
<li><a href="cart.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Cart</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Customer Service</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">FAQ</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Shipping</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Returns</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Support</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Contact Info</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><i class="fas fa-envelope mr-2 dark:text-white dark:hover:text-pink-600">
</i>info@lovecare.com</li>
<li><i class="fas fa-phone mr-2 dark:text-white dark:hover:text-pink-600">
</i>(855) 962-682-908</li>
<li><i class="fas fa-map-marker-alt mr-2 dark:text-white dark:hover:text-pink-600">
</i class="text-gray-300 dark:text-white ">123 Beauty St, Phnom Penh City</li>
<!-- School Logo -->
<div class="mb-6 py-3">
<div class="flex items-center space-x-4 mb-4">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Organized by</h4>
</div>
<img src="./img/istad-logo-2024.png" alt="School Logo" class="h-16 w-auto rounded-lg">
</div>
<p class="text-gray-400 dark:text-white text-sm leading-relaxed">
Institute of Science and Technology Advanced Development - Premier educational
institution
shaping future innovators.
</p>
</div>
</ul>
</div>
</div>
<div class="border-t border-pink-200 mt-8 pt-8 text-center text-sm text-gray-600 dark:text-white dark:hover:text-pink-600">
<p>© 2025 Lσʋҽ <span class="text-pink-500">Cαɾҽ</span>. All rights reserved. | <a href="#"
class="hover:text-pink-600">Privacy Policy</a> | <a href="#"
class="hover:text-pink-600">Terms
of Service</a></p>
</div>
</div>
</footer>
</body>
</html>