-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1627 lines (1604 loc) · 119 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">
<!-- Shopee shop for inspect: kayy0812.github.io/shopee/# -->
<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="icon" type="image/x-icon" href="https://brandlogos.net/wp-content/uploads/2021/10/shopee-logo-1.png">
<title>Otaku Space - An online Otaku book shop</title>
<!--Reset CSS -->
<link rel=" stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
integrity="sha512-oHDEc8Xed4hiW6CxD7qjbnI+B07vDdX7hEPTvn9pSZO1bcRqHp8mj9pyr+8RVC2GmtEfI2Bi9Ke9Ass0as+zpg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Link Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<!-- End Link Font -->
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.2/css/all.css">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-solid.css">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-regular.css">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.2/css/sharp-light.css">
<link rel="stylesheet" href="./assets/css/grid.css">
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<!-- <link rel="stylesheet" href="./assets/fonts/fontawesome-free-6.1.1-web/fontawesome-free-6.1.1-web/css/all.css">
<link rel="stylesheet" href="./assets/fonts/fontawesome-free-6.1.1-web/fontawesome-free-6.1.1-web/css/all.min.css"> -->
</head>
<body>
<div id="toast">
<!-- <div class="toast toast--buynow">
<div class="toast--content">
<div class="toast--icon">
<i class="fa-sharp fa-solid fa-shield-check"></i>
</div>
<div class="toast--body">
Thanh toán thành công
</div>
<div class="toast--close">
<i class="fa-regular fa-circle-xmark"></i>
</div>
</div>
<div class="toast--runtime"></div>
</div> -->
</div>
<div class="app">
<!-- Header: start -->
<header class="header">
<div class="wide grid">
<nav class="navbar hide-on-mobile-tablet">
<ul class="navbar-list">
<li class="navbar-list__item navbar-list__item--separate">
<!-- QR Code -->
<div class="header__qr">
<img src="./assets/img/qr_code.png" alt="qr_code" class="header__qe-img">
<div class="header__qr-apps">
<a href="" class="header__qr-link">
<img src="./assets/img/google_play.png" alt="google_play"
class="header__qr-dowload-img">
</a>
<a href="" class="header__qr-link">
<img src="./assets/img/app_store.png" alt="app store"
class="header__qr-dowload-img">
</a>
</div>
</div>
<!-- End QR Code -->
Vào cửa hàng trên ứng dụng Shopee
</li>
<li class="navbar-list__item">
<span class="navbar-list-title--nopointer">Kết nối</span>
<a href="" class="navbar__iconlink"><i class="fa-brands fa-facebook"></i></i></a>
<a href="" class="navbar__iconlink"><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
<ul class="navbar-list">
<li class="navbar-list__item notify">
<a href="" class="item__link">
<a href="" class="navbar__iconlink"><i class="fa-regular fa-bell"></i></a>
Thông báo
</a>
<div class="header__notify">
<header class="header__notify-header">
<h3>Thông báo mới nhận</h3>
</header>
<ul class="header__notify-list">
<li class="header__notify-item header__notify-item--viewed">
<a href="header" class="header__notify-link">
<img src="https://product.hstatic.net/200000343865/product/7_ban-pho-thong_poster_6933b5b6343a4c828d614ae9bec694a5_large.jpg"
alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name">Hội chứng tuổi thanh xuân - Tập 7 -
bản giới hạn - poster</span>
<span class="header__notify-discript">Series cuối cùng được chuyển thể
lên Anime</span>
</div>
</a>
</li>
<li class="header__notify-item">
<a href="header" class="header__notify-link">
<img src="https://product.hstatic.net/200000343865/product/thien-su-nha-ben_pho-thong_poster_355243c434124939b5921cb29f88a051_large.jpg"
alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name">Thiên sứ nhà bên - tập 3 - bản giới
hạn - poster</span>
<span class="header__notify-discript">Câu chuyện tình ngọt ngào
với cô gái nhà bên tuy lạnh lùng mà cũng đáng yêu.</span>
</div>
</a>
</li>
<li class="header__notify-item">
<a href="header" class="header__notify-link">
<img src="https://vn-live-02.slatic.net/p/06399e99f48f6c77ba6b376a3305beaa.jpg"
alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name">Thiên sứ nhà bên - tập 1 - bản giới
hạn</span>
<span class="header__notify-discript">Tác phẩm nằm top 10 Kono Light
novel ga Sugoi năm 2021.</span>
</div>
</a>
</li>
<li class="header__notify-item">
<a href="header" class="header__notify-link">
<img src="https://cf.shopee.vn/file/798fc4169d4000602146611d0578e04e" alt=""
class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name">NHÂN VẬT HẠ CẤP TOMOZAKI - TẬP 1 - BẢN
GIỚI HẠN </span>
<span class="header__notify-discript">Tặng kèm 01 thẻ Normal + 01 thẻ
Rare + 01 Kẹp Sách</span>
</div>
</a>
</li>
<li class="header__notify-item">
<a href="header" class="header__notify-link">
<img src="" alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name"></span>
<span class="header__notify-discript"></span>
</div>
</a>
</li>
</ul>
<footer class="footer__notify">
<h3>Xem tất cả</h3>
</footer>
</div>
</li>
<li class="navbar-list__item">
<a href="" class="item__link">
<a href="" class="navbar__iconlink hover__effect"><i
class="fa-regular fa-circle-question"></i></a>
Trợ giúp
</a>
</li>
<!-- <li class="navbar-list__item navbar-list__item--bold navbar-list__item--separate">Đăng ký</li>
<li class="navbar-list__item navbar-list__item--bold">Đăng nhập</li> -->
<li class="navbar-list__item navbar-user">
<img src="https://i.pinimg.com/originals/28/af/08/28af086c0505916ed41e9ca42850e635.jpg"
alt="" class="navbar-user__avatar">
<span class="navbar-user__name">Thành Dũng</span>
<!-- User Account Menu -->
<ul class="navbar__menu">
<li class="navbar__menu-item">
<a href="./user.html">
Tài khoản của tôi
</a>
</li>
<li class="navbar__menu-item">
<a href="">
Địa chỉ của tôi
</a>
</li>
<li class="navbar__menu-item">
<a href="">
Đơn mua
</a>
</li>
<li class="navbar__menu-item menu-item--seperate">
<a href="no_logIn.html" class="logOut">
Đăng xuất
</a>
</li>
</ul>
</li>
</ul>
</nav>
<!-- Heade Width Search -->
<div class="header-width-search">
<label for="mobile-checkbox" class="header__mobile-search">
<i class="fa-solid fa-magnifying-glass header__mobile-search-icon"></i>
</label>
<div class="header__logo hide-on-tablet">
<a href="#" class="header__logo-link">
<svg class="header__logo-img" viewBox="0 0 192 65">
<g fill-rule="evenodd">
<path fill="#fff"
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>
<input type="checkbox" hidden id="mobile-checkbox">
<div class="header-search__search">
<div class="header__search-input-wrap">
<input type="text" class="header-search__search-input"
placeholder="Nhập để tìm kiếm sản phẩm">
<!-- Search History -->
<div class="header__search-history">
<h3 class="history-heading">Lịch sử tìm kiếm</h3>
<ul class="history-search">
<li class="history-item"><a href="https://google.com">Thiên sứ nhà bên tập 1</a>
</li>
<li class="history-item"><a href="https://google.com">Chuyện tình thanh xuân của
tôi</a></li>
</ul>
</div>
</div>
<div class="header-search__search-select">
<span class="header-search__search-select-label">Trong shop</span>
<i class="fa-solid fa-chevron-down header-search__search-select-icon"></i>
<ul class="header-option">
<li class="header-option__item header-option__item--active">
<span>Trong shop</span>
<i class="fa-solid fa-check"></i>
</li>
<li class="header-option__item">
<span>Ngoài shop</span>
<i class="fa-solid fa-check"></i>
</li>
</ul>
</div>
<button class="header-search__search-btn">
<i class="header-search__search-btn-icon fa-solid fa-magnifying-glass"></i>
</button>
</div>
<!-- Shopping Cart Layout -->
<div class="header-search__cart">
<div class="cart-wrap">
<i class="fa-solid fa-cart-shopping header-search__cart-icon"></i>
<span class="cart-notice"></span>
<!-- No-cart: add class header__cart-list--no-cart -->
<div class="header__cart-list">
<img src="./assets/img/no-cart.png" alt="" class="header__cart--no-cart--img">
<span class="header__cart-list--no-cart-msg">Chưa có sản phẩm</span>
<h4 class="cart__heading">Sản phẩm đã thêm</h4>
<ul class="cart__item-list">
<!-- Cart item -->
<!-- Khi sản phẩm có tên dài có thể add class long-name vào thẻ chứa sản phẩm -->
<li class="cart__item">
<img src="https://vn-live-02.slatic.net/p/06399e99f48f6c77ba6b376a3305beaa.jpg"
alt="" class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Thiên sứ nhà bên tập 1</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">180.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">2</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Light Novel</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://product.hstatic.net/200000343865/product/7_ban-pho-thong_poster_6933b5b6343a4c828d614ae9bec694a5_large.jpg"
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Hội chứng tuổi thanh xuân tập 7</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">270.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">3</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Light Novel</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://cf.shopee.vn/file/512cde2f496fc83e8278a76b5bc36876_tn"
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Nhà có 5 nàng dâu Tập 13</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">60.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">2</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Manga Nhật</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://cf.shopee.vn/file/8f457932ad0d02d169197ab224b739fc_tn"
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Figure Mai Sakurajima 80cm</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">580.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">1</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Figure - Đồ chơi</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://cf.shopee.vn/file/39be19cc80a4ed52a8a38321ed50b711_tn"
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Figure K-On! Mio Akiyama</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">450.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">2</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Figure - Đồ chơi</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://cf.shopee.vn/file/798fc4169d4000602146611d0578e04e" alt=""
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Nhân vật hạ cấp Tomozaki tập 1</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">500.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">5</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Light Novel</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
<li class="cart__item">
<img src="https://product.hstatic.net/200000343865/product/thien-su-nha-ben_pho-thong_poster_355243c434124939b5921cb29f88a051_large.jpg"
class="cart__item--img">
<div class="cart__item--info">
<div class="cart__item-head">
<h5 class="cart__item-name">Thiên sứ nhà bên tập 3</h5>
<div class="cart__item-price-wrap">
<span class="cart__item-price">450.000đ</span>
<span class="cart__item-multiply">x</span>
<span class="cart__item-quantity">5</span>
</div>
</div>
<div class="cart__item-body">
<span class="cart__item-descript">
Phân loại: <span class="product-category">Light Novel</span>
</span>
<span class="cart__item-remove">Xóa</span>
</div>
</div>
</li>
</ul>
<a class="btn btn--primary header-cart-btn" href="">Mua ngay</a>
</div>
</div>
</div>
<!-- Menu On Mobile -->
<div class="navbar-list__item navbar-user hide">
<img src="https://i.pinimg.com/originals/28/af/08/28af086c0505916ed41e9ca42850e635.jpg" alt=""
class="navbar-user__avatar">
<!-- User Account Menu -->
<ul class="navbar__menu">
<li class="navbar__menu-item">
<a href="">
Tài khoản của tôi
</a>
</li>
<li class="navbar__menu-item">
<a href="">
Địa chỉ của tôi
</a>
</li>
<li class="navbar__menu-item">
<a href="">
Đơn mua
</a>
</li>
<li class="navbar__menu-item menu-item--seperate">
<a href="no_logIn.html">
Đăng xuất
</a>
</li>
</ul>
</div>
</div>
</div>
<ul class="header__sort-bar">
<li class="header__sort-item"><a href="" class="header__sort_link">Liên quan</a></li>
<li class="header__sort-item"><a href="" class="header__sort_link header__sort-link--active">Mới
nhất</a></li>
<li class="header__sort-item"><a href="" class="header__sort_link">Bán chạy</a></li>
<li class="header__sort-item"><a href="" class="header__sort_link">Giá</a></li>
</ul>
</header>
<!-- Header: end -->
<!-- Container: start -->
<div class="app__container">
<div class="wide grid">
<div class="row contain-push sm-gutter">
<div class="col l-2 c-0 m-0">
<nav class="category">
<h3 class="category__heading">
<i class="fa-solid fa-list"></i>
Danh Mục
</h3>
<ul class="category-list">
<li class="category-item category-item--active">
<a href="#" class="category-item__link">Tất Cả</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Light Novel</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Manga Nhật</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Tiểu Thuyết</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Figure - Đồ chơi</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Văn Phòng Phẩm</a>
</li>
</ul>
</nav>
</div>
<div class="col l-10 c-12 m-12">
<div class="home-filter hide-on-mobile-tablet">
<span class="home-filter__label">Sắp xếp theo</span>
<button class="btn btn--normal home-filter__btn">Phổ biến</button>
<button class="btn btn--primary home-filter__btn">Mới nhất</button>
<button class="btn btn--normal home-filter__btn">Bán chạy</button>
<div class="select-input">
<span class="select-input__label">Giá</span>
<i class="fa-solid fa-chevron-down select-input__icon"></i>
<!-- List Option -->
<ul class="select-input__list">
<li class="select-input__item">
<a href="#" class="select-input__link low-price">Giá thấp đến cao</a>
</li>
<li class="select-input__item">
<a href="#" class="select-input__link high-price">Giá cao đến thấp</a>
</li>
</ul>
</div>
<div class="home-filter__page">
<span class="home-filter__page-num">
<span class="home-filter__page-current">1</span>/14
</span>
<div class="home-filter__page-control">
<a href="" class="home-filter__page-btn disabled-btn">
<i class="fa-solid fa-chevron-left home-filter__page-icon"></i>
</a>
<a href="" class="home-filter__page-btn">
<i class="fa-solid fa-chevron-right home-filter__page-icon"></i>
</a>
</div>
</div>
</div>
<!-- Mobile Navbar Category -->
<nav class="mobile-category">
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Light Novel</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Manga Nhật</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Figure Nhật chính hãng</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Văn Phòng Phẩm</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Tiểu Thuyết - Văn Học</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Đồ Dùng Học Tập</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Bàn phím cơ Akko</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Đồng hồ thông minh</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Postcard - Artbook chính hãng</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Pad chuột theo yêu cầu</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Tai nghe bluetooth</a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Bàn phím cơ Akko có Led</a>
</li>
</nav>
<!-- App Product -->
<div class="home-product">
<div class="row sm-gutter">
<div class="col l-2-4 c-6 m-4" productType="Văn Phòng Phẩm">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/50d88e26f112646c7add7ff75f584432_tn);">
</div>
<h4 class="home-product-item__name">
Truyện - Thiên sứ nhà bên tập 3 (Bản Giới Hạn)
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">120.000đ</span>
<span class="home-prodct-item__price--new">96.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">30 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Kim Đồng</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">20%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Tiểu Thuyết">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/19282624bb5b6233e1eb5d882a1b041a_tn);">
</div>
<h4 class="home-product-item__name">
Sách - Light Novel Chuyện tình thanh xuân bi hài của tôi quả nhiên là sai
lầm lẻ 1-10.5
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">130.000đ</span>
<span class="home-prodct-item__price--new">100.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">39 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Kim Đồng</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">20%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Light Novel">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/ba0f726d881d9f650309131bb05d51fe_tn);">
</div>
<h4 class="home-product-item__name">
Sách Hội Chứng Tuổi Thanh Xuân - Tập 1
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">105.000đ</span>
<span class="home-prodct-item__price--new">95.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">99+ đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Kim Đồng</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">5%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Manga Nhật">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/3c1b2d78d167cb69822f908323610d92_tn);">
</div>
<h4 class="home-product-item__name">
Sách - Postcard Book Nhà Có 5 Nàng Dâu Chính Hãng Từ Nhật
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">500.000đ</span>
<span class="home-prodct-item__price--new">450.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">5 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Tokyo</span>
<span class="home-product-item__name-city">Nhật Bản</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Manga Nhật">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/201303282b536c7ba87efe13e27aa1e8_tn);">
</div>
<h4 class="home-product-item__name">
Truyện - Nhân Vật Hạ Cấp Tomozaki - Tập 3 (Bản Giới Hạn)
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">111.000đ</span>
<span class="home-prodct-item__price--new">90.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">280 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Kim Đồng</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">15%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Light Novel">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/2b351532041cb08eb2337e918f60777a_tn);">
</div>
<h4 class="home-product-item__name">
Sách Thần Chết Làm Thêm 300 Yên/Giờ
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">94.000đ</span>
<span class="home-prodct-item__price--new">75.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">99+ đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Thái Hà</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">20%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Tiểu Thuyết">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/c9951212162b35e10a8fbf5dce170816_tn);">
</div>
<h4 class="home-product-item__name">
Sách - Khi Bình Minh Tới Tớ Sẽ Đến Gặp Cậu Đầu Tiên
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">129.000đ</span>
<span class="home-prodct-item__price--new">96.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">150 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">AZ Books</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">25%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Văn Phòng Phẩm">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/4f533ed35a1588e9cb1d9d43a714fc36_tn);">
</div>
<h4 class="home-product-item__name">
( Artbook ) Saekano - Saenai Kanojo No Sodatekata - FLAT ( Gốc Nhật )
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">950.000đ</span>
<span class="home-prodct-item__price--new">870.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">15 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Hokkaido</span>
<span class="home-product-item__name-city">Nhật Bản</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">15%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Figure - Đồ chơi">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/9f486b740d4e4f24639fed732b3b1608_tn);">
</div>
<h4 class="home-product-item__name">
Sách - Light Novel 5 centimet trên giây - 5cm/s - IPM
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">60.000đ</span>
<span class="home-prodct-item__price--new">42.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">350 đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">IPM</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">18%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Light Novel">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/270e91991045c286ff03090f21366d5e_tn);">
</div>
<h4 class="home-product-item__name">
Sách Đứa con của thời tiết - Shinkai Makoto - Light Novel - IPM
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">100.000đ</span>
<span class="home-prodct-item__price--new">85.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star"></i>
<span class="sold-item">1000+ đã bán</span>
</div>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">IPM</span>
<span class="home-product-item__name-city">Việt Nam</span>
</div>
<div class="home-product-item__favortie">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">15%</span>
<span class="home-product-item__sale-off-label">GIẢM</span>
</div>
</a>
</div>
<div class="col l-2-4 c-6 m-4" productType="Figure - Đồ chơi">
<!-- Product Item -->
<a class="home-product-item" href="./productPage.html">
<div class="home-product-item__img"
style="background-image: url(https://cf.shopee.vn/file/fdab33b1aa66f503c5eb56f1b8fdbe52_tn);">
</div>
<h4 class="home-product-item__name">
Vol.1 Arya-san bàn bên thi thoảng lại thả thính tôi bằng tiếng nga bản Nhật
</h4>
<div class="home-product-item__price">
<span class="home-prodct-item__price--old">280.000đ</span>
<span class="home-prodct-item__price--new">140.000đ</span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__heart home-product-item__heart--liked">
<i class="fa-regular fa-heart"></i>
<!-- Heart Tim -->
<i class="fa-solid fa-heart home-product-item__heart--liked-heart"></i>
</span>
<div class="home-product-item__rating">
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>
<i class="fa-solid fa-star home-product-item__gold"></i>