-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
957 lines (911 loc) · 51.7 KB
/
index.html
File metadata and controls
957 lines (911 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Love Care - Home</title>
<meta name="description" content="Discover Love Care's premium skincare products crafted to enhance your natural beauty. Shop moisturizers, serums, and cleansers for radiant, healthy skin.">
<meta name="keywords" content="skincare, beauty products, moisturizers, serums, cleansers, Love Care, natural skincare, premium skincare">
<meta name="author" content="Love Care">
<meta name="robots" content="index, follow">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<section>
<script>
tailwind.config = {
darkMode: 'class',
}
</script>
<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%);
}
.btn-primary {
background: linear-gradient(45deg, #ec4899, #db2777);
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(45deg, #db2777, #be185d);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}
.btn-secondary {
background: linear-gradient(45deg, #10b981, #059669);
transition: all 0.3s ease;
}
.btn-secondary:hover {
background: linear-gradient(45deg, #059669, #047857);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}
.product-card {
transition: all 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.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 dark:bg-gray-900 border-b border-pink-200 dark:border-pink-900 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">
<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 dark:text-white"
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-pink-700 dark:text-pink-500 hover:text-pink-600 dark:hover:text-pink-600 transition-colors flex items-center justify-center">Home</a>
<a href="shop.html"
class="text-gray-600 dark:text-white dark:hover:text-white font-semibold flex items-center justify-center">Shop</a>
<a href="about.html"
class="text-gray-700 dark:text-white dark:hover:text-pink-500 hover:text-pink-600 transition-colors flex items-center justify-center">About</a>
<a href="contact.html"
class="text-gray-700 dark:text-white dark:hover:text-pink-500 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">
<button id="theme-toggle" class="text-gray-600 dark:text-white dark:hover:text-pink-500 text-xl">
<i id="theme-icon" class="fas fa-moon"></i>
</button>
<a href="./profile.html"><i
class="fas fa-user text-gray-600 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 transition-colors"></i></a>
<div class="relative">
<a href="./cart.html" class="block">
<i
class="fas fa-shopping-cart text-gray-600 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 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 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 transition-colors md:hidden"></i>
</div>
</div>
</div>
</header>
</header>
<!-- Hero Section -->
<section class="hero-gradient ">
<div class="container mx-auto px-0">
<!-- Full width Flowbite carousel -->
<div id="default-carousel" class="relative w-full 4-[30rem] md:h-[35rem] overflow-hidden rounded-lg"
data-carousel="slide">
<div class="relative h-full w-full">
<!-- Slide 1 -->
<div class="hidden duration-700 ease-in-out h-full w-full flex items-center justify-center"
data-carousel-item>
<img src="https://i.pinimg.com/1200x/e9/59/67/e959671fbdc910b2cba2c0adeb434314.jpg"
class="absolute inset-0 w-full h-full object-cover opacity-40" alt="Beauty Products">
<div class="relative z-10 flex items-center justify-center w-full h-full">
<div class="md:w-1/2 mb-8 md:mb-0 fade-in p-8 text-center mx-auto">
<h1 class="text-4xl md:text-6xl font-bold text-gray-800 mb-4">Beauty of Dream</h1>
<p class="text-lg text-gray-600 mb-6">
Discover our premium collection of natural beauty and skincare products that enhance
your natural glow
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="shop.html"
class="btn-primary inline-block text-white px-8 py-3 rounded-full text-center font-semibold">
Shop Now
</a>
<a href="about.html"
class="inline-block border-2 border-pink-500 text-pink-600 px-8 py-3 rounded-full text-center font-semibold hover:bg-pink-500 hover:text-white transition-colors">
Learn More
</a>
</div>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="hidden duration-700 ease-in-out h-full w-full flex items-center justify-center"
data-carousel-item>
<img src="https://i.pinimg.com/736x/00/da/96/00da966393f363cb51e0ac225a174d77.jpg"
class="absolute inset-0 w-full h-full object-cover opacity-40" alt="Beauty Products">
<div class="relative z-10 flex items-center justify-center w-full h-full">
<div class="md:w-1/2 mb-8 md:mb-0 fade-in p-8 text-center mx-auto">
<h1 class="text-4xl md:text-6xl font-bold text-gray-800 mb-4">Glow of Serenity</h1>
<p class="text-lg text-gray-600 mb-6">
Unveil your radiant beauty with our luxurious line of natural skincare treasures
with our premium natural skincare collection
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="shop.html"
class="btn-primary inline-block text-white px-8 py-3 rounded-full text-center font-semibold">
Shop Now
</a>
<a href="about.html"
class="inline-block border-2 border-pink-500 text-pink-600 px-8 py-3 rounded-full text-center font-semibold hover:bg-pink-500 hover:text-white transition-colors">
Learn More
</a>
</div>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="hidden duration-700 ease-in-out h-full w-full flex items-center justify-center"
data-carousel-item>
<img src="https://i.pinimg.com/1200x/32/f7/c2/32f7c24d25c2ccef1df5b9822a701430.jpg "
class="absolute inset-0 w-full h-full object-cover opacity-30" alt="Skincare Collection">
<div class="relative z-10 flex items-center justify-center w-full h-full">
<div class="md:w-1/2 mb-8 md:mb-0 fade-in text-center mx-auto">
<h1 class="text-4xl md:text-6xl font-bold text-gray-800 mb-4">Moonlit Beauty</h1>
<p class="text-lg text-gray-600 mb-6">
Celebrate your natural beauty with our premium skincare line. Crafted with key
ingredients can enhances your glow with nature’s finest. Shine brighter every day!
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="shop.html"
class="btn-primary inline-block text-white px-8 py-3 rounded-full text-center font-semibold">
Shop Now
</a>
<a href="about.html"
class="inline-block border-2 border-pink-500 text-pink-600 px-8 py-3 rounded-full text-center font-semibold hover:bg-pink-500 hover:text-white transition-colors">
Learn More
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Slider controls -->
<button type="button"
class="absolute top-0 left-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
data-carousel-prev>
<span
class="inline-flex items-center justify-center w-8 h-8 rounded-full bg-white/30 group-hover:bg-white/50">
<svg class="w-5 h-5 text-pink-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7">
</path>
</svg>
</span>
</button>
<button type="button"
class="absolute top-0 right-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none"
data-carousel-next>
<span
class="inline-flex items-center justify-center w-8 h-8 rounded-full bg-white/30 group-hover:bg-white/50">
<svg class="w-5 h-5 text-pink-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7">
</path>
</svg>
</span>
</button>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8 dark:bg-gray-800">
<!-- Title -->
<div class="max-w-2xl text-center mx-auto mb-10 lg:mb-14">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">Featured Products</h2>
<p class="mt-1 text-gray-600 dark:text-neutral-400">Discover our most loved skincare essentials</p>
</div>
<div class="flex flex-col md:flex-row gap-8">
<!-- Mobile Filter Button (visible only on small screens) -->
<div class="md:hidden mb-4">
<button id="filterToggle"
class="w-full flex items-center justify-between py-2 px-4 bg-white dark:bg-gray-800 rounded-lg shadow border border-gray-200 dark:border-gray-700">
<span class="font-medium text-gray-800 dark:text-white">Filters</span>
<svg id="filterIcon"
class="w-5 h-5 text-gray-600 dark:text-gray-400 transform transition-transform duration-200" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
</div>
<!-- Sidebar/Dropdown Content -->
<aside id="filterSidebar" class="w-full md:w-64 flex-shrink-0 md:block hidden md:!block">
<div class="bg-white dark:bg-gray-800 rounded-lg shadow p-6 sticky top-32">
<h3 class="font-bold text-lg mb-4 text-gray-800 dark:text-white">Filter by Brand</h3>
<ul class="space-y-2">
<li>
<a href="./blush.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white">Blush</span>
</a>
</li>
<li>
<a href="./lipstick.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white ">Lipstick</span>
</a>
</li>
<li>
<a href="./cushion.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white">Cushion</span>
</a>
</li>
<li>
<a href="./Lotion.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white">Lotion</span>
</a>
</li>
<li>
<a href="./BB.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white">BB & Suncreen</span>
</a>
</li>
<li>
<a href="./night.html"
class="flex items-center gap-3 px-3 py-2 rounded-lg hover:bg-gray-100 dark:hover:bg-pink-700 ">
<span class="text-gray-700 dark:text-white">Night Cream</span>
</a>
</li>
</ul>
<div class="mt-8">
<h3 class="font-bold text-lg mb-4 text-gray-800 dark:text-white">Price Range</h3>
<div class="space-y-4">
<div>
<label for="min-price" class="block text-sm font-medium text-pink-600 dark:text-white mb-1">
Min Price
</label>
<input type="range" id="min-price" min="0" max="5000" value="500"
class="w-full h-2 bg-pink-200 rounded-lg appearance-none cursor-pointer accent-pink-500">
<div class="flex justify-between text-xs text-pink-500 dark:text-white mt-1">
<span>$0</span>
<span>$10</span>
<span>$10+</span>
</div>
</div>
<div>
<label for="max-price" class="block text-sm font-medium text-pink-600 dark:text-white mb-1">
Max Price
</label>
<input type="range" id="min-price" min="0" max="5000" value="500"
class="w-full h-2 bg-pink-200 rounded-lg appearance-none cursor-pointer accent-pink-500">
<div class="flex justify-between text-xs text-pink-500 dark:text-white mt-1">
<span>$0</span>
<span>$30</span>
<span>$35+</span>
</div>
</div>
</div>
</div>
<button
class="w-full mt-6 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Apply Filters
</button>
</div>
</aside>
<!-- Product Grid -->
<div class="flex-1">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800 dark:text-white">Best Seller</h2>
<div class="flex items-center gap-2">
<span class="text-sm text-gray-600 dark:text-gray-400">Sort by:</span>
<select
class="bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-700 rounded-md px-3 py-1 text-sm focus:outline-none focus:ring-2 focus:ring-primary">
<option>Featured</option>
<option>Price: Low to High</option>
<option>Price: High to Low</option>
<option>Newest</option>
<option>Best Rated</option>
</select>
</div>
</div>
<!-- Mixed Brand Products Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Cushion -->
<a href="./detail-item1.html">
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="./img/ckissme.png" alt="cuushion" class="w-full h-48 object-cover">
<span class="absolute top-2 right-2 bg-pink-500 text-white text-xs px-2 py-1 rounded-full">best
seller</span>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Cushion</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have in stock</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(15k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$12.00</span>
<button class="text-red-500 hover:text-pink-600">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
</a>
<!-- Amore -->
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="./img/Amore.png" alt="lipstick" class="w-full h-48 object-cover">
<span class="absolute top-2 right-2 bg-pink-500 text-white text-xs px-2 py-1 rounded-full">New</span>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Lipstick</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have in stock</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(15k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$12.00</span>
<button class="text-red-500 hover:text-pink-600">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
<!-- Lotion-->
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="./img/lotion tinin.png" alt="lotion" class="w-full h-48 object-cover">
<span class="absolute top-2 right-2 bg-pink-500 text-white text-xs px-2 py-1 rounded-full">Best
Seller</span>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Lotion</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have in stock</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(6k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$30.00</span>
<button class="text-red-500 hover:text-pink-600">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
<!--Suncreen-->
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="./img/suncreen.png" alt="suncreen" class="w-full h-48 object-cover">
<span class="absolute top-2 right-2 bg-pink-500 text-white text-xs px-2 py-1 rounded-full">best
seller</span>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Tynin Suncre</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have in stock</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(9k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$12.00</span>
<button class="text-red-500 hover:text-pink-600 transition">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
<!--weyoung -->
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="./img/weyoung.png" alt="weyoung" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Weyoung</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have in stock all code color</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(30k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$22.00</span>
<button class="text-red-500 hover:text-pink-600 transition">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
<!--Blush-->
<article
class="bg-white dark:bg-gray-800 rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="relative">
<img src="https://i.ebayimg.com/images/g/4P4AAOSwUmRl1Go7/s-l1200.jpg" alt="blush"
class="w-full h-48 object-cover">
<span class="absolute top-2 right-2 bg-pink-500 text-white text-xs px-2 py-1 rounded-full">best
seller</span>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Pka Blush</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">have 7 color</p>
</div>
</div>
<div class="mt-3">
<div class="flex items-center mb-2">
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-xs text-gray-500 dark:text-gray-400 ml-1">(10k)</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800 dark:text-white">$10.00</span>
<button class="text-red-500 hover:text-pink-600 transition">
<i class="fas fa-heart text-lg"></i>
</button>
</div>
</div>
<button
class="w-full mt-3 bg-pink-500 hover:bg-pink-600 text-white py-2 px-4 rounded-lg transition duration-200">
Buy
</button>
</div>
</article>
</div>
<!-- Pagination -->
<div class="mt-10 flex justify-center">
<nav class="flex items-center gap-1">
<a href="#" class="px-3 py-1 rounded-md bg-pink-500 text-white hover:bg-pink-600">1</a>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">2</a>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">3</a>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">4</a>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">5</a>
<span class="px-3 py-1 text-black dark:text-white">...</span>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">10</a>
<a href="#"
class="px-3 py-1 rounded-md hover:bg-pink-100 dark:hover:bg-pink-700 text-black dark:text-white">
<i class="fas fa-chevron-right"></i>
</a>
</nav>
</div>
<div class="text-center py-8">
<div class="inline-block bg-white border border-gray-200 shadow-2xs rounded-full dark:bg-neutral-900 dark:border-neutral-800">
<div class="py-4 px-4 flex items-center gap-x-2">
<a class="inline-flex items-center gap-x-1.5 text-pink-600 "
href="./shop.html">
🛍️ Shop Now
<svg class="shrink-0 size-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</a>
<p class="text-gray-700 dark:text-neutral-400">
or regret later...!
</p>
</div>
</div>
</div>
</section>
<!-- Brand Name -->
<section class="py-8 sm:py-30 bg-gray-100 dark:bg-gray-900">
<div class="max-w-[85rem] px-4 py-10 sm:px-6 lg:px-8 lg:py-14 mx-auto">
<div class="max-w-2xl text-center mx-auto mb-10 lg:mb-14">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white"> Brand Name</h2>
<p class="mt-1 text-gray-600 dark:text-neutral-400"> This is the most pupular brand name of a product is the unique name
that makes it stand out in the market and attract attention.</p>
</div>
<div
class="container grid grid-cols-1 md:grid-cols-3 grid-row-auto w-full h-auto gap-4 shadow-xs overflow-hidden ">
<div class="col-span-1 sm:col-span-1 relative">
<a href="" class=""><img src="./img/phka-brand.png" alt=""class="w-full h-72 object-cover rounded-sm">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2">Phka blush</h3>
</a>
</div>
<div class="col-span-1 sm:col-span-1 relative">
<a href="" class=""><img src="./img/Amore.png" alt=""
class="w-full h-72 object-cover rounded-sm">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2">Amore</h3>
</a>
</div>
<div class="col-span-1 sm:col-span-1 relative">
<a href="#" class=""><img src="img/weyoung-brand.png" alt=""
class="w-full h-72 object-cover rounded-sm">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2">Weyoung</h3>
</a>
</div>
<div class="col-span-1 sm:col-span-1 relative py-4">
<a href="#" class=""><img
src="img/besoma1.png"
alt="" class="w-full h-72 object-cover rounded-lg">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2 py-4">Besoma </h3>
</a>
</div>
<div class="col-span-1 sm:col-span-1 relative py-4" >
<a href="#" class=""><img
src="img/pixi.png"
alt="" class="w-full h-72 object-cover rounded-lg">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2 py-4">Pixi </h3>
</a>
</div>
<div class="col-span-1 sm:col-span-1 relative py-4">
<a href="#" class=""><img
src="https://i.pinimg.com/736x/00/64/30/00643059663fe7eb58561b0921f714cb.jpg"
alt="" class="w-full h-72 object-cover rounded-lg">
<h3 class="text-xl font-semibold text-gray-700 absolute top-2 left-2 py-4">SK ll</h3>
</a>
</div>
</div>
</div>
</section>
<!-- Feedback -->
<section class="py-8 sm:py-8 dark:bg-gray-900 dark:text-white">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="max-w-2xl text-center mx-auto mb-10 lg:mb-14">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">Feedback</h2>
<p class="mt-1 text-gray-600 dark:text-neutral-400"> Our customers love how our skincare products
transform their skin — from dull and dry to glowing and hydrated. </p>
</div>
<div
class="mx-auto mt-5 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 border-t border-gray-200 pt-10 sm:mt-16 sm:pt-16 lg:mx-0 lg:max-w-none lg:grid-cols-3">
<article
class="flex max-w-xl flex-col items-start justify-between border border-gray-200 p-4 rounded-xl">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2020-03-16" class="text-gray-500">Apr 30, 2025</time>
<a href="#"
class="relative z-10 rounded-full bg-pink-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-100">Khan
Sen Sok</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg/6 font-semibold text-gray-900 dark:text-white">
<a href="#">
<span class="absolute inset-0 "></span>
I Love This Website so much
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm/6 text-gray-600 dark:text-neutral-400"><i>"I tried the Gentle Foam Cleanser,
and it’s so refreshing. It removes all the dirt and makeup without drying out my
skin. My face feels clean and smooth after every wash."</i></p>
</div>
<div class="relative mt-10 flex items-center gap-x-6">
<img src="https://i.pinimg.com/736x/cd/44/0f/cd440f708d9e5ae445c8487a6ad8ccb3.jpg" alt=""
class="size-10 rounded-full bg-gray-50" />
<div class="text-sm/6">
<p class="font-semibold text-gray-900">
<a href="#">
<span class="absolute inset-0"></span>
Sok Lily
</a>
</p>
</div>
</div>
</article>
<article
class="flex max-w-xl flex-col items-start justify-between border border-gray-200 p-4 rounded-xl">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2020-03-16" class="text-gray-500">Oct 25, 2024</time>
<a href="#"
class="relative z-10 rounded-full bg-pink-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-100">Khan
Toul Kork</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg/6 font-semibold text-gray-900 darktext-white">
<a href="#">
<span class="absolute inset-0"></span>
This Website is Amazing and Helpful
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm/6 text-gray-600 dark:text-neutral-400"><i>"I’ve been using the GlowCare
Vitamin C Serum for a month now, and my skin looks brighter and more even-toned. It
absorbs quickly without feeling sticky, and my dark spots have visibly faded. I love
how gentle it is on my sensitive skin—no irritation at all. This serum has truly
transformed my skincare routine!" </i></p>
</div>
<div class="relative mt-8 flex items-center gap-x-4">
<img src="https://i.pinimg.com/1200x/64/6e/0a/646e0a0f4edd7c46ae177f12bd54c641.jpg" alt=""
class="size-10 rounded-full bg-gray-50" />
<div class="text-sm/6">
<p class="font-semibold text-gray-900">
<a href="#">
<span class="absolute inset-0"></span>
Pov Meas
</a>
</p>
<p class="text-gray-600"></p>
</div>
</div>
</article>
<article
class="flex max-w-xl flex-col items-start justify-between border border-gray-200 p-4 rounded-xl">
<div class="flex items-center gap-x-4 text-xs">
<time datetime="2020-03-16" class="text-gray-500">May 18, 2025</time>
<a href="#"
class="relative z-10 rounded-full bg-pink-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-100">Khan
7 Makara</a>
</div>
<div class="group relative">
<h3 class="mt-3 text-lg/6 font-semibold text-gray-900 dark:text-white">
<a href="#">
<span class="absolute inset-0"></span>
This Website is Great and Helpful for Me
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm/6 text-gray-600 dark:text-neutral-400"><i>"The RayShield Sunscreen is a
game-changer. It protects my skin from sunburns without leaving a white cast. I use
it daily and have noticed fewer sunspots already."
</i></p>
</div>
<div class="relative mt-8 flex items-center gap-x-4">
<img src="https://i.pinimg.com/736x/82/38/b1/8238b1b35ed9d1f519f07ba8c0e133a4.jpg" alt=""
class="size-10 rounded-full bg-gray-50" />
<div class="text-sm/6">
<p class="font-semibold text-gray-900">
<a href="#">
<span class="absolute inset-0"></span>
JK
</a>
</p>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- Most popular brand -->
<!-- Our work shop -->
<!-- Stay beactiful -->
<section class="bg-pink-100 py-16 dark:bg-gray-800 dark:text-white">
<div class="container mx-auto px-4 text-center fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-4 dark:text-white">Stay Beautiful</h2>
<p class="text-gray-600 mb-8 max-w-2xl mx-auto dark:text-neutral-400">Subscribe to our newsletter for the latest beauty tips,
exclusive offers, and new product launches</p>
<div class="max-w-md mx-auto">
<form class="flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Enter your email"
class="flex-1 px-4 py-3 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-500">
<button type="submit" class="btn-primary text-white px-6 py-3 rounded-full font-semibold">
Subscribe
</button>
</form>
<p class="text-sm text-gray-500 mt-3 dark:text-neutral-400">No spam, unsubscribe at any time</p>
</div>
</div>
</section>
<!-- 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 dark:text-white transition-colors"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 ">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><a href="#"><i class="fas fa-envelope mr-2 dark:text-white dark:hover:text-pink-600">
</i>info@lovecare.com</li></a>
<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>
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggleBtn = document.getElementById('theme-toggle');
const icon = document.getElementById('theme-icon');
const html = document.documentElement;
// Load saved theme
if (localStorage.getItem('theme') === 'dark') {
html.classList.add('dark');
icon?.classList.replace('fa-moon', 'fa-sun');
}
toggleBtn?.addEventListener('click', () => {
html.classList.toggle('dark');
const isDark = html.classList.contains('dark');
icon?.classList.toggle('fa-moon', !isDark);
icon?.classList.toggle('fa-sun', isDark);
localStorage.setItem('theme', isDark ? 'dark' : 'light');
});
});
</script>
</html>