-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1723 lines (1670 loc) · 131 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/grid.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<link rel="icon" type="image/png" href="https://shopee.vn/favicon.ico" />
<title>Shopee Việt Nam | Mua và Bán Trên Ứng Dụng Di Động Hoặc Website</title>
</head>
<body>
<div class="main">
<header class="header">
<div class="grid wide">
<!-- =======================NAVBAR================================ -->
<nav class="nav hide-on-tablet-mobile">
<ul class="nav__list ">
<li class="nav__item nav__item--has-qr nav__item--separate">
Vào cửa hàng trên ứng dụng
<!-- =======================QR CODE================================ -->
<div class="header__qr-code">
<img src="./assets/img/qrcode.png" alt="" class="qr-code__img">
<div class="qr-code__download">
<a href="">
<img src="./assets/img/appstore.png" alt="App Store" class="qr-code__link">
</a>
<a href="">
<img src="./assets/img/chplay.png" alt="CH Play" class="qr-code__link">
</a>
</div>
</div>
</li>
<li class="nav__item nav__item--text">
Kết nối
<a href="" class="nav__link ">
<i class="nav__icon nav__icon--white fab fa-facebook"></i>
<i class="nav__icon nav__icon--white fab fa-instagram"></i>
<i class="nav__icon nav__icon--white fab fa-tiktok"></i>
</a>
</li>
</ul>
<ul class="nav__list">
<li class="nav__item nav__item--has-notify">
<i class="nav__icon far fa-bell"></i>
Thông báo
<!-- =======================NOTIFICATION================================ -->
<div class="header__notify">
<header class="notify__header">
<h3 class="notify__heading">Thông báo mới nhận</h3>
</header>
<div class="notify__container">
<ul class="notify__list">
<li class="notify__item">
<img src="https://img.abaha.vn/photos/resized/200x120/83-1625652146-myphamohui-lgvina.png"
alt="" class="notify__img">
<div class="notify__content">
<h4 class="notify__title">Mỹ phẩm Ohui chính hãng</h4>
<p class="notify__desc">Mô tả mỹ phẩm Ohui</p>
</div>
</li>
<li class="notify__item">
<img src="https://img.abaha.vn/photos/resized/200x120/83-1625652146-myphamohui-lgvina.png"
alt="" class="notify__img">
<div class="notify__content">
<h4 class="notify__title">Mỹ phẩm Ohui chính hãng</h4>
<p class="notify__desc">Mô tả mỹ phẩm Ohui</p>
</div>
</li>
<li class="notify__item">
<img src="https://img.abaha.vn/photos/resized/200x120/83-1625652146-myphamohui-lgvina.png"
alt="" class="notify__img">
<div class="notify__content">
<h4 class="notify__title">Mỹ phẩm Ohui chính hãng</h4>
<p class="notify__desc">Mô tả mỹ phẩm Ohui</p>
</div>
</li>
<li class="notify__item">
<img src="https://img.abaha.vn/photos/resized/200x120/83-1625652146-myphamohui-lgvina.png"
alt="" class="notify__img">
<div class="notify__content">
<h4 class="notify__title">Mỹ phẩm Ohui chính hãng</h4>
<p class="notify__desc">Mô tả mỹ phẩm Ohui</p>
</div>
</li>
<li class="notify__item">
<img src="https://img.abaha.vn/photos/resized/200x120/83-1625652146-myphamohui-lgvina.png"
alt="" class="notify__img">
<div class="notify__content">
<h4 class="notify__title">Mỹ phẩm Ohui chính hãng</h4>
<p class="notify__desc">Mô tả mỹ phẩm Ohui</p>
</div>
</li>
</ul>
</div>
<footer class="notify__footer">
<button class="btn-notify">Xem tất cả</button>
</footer>
</div>
</li>
<li class="nav__item">
<i class="nav__icon fas fa-question-circle"></i>
Hỗ trợ
</li>
<li class="nav__item nav__item--separate">
<a href="./sign_up/sign_up.html" class="nav__link nav__link--bolder">Đăng kí</a>
</li>
<li class="nav__item ">
<a href="./log_in/login.html" class="nav__link nav__link--bolder">Đăng nhập</a>
</li>
</ul>
</nav>
<!-- =======================HEADER WITH SEARCH================================ -->
<div class="header-with-search">
<div class="mobile-header-search">
<i class="mobile-header-search__icon ri-search-line"></i>
</div>
<a href="./index.html" class="header__logo">
<svg viewBox="0 0 192 65" class="header__log-img">
<g fill-rule="evenodd">
<path fill="var(--white-color)"
d="M35.6717403 44.953764c-.3333497 2.7510509-2.0003116 4.9543414-4.5823845 6.0575984-1.4379707.6145919-3.36871.9463856-4.896954.8421628-2.3840266-.0911143-4.6237865-.6708937-6.6883352-1.7307424-.7375522-.3788551-1.8370513-1.1352759-2.6813095-1.8437757-.213839-.1790053-.239235-.2937577-.0977428-.4944671.0764015-.1151823.2172535-.3229831.5286218-.7791994.45158-.6616533.5079208-.7446018.5587128-.8221779.14448-.2217688.3792333-.2411091.6107855-.0588804.0243289.0189105.0243289.0189105.0426824.0333083.0379873.0294402.0379873.0294402.1276204.0990653.0907002.0706996.14448.1123887.166248.1287205 2.2265285 1.7438508 4.8196989 2.7495466 7.4376251 2.8501162 3.6423042-.0496401 6.2615109-1.6873341 6.7308041-4.2020035.5160305-2.7675977-1.6565047-5.1582742-5.9070334-6.4908212-1.329344-.4166762-4.6895175-1.7616869-5.3090528-2.1250697-2.9094471-1.7071043-4.2697358-3.9430584-4.0763845-6.7048539.296216-3.8283059 3.8501677-6.6835796 8.340785-6.702705 2.0082079-.004083 4.0121475.4132378 5.937338 1.2244562.6816382.2873109 1.8987274.9496089 2.3189359 1.2633517.2420093.1777159.2898136.384872.1510957.60836-.0774686.12958-.2055158.3350171-.4754821.7632974l-.0029878.0047276c-.3553311.5640922-.3664286.5817134-.447952.7136572-.140852.2144625-.3064598.2344475-.5604202.0732783-2.0600669-1.3839063-4.3437898-2.0801572-6.8554368-2.130442-3.126914.061889-5.4706057 1.9228561-5.6246892 4.4579402-.0409751 2.2896772 1.676352 3.9613243 5.3858811 5.2358503 7.529819 2.4196871 10.4113092 5.25648 9.869029 9.7292478M26.3725216 5.42669372c4.9022893 0 8.8982174 4.65220288 9.0851664 10.47578358H17.2875686c.186949-5.8235807 4.1828771-10.47578358 9.084953-10.47578358m25.370857 11.57065968c0-.6047069-.4870064-1.0948761-1.0875481-1.0948761h-11.77736c-.28896-7.68927544-5.7774923-13.82058185-12.5059489-13.82058185-6.7282432 0-12.2167755 6.13130641-12.5057355 13.82058185l-11.79421958.0002149c-.59136492.0107446-1.06748731.4968309-1.06748731 1.0946612 0 .0285807.00106706.0569465.00320118.0848825H.99995732l1.6812605 37.0613963c.00021341.1031483.00405483.2071562.01173767.3118087.00170729.0236381.003628.0470614.00554871.0704847l.00362801.0782207.00405483.004083c.25545428 2.5789222 2.12707837 4.6560709 4.67201764 4.7519129l.00576212.0055872h37.4122078c.0177132.0002149.0354264.0004298.0531396.0004298.0177132 0 .0354264-.0002149.0531396-.0004298h.0796027l.0017073-.0015043c2.589329-.0706995 4.6867431-2.1768587 4.9082648-4.787585l.0012805-.0012893.0017073-.0350275c.0021341-.0275062.0040548-.0547975.0057621-.0823037.0040548-.065757.0068292-.1312992.0078963-.1964115l1.8344904-37.207738h-.0012805c.001067-.0186956.0014939-.0376062.0014939-.0565167M176.465457 41.1518926c.720839-2.3512494 2.900423-3.9186779 5.443734-3.9186779 2.427686 0 4.739107 1.6486899 5.537598 3.9141989l.054826.1556978h-11.082664l.046506-.1512188zm13.50267 3.4063683c.014933.0006399.014933.0006399.036906.0008531.021973-.0002132.021973-.0002132.044372-.0008531.53055-.0243144.950595-.4766911.950595-1.0271786 0-.0266606-.000853-.0496953-.00256-.0865936.000427-.0068251.000427-.020262.000427-.0635588 0-5.1926268-4.070748-9.4007319-9.09145-9.4007319-5.020488 0-9.091235 4.2081051-9.091235 9.4007319 0 .3871116.022399.7731567.067838 1.1568557l.00256.0204753.01408.1013102c.250022 1.8683731 1.047233 3.5831812 2.306302 4.9708108-.00064-.0006399.00064.0006399.007253.0078915 1.396026 1.536289 3.291455 2.5833031 5.393601 2.9748936l.02752.0053321v-.0027727l.13653.0228215c.070186.0119439.144211.0236746.243409.039031 2.766879.332724 5.221231-.0661182 7.299484-1.1127057.511777-.2578611.971928-.5423827 1.37064-.8429007.128211-.0968312.243622-.1904632.34346-.2781231.051412-.0452164.092372-.083181.114131-.1051493.468898-.4830897.498124-.6543572.215249-1.0954297-.31146-.4956734-.586228-.9179769-.821744-1.2675504-.082345-.1224254-.154023-.2267215-.214396-.3133151-.033279-.0475624-.033279-.0475624-.054399-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.00256-.0038391c-.256208-.3188605-.431565-.3480805-.715933-.0970445-.030292.0268739-.131624.1051493-.14997.1245582-1.999321 1.775381-4.729508 2.3465571-7.455854 1.7760208-.507724-.1362888-.982595-.3094759-1.419919-.5184948-1.708127-.8565509-2.918343-2.3826022-3.267563-4.1490253l-.02752-.1394881h13.754612zM154.831964 41.1518926c.720831-2.3512494 2.900389-3.9186779 5.44367-3.9186779 2.427657 0 4.739052 1.6486899 5.537747 3.9141989l.054612.1556978h-11.082534l.046505-.1512188zm13.502512 3.4063683c.015146.0006399.015146.0006399.037118.0008531.02176-.0002132.02176-.0002132.044159-.0008531.530543-.0243144.950584-.4766911.950584-1.0271786 0-.0266606-.000854-.0496953-.00256-.0865936.000426-.0068251.000426-.020262.000426-.0635588 0-5.1926268-4.070699-9.4007319-9.091342-9.4007319-5.020217 0-9.091343 4.2081051-9.091343 9.4007319 0 .3871116.022826.7731567.068051 1.1568557l.00256.0204753.01408.1013102c.250019 1.8683731 1.04722 3.5831812 2.306274 4.9708108-.00064-.0006399.00064.0006399.007254.0078915 1.396009 1.536289 3.291417 2.5833031 5.393538 2.9748936l.027519.0053321v-.0027727l.136529.0228215c.070184.0119439.144209.0236746.243619.039031 2.766847.332724 5.22117-.0661182 7.299185-1.1127057.511771-.2578611.971917-.5423827 1.370624-.8429007.128209-.0968312.243619-.1904632.343456-.2781231.051412-.0452164.09237-.083181.11413-.1051493.468892-.4830897.498118-.6543572.215246-1.0954297-.311457-.4956734-.586221-.9179769-.821734-1.2675504-.082344-.1224254-.154022-.2267215-.21418-.3133151-.033492-.0475624-.033492-.0475624-.054612-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.002346-.0038391c-.256419-.3188605-.431774-.3480805-.716138-.0970445-.030292.0268739-.131623.1051493-.149969.1245582-1.999084 1.775381-4.729452 2.3465571-7.455767 1.7760208-.507717-.1362888-.982582-.3094759-1.419902-.5184948-1.708107-.8565509-2.918095-2.3826022-3.267311-4.1490253l-.027733-.1394881h13.754451zM138.32144123 49.7357905c-3.38129629 0-6.14681004-2.6808521-6.23169343-6.04042014v-.31621743c.08401943-3.35418649 2.85039714-6.03546919 6.23169343-6.03546919 3.44242097 0 6.23320537 2.7740599 6.23320537 6.1960534 0 3.42199346-2.7907844 6.19605336-6.23320537 6.19605336m.00172791-15.67913203c-2.21776751 0-4.33682838.7553485-6.03989586 2.140764l-.19352548.1573553V34.6208558c0-.4623792-.0993546-.56419733-.56740117-.56419733h-2.17651376c-.47409424 0-.56761716.09428403-.56761716.56419733v27.6400724c0 .4539841.10583425.5641973.56761716.5641973h2.17651376c.46351081 0 .56740117-.1078454.56740117-.5641973V50.734168l.19352548.1573553c1.70328347 1.3856307 3.82234434 2.1409792 6.03989586 2.1409792 5.27140956 0 9.54473746-4.2479474 9.54473746-9.48802964 0-5.239867-4.2733279-9.48781439-9.54473746-9.48781439M115.907646 49.5240292c-3.449458 0-6.245805-2.7496948-6.245805-6.1425854 0-3.3928907 2.79656-6.1427988 6.245805-6.1427988 3.448821 0 6.24538 2.7499081 6.24538 6.1427988 0 3.3926772-2.796346 6.1425854-6.24538 6.1425854m.001914-15.5438312c-5.28187 0-9.563025 4.2112903-9.563025 9.4059406 0 5.1944369 4.281155 9.4059406 9.563025 9.4059406 5.281657 0 9.562387-4.2115037 9.562387-9.4059406 0-5.1946503-4.280517-9.4059406-9.562387-9.4059406M94.5919049 34.1890939c-1.9281307 0-3.7938902.6198995-5.3417715 1.7656047l-.188189.1393105V23.2574169c0-.4254677-.1395825-.5643476-.5649971-.5643476h-2.2782698c-.4600414 0-.5652122.1100273-.5652122.5643476v29.2834155c0 .443339.1135587.5647782.5652122.5647782h2.2782698c.4226187 0 .5649971-.1457701.5649971-.5647782v-9.5648406c.023658-3.011002 2.4931278-5.4412923 5.5299605-5.4412923 3.0445753 0 5.516841 2.4421328 5.5297454 5.4630394v9.5430935c0 .4844647.0806524.5645628.5652122.5645628h2.2726775c.481764 0 .565212-.0824666.565212-.5645628v-9.5710848c-.018066-4.8280677-4.0440197-8.7806537-8.9328471-8.7806537M62.8459442 47.7938061l-.0053397.0081519c-.3248668.4921188-.4609221.6991347-.5369593.8179812-.2560916.3812097-.224267.551113.1668119.8816949.91266.7358184 2.0858968 1.508535 2.8774525 1.8955369 2.2023021 1.076912 4.5810275 1.646045 7.1017886 1.6975309 1.6283921.0821628 3.6734936-.3050536 5.1963734-.9842376 2.7569891-1.2298679 4.5131066-3.6269626 4.8208863-6.5794607.4985136-4.7841067-2.6143125-7.7747902-10.6321784-10.1849709l-.0021359-.0006435c-3.7356476-1.2047686-5.4904836-2.8064071-5.4911243-5.0426086.1099976-2.4715346 2.4015793-4.3179454 5.4932602-4.4331449 2.4904317.0062212 4.6923065.6675996 6.8557356 2.0598624.4562232.2767364.666607.2256796.9733188-.172263.035242-.0587797.1332787-.2012238.543367-.790093l.0012815-.0019308c.3829626-.5500403.5089793-.7336731.5403767-.7879478.258441-.4863266.2214903-.6738208-.244985-1.0046173-.459427-.3290803-1.7535544-1.0024722-2.4936356-1.2978721-2.0583439-.8211991-4.1863175-1.2199998-6.3042524-1.1788111-4.8198184.1046878-8.578747 3.2393171-8.8265087 7.3515337-.1572005 2.9703036 1.350301 5.3588174 4.5000778 7.124567.8829712.4661613 4.1115618 1.6865902 5.6184225 2.1278667 4.2847814 1.2547527 6.5186944 3.5630343 6.0571315 6.2864205-.4192725 2.4743234-3.0117991 4.1199394-6.6498372 4.2325647-2.6382344-.0549182-5.2963324-1.0217793-7.6043603-2.7562084-.0115337-.0083664-.0700567-.0519149-.1779185-.1323615-.1516472-.1130543-.1516472-.1130543-.1742875-.1300017-.4705335-.3247898-.7473431-.2977598-1.0346184.1302162-.0346012.0529875-.3919333.5963776-.5681431.8632459">
</path>
</g>
</svg>
</a>
<div class="header__search hide-on-mobile">
<div class="header__search-input-wrap">
<input type="text" class="header__search-input" placeholder="Tìm kiếm sản phẩm">
<!-- =======================SEARCH HISTORY================================ -->
<div class="header__search-history">
<h3 class="header__search-history-heading">
Lịch sử tìm kiếm
</h3>
<ul class="header__search-history-list">
<li class="header__search-history-item">
<a href="">Kem dưỡng da</a>
</li>
<li class="header__search-history-item">
<a href="">Kem chống nắng</a>
</li>
<li class="header__search-history-item">
<a href="">Áo bảo hộ</a>
</li>
<li class="header__search-history-item">
<a href="">Serum dưỡng ẩm</a>
</li>
</ul>
</div>
</div>
<div class="header__search-select">
<span class="header__search-select-label">Trong Shop</span>
<i class="header__search-select-icon fas fa-angle-down"></i>
<ul class="header__search-option">
<li class="header__search-option-item header__search-option-item--active">
<span>Trong Shop</span>
<i class="ri-check-line"></i>
</li>
<li class="header__search-option-item">
<span>Ngoài Shop</span>
<i class="ri-check-line"></i>
</li>
<li class="header__search-option-item">
<span>Ko Shop</span>
<i class="ri-check-line"></i>
</li>
</ul>
</div>
<button class="header__search-btn">
<i class="header__search-btn-icon ri-search-line"></i>
</button>
</div>
<div class="header__cart">
<a class="header__cart-link" href="./log_in/login.html">
<i class="header__cart-icon ri-shopping-cart-2-line"></i>
<span class="header__cart-quantity">3</span>
</a>
<div class="header__cart-list ">
<!-- header__cart--no-cart -->
<!-- =======================NO CART================================ -->
<img src="./assets/img/no-cart.png" alt="" class="header__cart--no-cart-img">
<p class="header__cart--no-cart-msg">Chưa có sản phẩm</p>
<!-- =======================HAS CART================================ -->
<h3 class="header__cart-heading">Sản phẩm đã thêm</h3>
<div class="header__cart-list-item">
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham1.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Tinh chất vàng tái sinh Ohui Tinh chất vàng
</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
1.300.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham2.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Set tái sinh Ohui Thefirst mini 7 </h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
900.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham3.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Serum Ohui The First Genitur</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
4.500.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham1.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Tinh chất vàng tái sinh Ohui</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
1.300.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham2.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Set tái sinh Ohui Thefirst mini 7 </h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
900.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham3.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Serum Ohui The First Genitur</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
4.500.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham3.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Serum Ohui The First Genitur</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
4.500.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
<div class="header__cart-item">
<img src="./assets/img/cart-img/sanpham3.png" alt="" class="header__cart-item-img">
<div class="header__cart-item-content">
<h4 class="header__cart-item-title">Serum Ohui The First Genitur</h4>
<div class="header__cart-item-right">
<p class="header__cart-item-price">
4.500.000đ
<span class="header__cart-item-quantity"> x 1</span>
</p>
<button class="btn-delete">Xóa</button>
</div>
</div>
</div>
</div>
<footer class="header__cart-footer">
<p class="header__cart-sum">
<span>Tổng số tiền</span>
<span>6.700.000đ</span>
</p>
<button class="btn-see">Xem giỏ hàng</button>
</footer>
</div>
</div>
</div>
</div>
<ul class="header__sort-bar">
<li class="sort-bar__item sort-bar__item--has-separate"><a href="" class="sort-bar__link">Liên Quan</a>
</li>
<li class="sort-bar__item sort-bar__item--has-separate"><a href="" class="sort-bar__link">Mới Nhất</a>
</li>
<li class="sort-bar__item sort-bar__item--has-separate"><a href="" class="sort-bar__link">Bán Chạy</a>
</li>
<li class="sort-bar__item"><a href="" class="sort-bar__link">Giá</a></li>
</ul>
</header>
<div class="app__container">
<div class="grid wide">
<div class="row">
<div class="col l-2 m-0 c-0">
<nav class="category">
<h3 class="category__heading">
<i class="category__icon-heading fas fa-list"></i>
Danh Mục
</h3>
<ul class="category-list">
<li class="category-item">
<a href="" class="category-item__link category-item--active">
<i class="category-item-icon fas fa-caret-right"></i>
Sản phẩm
</a>
</li>
<li class="category-item">
<a href="" class="category-item__link ">
<i class="category-item-icon fas fa-caret-right"></i>
clinique</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
kiehls</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
thực phẩm chức năng</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
xịt khoáng</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
chăm sóc cơ thể</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
serum/đặc trị</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
son</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
kem chống nắng</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
kem dưỡng</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
toner/ lotion</a>
</li>
<li class="category-item">
<a href="" class="category-item__link">
<i class="category-item-icon fas fa-caret-right"></i>
tẩy trang</a>
</li>
</ul>
</nav>
</div>
<nav class="mobile-category">
<ul class="mobile-category__list">
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích
</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Dụng cụ và thiết bị tiện tích</a>
</li>
</ul>
</nav>
<div class="col l-10 m-12 c-12">
<div class="home-filter hide-on-tablet-mobile">
<span class="home-filter__label">Sắp xếp theo</span>
<button class="btn btn--active">Phổ Biến</button>
<button class="btn">Mới Nhất</button>
<button class="btn">Bán Chạy</button>
<div class="select-input">
<span class="select-input__label">Giá</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="home-filter__page">
<span class="home-filter__page-current">1</span>
/
<span class="home-filter__page-total">11</span>
<div class="home-filter__page-control">
<i class="fas fa-chevron-left home-filter__page-control--disabled"></i>
<i class="fas fa-chevron-right"></i>
</div>
</div>
</div>
<div class="home-product">
<div class="row">
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/332ea202be7ac6e674e9b8e4d6981a89_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>33%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Bông tẩy trang cho mẹ và
bé Bông tẩy trang cho mẹ và Bông tẩy trang cho mẹ và</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>240.000 - <span>₫</span>290.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 1,3k</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/f2b6f3f3d35cb34be90fc3395031ba90_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>17%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Tẩy trang bioderma</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div
class="home-product-item__sale-ticket home-product-item__sale-ticket--hide">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>350.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<span
class="home-product-item__rating-icon .home-product-item__rating-icon--liked">
<i class="home-product-item__rating-icon-solid far fa-heart"></i>
<i class="home-product-item__rating-icon-fill fas fa-heart"></i>
</span>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 1,5k</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/26ca2bc4c168c8a585deab0e7fc73389_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>13%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Dầu gội đầu Tigi hàng đầu thế giới</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>290.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 22k</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/34000550d32d6b8bf3ec352cec1b491f_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>40%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Sữa rửa mặt laroche posay 400ml</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>390.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 1k</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/6a5c2764f749f335a1d862d91641bb7c_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>40%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Lăn nách đá khoáng Nhật Bản Soft Stone
Crystal Stone/p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>240.000 - <span>₫</span>290.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 667</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/96a09b60d84de6377e52605b068c7d7b_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>100%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Dung dịch vệ sinh ziaja 500ml</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>0</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 6k</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/bafcc583286288fc02c6caa473d4b31c_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>40%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Nước hoa hông Mamonde bản mới</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"
class=" _2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="rotate(180) translate(-3 -15)"
stroke="currentColor" fill="#f69113"></path>
</svg>
</div>
<span class="home-product-item__gift-buy">Mua để nhận quà</span>
</div>
<!-- PRICE -->
<div class="home-product-item__price">
<p><span>₫</span>255.000</p>
</div>
<!-- RATING -->
<div class="home-product-item__rating">
<i class="home-product-item__rating-icon far fa-heart"></i>
<div class="home-product-item__rate">
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
<i class="home-product-item__rate-icon fas fa-star"></i>
</div>
<p>Đã bán 687</p>
</div>
<div class="home-product-item__province">
Hưng Yên
</div>
</div>
</div>
</div>
<!-- ===========================================END PRODUCT ITEM================================================ -->
<!-- ===========================================BEGIN PRODUCT ITEM================================================ -->
<div class="col l-2-4 m-6 c-6">
<div class="home-product-item">
<!-- IMAGE -->
<div class="home-product-item__img">
<img class="home-product-item__img-bg"
src="https://cf.shopee.vn/file/e6e56c8232c0b6c2bc16adb7fa33aa43_tn"
alt="">
<div class="home-product-item__favorite">
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale">
<span>20%</span>
<span>GIẢM</span>
</div>
<div class="home-product-item__freeship">
<img src="https://cf.shopee.vn/file/a6ebecdf7761f13314a8f089a24d5497">
</div>
</div>
<!-- CONTENT -->
<div class="home-product-item__content">
<p class="home-product-item__title">Bàn chải điện</p>
<!-- GIFT -->
<div class="home-product-item__gift">
<div class="home-product-item__sale-ticket">
<svg style="left: 0; color: rgb(246, 145, 19);"
class="_2DRZW _2xFcL" viewBox="-0.5 -0.5 4 16">
<path
d="M4 0h-3q-1 0 -1 1a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3v0.333a1.2 1.5 0 0 1 0 3q0 1 1 1h3"
stroke-width="1" transform="" stroke="currentColor"
fill="#f69113">
</path>
</svg>
<span>10% Giảm</span>
<svg style="left: 0; color: rgb(246, 145, 19);"