-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2212 lines (2186 loc) · 150 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="styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"
/>
<title>Home</title>
</head>
<body>
<header>
<div class="home2">
<a href="#">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M11.9993 17.9999V14.9999V17.9999ZM10.0693 2.81985L3.13929 8.36985C2.35929 8.98985 1.85929 10.2999 2.02929 11.2799L3.35929 19.2399C3.59929 20.6599 4.95929 21.8099 6.39929 21.8099H17.5993C19.0293 21.8099 20.3993 20.6499 20.6393 19.2399L21.9693 11.2799C22.1293 10.2999 21.6293 8.98985 20.8593 8.36985L13.9293 2.82985C12.8593 1.96985 11.1293 1.96985 10.0693 2.81985Z"
fill="#111111"
/>
<path
d="M11.9993 17.9999V14.9999M10.0693 2.81985L3.13929 8.36985C2.35929 8.98985 1.85929 10.2999 2.02929 11.2799L3.35929 19.2399C3.59929 20.6599 4.95929 21.8099 6.39929 21.8099H17.5993C19.0293 21.8099 20.3993 20.6499 20.6393 19.2399L21.9693 11.2799C22.1293 10.2999 21.6293 8.98985 20.8593 8.36985L13.9293 2.82985C12.8593 1.96985 11.1293 1.96985 10.0693 2.81985Z"
stroke="white"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
<div></div>
</div>
<div class="home">
<a href="#">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.5399 8.30965C18.8986 8.30965 20 7.20827 20 5.84965C20 4.49103 18.8986 3.38965 17.5399 3.38965C16.1813 3.38965 15.08 4.49103 15.08 5.84965C15.08 7.20827 16.1813 8.30965 17.5399 8.30965ZM6.46001 8.30965C7.81863 8.30965 8.92 7.20827 8.92 5.84965C8.92 4.49103 7.81863 3.38965 6.46001 3.38965C5.10139 3.38965 4 4.49103 4 5.84965C4 7.20827 5.10139 8.30965 6.46001 8.30965ZM17.5399 20.6097C18.8986 20.6097 20 19.5084 20 18.1497C20 16.7911 18.8986 15.6897 17.5399 15.6897C16.1813 15.6897 15.08 16.7911 15.08 18.1497C15.08 19.5084 16.1813 20.6097 17.5399 20.6097ZM6.46001 20.6097C7.81863 20.6097 8.92 19.5084 8.92 18.1497C8.92 16.7911 7.81863 15.6897 6.46001 15.6897C5.10139 15.6897 4 16.7911 4 18.1497C4 19.5084 5.10139 20.6097 6.46001 20.6097Z"
stroke="#111111"
stroke-width="1.5"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-lineioin="round"
/>
</svg>
</a>
</div>
<div class="search">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22 22L20 20M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z"
stroke="#111111"
stroke-width="1.5"
stroke-linecap="round"
stroke-lineioin="round"
/>
</svg>
<input type="text" placeholder="ძებნა" />
<button><img src="img/close-circle 1.svg" alt="" /></button>
</div>
<div class="middle">
<div class="lan">
<a href="#">
<h3>ENG.</h3>
</a>
</div>
<a href="#">
<svg
width="155"
height="18"
viewBox="0 0 155 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_2198_1588)">
<path
d="M80.9333 6.40039H85.9583C86.5176 6.40039 87.054 6.62258 87.4495 7.0181C87.845 7.41361 88.0673 7.95006 88.0673 8.5094C88.0673 9.06874 87.845 9.60516 87.4495 10.0007C87.054 10.3962 86.5176 10.6184 85.9583 10.6184H80.9333C80.7821 10.6178 80.6373 10.5575 80.5305 10.4505C80.4236 10.3435 80.3635 10.1986 80.3633 10.0474V6.9704C80.3638 6.81939 80.424 6.67471 80.5308 6.56793C80.6375 6.46115 80.7823 6.40092 80.9333 6.40039ZM85.9423 9.18839C86.0766 9.18839 86.2079 9.14858 86.3195 9.07397C86.4312 8.99937 86.5182 8.8933 86.5696 8.76923C86.621 8.64515 86.6344 8.50864 86.6082 8.37692C86.582 8.24521 86.5173 8.12423 86.4224 8.02927C86.3274 7.93431 86.2064 7.86964 86.0747 7.84344C85.943 7.81725 85.8065 7.83069 85.6824 7.88208C85.5584 7.93347 85.4523 8.02051 85.3777 8.13217C85.3031 8.24383 85.2632 8.37511 85.2632 8.5094C85.2632 8.68948 85.3348 8.86216 85.4622 8.9895C85.5895 9.11684 85.7622 9.18839 85.9423 9.18839Z"
fill="#111111"
/>
<path
d="M20.947 7.80164H20.1879C20.0177 7.8019 19.8546 7.86962 19.7343 7.98996C19.6139 8.1103 19.5462 8.27345 19.546 8.44363V14.4576H2.04596V1.15762C2.0457 0.987436 1.97795 0.82429 1.8576 0.703949C1.73726 0.583608 1.57412 0.515889 1.40393 0.515625H0.645935C0.475747 0.515889 0.312602 0.583608 0.192261 0.703949C0.0719197 0.82429 0.00417072 0.987436 0.00390625 1.15762V14.7226C0.00443561 15.1943 0.192061 15.6465 0.525574 15.98C0.859086 16.3135 1.3113 16.5011 1.78296 16.5016H19.8099C20.2816 16.5011 20.7338 16.3135 21.0673 15.98C21.4008 15.6465 21.5884 15.1943 21.5889 14.7226V8.44562C21.5891 8.36118 21.5725 8.27756 21.5403 8.19949C21.5082 8.12143 21.4609 8.05046 21.4013 7.99066C21.3417 7.93086 21.2709 7.88339 21.1929 7.85095C21.115 7.81852 21.0314 7.80177 20.947 7.80164Z"
fill="#111111"
/>
<path
d="M40.4127 0.511719H27.3217C27.2374 0.511719 27.1539 0.528314 27.076 0.560577C26.9981 0.592841 26.9274 0.640122 26.8677 0.699738C26.8081 0.759353 26.7608 0.830129 26.7286 0.90802C26.6963 0.985911 26.6797 1.06941 26.6797 1.15372V1.91171C26.68 2.0819 26.7477 2.24505 26.868 2.36539C26.9884 2.48573 27.1515 2.55345 27.3217 2.55371H40.2857C41.0801 2.53311 41.8705 2.67179 42.6104 2.96155C43.3503 3.2513 44.0246 3.68627 44.5938 4.24081C45.1629 4.79536 45.6152 5.45826 45.924 6.1904C46.2328 6.92254 46.392 7.70911 46.392 8.50372C46.392 9.29834 46.2328 10.0849 45.924 10.817C45.6152 11.5492 45.1629 12.2121 44.5938 12.7666C44.0246 13.3211 43.3503 13.7561 42.6104 14.0459C41.8705 14.3357 41.0801 14.4743 40.2857 14.4537H28.7287V8.43872C28.7284 8.26853 28.6607 8.10539 28.5403 7.98505C28.42 7.86471 28.2569 7.79699 28.0867 7.79672H27.3287C27.1585 7.79699 26.9953 7.86471 26.875 7.98505C26.7547 8.10539 26.687 8.26853 26.6867 8.43872V14.7167C26.6872 15.1884 26.8748 15.6405 27.2083 15.9741C27.5418 16.3076 27.994 16.4952 28.4657 16.4957H40.4077C42.4935 16.4933 44.4932 15.6638 45.9682 14.189C47.4432 12.7142 48.273 10.7145 48.2757 8.62872V8.3757C48.2725 6.29119 47.4431 4.29295 45.9692 2.81888C44.4954 1.34481 42.4972 0.515157 40.4127 0.511719Z"
fill="#111111"
/>
<path
d="M73.1821 0.5H55.1501C54.6783 0.50053 54.2259 0.688275 53.8924 1.022C53.5589 1.35573 53.3714 1.80817 53.3711 2.28V15.858C53.3714 16.0282 53.4391 16.1913 53.5594 16.3117C53.6798 16.432 53.8429 16.4997 54.0131 16.5H54.7711C54.9411 16.4995 55.104 16.4317 55.2241 16.3113C55.3442 16.191 55.4118 16.028 55.4121 15.858V9.832H72.9181V15.855C72.9184 16.0252 72.9861 16.1883 73.1064 16.3087C73.2268 16.429 73.3899 16.4967 73.5601 16.497H74.3181C74.4883 16.4967 74.6514 16.429 74.7718 16.3087C74.8921 16.1883 74.9598 16.0252 74.9601 15.855V9.57001C74.9596 9.09835 74.772 8.64616 74.4385 8.31265C74.105 7.97914 73.6527 7.79154 73.1811 7.79102H55.4131V6.49802H73.1821C73.6538 6.49749 74.1059 6.30989 74.4395 5.97638C74.773 5.64287 74.9606 5.19065 74.9611 4.71899V2.27802C74.9601 1.80661 74.7723 1.35482 74.4388 1.02158C74.1054 0.688336 73.6535 0.500792 73.1821 0.5ZM72.9191 4.45801H55.4131V2.54199H72.9201L72.9191 4.45801Z"
fill="#111111"
/>
<path
d="M126.539 0.511719H108.509C108.038 0.512248 107.586 0.699843 107.252 1.03336C106.919 1.36687 106.731 1.81905 106.73 2.29071V5.1037C106.731 5.27389 106.798 5.43703 106.919 5.55737C107.039 5.67771 107.202 5.74546 107.372 5.74573H108.13C108.301 5.74546 108.464 5.67771 108.584 5.55737C108.704 5.43703 108.772 5.27389 108.772 5.1037V2.55371H126.272V7.79871H108.509C108.038 7.79924 107.586 7.98683 107.252 8.32034C106.919 8.65386 106.731 9.10604 106.73 9.5777V14.7197C106.731 15.1914 106.919 15.6436 107.252 15.9771C107.586 16.3106 108.038 16.4982 108.509 16.4987H126.539C127.011 16.4982 127.463 16.3106 127.797 15.9771C128.13 15.6436 128.318 15.1914 128.318 14.7197V2.29172C128.318 1.81989 128.131 1.36745 127.797 1.03372C127.464 0.699993 127.011 0.512249 126.539 0.511719ZM126.276 9.84171V14.4577H108.776V9.84171H126.276Z"
fill="#111111"
/>
<path
d="M145.215 0.5H143.193C140.6 0.504495 138.114 1.53679 136.28 3.3707C134.446 5.20461 133.414 7.69059 133.41 10.284V15.858C133.41 16.0282 133.478 16.1913 133.599 16.3117C133.719 16.432 133.882 16.4997 134.052 16.5H134.81C134.98 16.4997 135.144 16.432 135.264 16.3117C135.384 16.1913 135.452 16.0282 135.452 15.858V10.41C135.455 8.34768 136.266 6.36862 137.712 4.89786C139.157 3.4271 141.122 2.58197 143.184 2.54401V15.858C143.184 16.0282 143.252 16.1913 143.372 16.3117C143.493 16.432 143.656 16.4997 143.826 16.5H144.584C144.754 16.4997 144.918 16.432 145.038 16.3117C145.158 16.1913 145.226 16.0282 145.226 15.858V2.54401C147.288 2.58223 149.253 3.42746 150.698 4.89819C152.144 6.36892 152.955 8.34785 152.957 10.41V15.858C152.957 16.0281 153.025 16.1912 153.145 16.3116C153.265 16.432 153.428 16.4997 153.598 16.5H154.357C154.527 16.4997 154.691 16.432 154.811 16.3117C154.931 16.1913 154.999 16.0282 154.999 15.858V10.283C154.996 7.68913 153.965 5.20232 152.13 3.36826C150.296 1.53419 147.809 0.502647 145.215 0.5Z"
fill="#111111"
/>
<path
d="M93.3331 0.514709H81.0121C80.8421 0.515238 80.6792 0.583087 80.5591 0.7034C80.439 0.823712 80.3714 0.986693 80.3711 1.15671V1.9147C80.3711 2.0848 80.4386 2.24795 80.5588 2.36832C80.679 2.48869 80.842 2.55644 81.0121 2.5567H93.1891C94.006 2.5604 94.8141 2.7257 95.5668 3.04303C96.3196 3.36036 97.0021 3.82346 97.5751 4.4057C98.1257 4.95622 98.5604 5.61155 98.8535 6.33295C99.1465 7.05434 99.2918 7.82715 99.2811 8.60571C99.2472 10.1632 98.6065 11.6458 97.4955 12.7378C96.3844 13.8298 94.8909 14.4448 93.3331 14.4517H81.0121C80.842 14.452 80.679 14.5197 80.5588 14.6401C80.4386 14.7605 80.3711 14.9236 80.3711 15.0937V15.8527C80.3714 16.0226 80.439 16.1855 80.5591 16.3057C80.6793 16.4258 80.8422 16.4934 81.0121 16.4937H93.1721C95.267 16.5004 97.2837 15.6984 98.8019 14.2548C100.32 12.8111 101.222 10.8373 101.321 8.74472C101.352 7.6758 101.169 6.61148 100.781 5.61469C100.394 4.61789 99.8111 3.70883 99.0665 2.94128C98.3219 2.17374 97.4309 1.56327 96.4464 1.14597C95.4618 0.728661 94.4035 0.513003 93.3341 0.511719L93.3331 0.514709Z"
fill="#111111"
/>
</g>
<defs>
<clipPath id="clip0_2198_1588">
<rect
width="155"
height="17"
fill="white"
transform="translate(0 0.5)"
/>
</clipPath>
</defs>
</svg>
</a>
<div class="fav">
<a href="#">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 21.6506C11.69 21.6506 11.39 21.6106 11.14 21.5206C7.32 20.2106 1.25 15.5606 1.25 8.69059C1.25 5.19059 4.08 2.35059 7.56 2.35059C9.25 2.35059 10.83 3.01059 12 4.19059C13.17 3.01059 14.75 2.35059 16.44 2.35059C19.92 2.35059 22.75 5.20059 22.75 8.69059C22.75 15.5706 16.68 20.2106 12.86 21.5206C12.61 21.6106 12.31 21.6506 12 21.6506ZM7.56 3.85059C4.91 3.85059 2.75 6.02059 2.75 8.69059C2.75 15.5206 9.32 19.3206 11.63 20.1106C11.81 20.1706 12.2 20.1706 12.38 20.1106C14.68 19.3206 21.26 15.5306 21.26 8.69059C21.26 6.02059 19.1 3.85059 16.45 3.85059C14.93 3.85059 13.52 4.56059 12.61 5.79059C12.33 6.17059 11.69 6.17059 11.41 5.79059C10.48 4.55059 9.08 3.85059 7.56 3.85059Z"
fill="#111111"
/>
</svg>
</a>
</div>
</div>
<div class="cart">
<a href="#">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="#111111"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="#111111"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="#111111"
/>
</svg>
<h4>3</h4>
</a>
</div>
<div class="user">
<a href="#">
<h3>ავტორიზაცია</h3>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20.5901 22C20.5901 18.13 16.7401 15 12.0001 15C7.26016 15 3.41016 18.13 3.41016 22M12.0002 12C14.7616 12 17.0002 9.76142 17.0002 7C17.0002 4.23858 14.7616 2 12.0002 2C9.23883 2 7.00025 4.23858 7.00025 7C7.00025 9.76142 9.23883 12 12.0002 12Z"
stroke="#111111"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</header>
<div class="gap"></div>
<div class="sec-header">
<div>
<a href="#"> პროდუქცია</a>
<a href="##"> ბრენდი</a>
<a href="#">ფასდაკლება</a>
</div>
</div>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
<div class="swiper-slide">Slide 4</div>
<div class="swiper-slide">Slide 5</div>
<div class="swiper-slide">Slide 6</div>
<div class="swiper-slide">Slide 7</div>
<div class="swiper-slide">Slide 8</div>
<div class="swiper-slide">Slide 9</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
<div class="main-body1">
<div class="cont">
<h1>ბოლოს ნანახი პროდუქცია</h1>
<div class="bck">
<div class="scroller"></div>
</div>
</div>
<div class="container">
<div class="item-list1">
<div class="item">
<img src="img/Rectangle 510 (1).png" alt="" />
<div class="desc">
<h3>ნატურალური ტყავის ხელნაკეთი ჩანთა</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70 <b>i</b></h3>
<div class="dot"></div>
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510.png" alt="" />
<div class="desc">
<h3>
Personalized leather dopp kit, mens leather toiletry bag...
</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510 (1).png" alt="" />
<div class="desc">
<h3>Faux Leather Brown Backpack - Vegan Backpack - Water...</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70<b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510.png" alt="" />
<div class="desc">
<h3>
Personalized leather dopp kit, mens leather toiletry bag...
</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70 <b>i</b></h3>
<div class="dot"></div>
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="main-body2">
<div class="backg">
<h1>ყველაზე გაყიდვადი პროდუქცია</h1>
<div class="item-list2">
<div class="item">
<img src="img/Rectangle 510 (1).png" alt="" />
<div class="desc">
<h3>Faux Leather Brown Backpack - Vegan Backpack - Water...</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70<b>i</b></h3>
<div class="dot"></div>
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510.png" alt="" />
<div class="desc">
<h3>
Personalized leather dopp kit, mens leather toiletry bag...
</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510 (1).png" alt="" />
<div class="desc">
<h3>Faux Leather Brown Backpack - Vegan Backpack - Water...</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70<b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<img src="img/Rectangle 510.png" alt="" />
<div class="desc">
<h3>
Personalized leather dopp kit, mens leather toiletry bag...
</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70 <b>i</b></h3>
<div class="dot"></div>
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ad"></div>
<div class="main-body3">
<h1>ბოლოს ნანახი პროდუქცია</h1>
<div class="item-list2">
<div class="item">
<img src="img/Rectangle 510 (1).png" alt="" />
<div class="desc">
<h3>Faux Leather Brown Backpack - Vegan Backpack - Water...</h3>
<p>გრანდ როდეო</p>
<div class="price-fav">
<div class="price">
<h3>243.70<b>i</b></h3>
<div class="dot"></div>
<h3>243.70 <b>i</b></h3>
</div>
<div class="fav">
<div class="favorites">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1618_11606)">
<path
d="M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"
fill="curentcolor"
/>
</g>
<defs>
<clipPath id="clip0_1618_11606">
<rect width="24" height="24" fill="curentcolor" />
</clipPath>
</defs>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.44 3.10156C14.63 3.10156 13.01 3.98156 12 5.33156C10.99 3.98156 9.37 3.10156 7.56 3.10156C4.49 3.10156 2 5.60156 2 8.69156C2 9.88156 2.19 10.9816 2.52 12.0016C4.1 17.0016 8.97 19.9916 11.38 20.8116C11.72 20.9316 12.28 20.9316 12.62 20.8116C15.03 19.9916 19.9 17.0016 21.48 12.0016C21.81 10.9816 22 9.88156 22 8.69156C22 5.60156 19.51 3.10156 16.44 3.10156Z"
fill="curentcolor"
/>
</svg>
</div>
<div class="add-to-cart">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="curentcolor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.5 8.6303C16.09 8.6303 15.75 8.2903 15.75 7.8803V6.5003C15.75 5.45031 15.3 4.4303 14.52 3.7203C13.73 3.0003 12.71 2.6703 11.63 2.7703C9.83 2.9403 8.25 4.7803 8.25 6.7003V7.6703C8.25 8.0803 7.91 8.4203 7.5 8.4203C7.09 8.4203 6.75 8.0803 6.75 7.6703V6.6903C6.75 4.0003 8.92 1.5203 11.49 1.2703C12.99 1.1303 14.43 1.6003 15.53 2.6103C16.62 3.6003 17.25 5.0203 17.25 6.5003V7.8803C17.25 8.2903 16.91 8.6303 16.5 8.6303Z"
fill="curentcolor"
/>
<path
d="M14.9998 22.75H8.99982C4.37982 22.75 3.51982 20.6 3.29982 18.51L2.54982 12.52C2.43982 11.44 2.39982 9.89 3.44982 8.73C4.34982 7.73 5.83982 7.25 7.99982 7.25H15.9998C18.1698 7.25 19.6598 7.74 20.5498 8.73C21.5898 9.89 21.5598 11.44 21.4498 12.5L20.6998 18.51C20.4798 20.6 19.6198 22.75 14.9998 22.75ZM7.99982 8.75C6.30982 8.75 5.14982 9.08 4.55982 9.74C4.06982 10.28 3.90982 11.11 4.03982 12.35L4.78982 18.34C4.95982 19.94 5.39982 21.26 8.99982 21.26H14.9998C18.5998 21.26 19.0398 19.95 19.2098 18.36L19.9598 12.35C20.0898 11.13 19.9298 10.3 19.4398 9.75C18.8498 9.08 17.6898 8.75 15.9998 8.75H7.99982Z"
fill="curentcolor"
/>
<path
d="M15.4202 13.1494C14.8602 13.1494 14.4102 12.6994 14.4102 12.1494C14.4102 11.5994 14.8602 11.1494 15.4102 11.1494C15.9602 11.1494 16.4102 11.5994 16.4102 12.1494C16.4102 12.6994 15.9702 13.1494 15.4202 13.1494ZM8.42016 13.1494C7.86016 13.1494 7.41016 12.6994 7.41016 12.1494C7.41016 11.5994 7.86016 11.1494 8.41016 11.1494C8.96016 11.1494 9.41016 11.5994 9.41016 12.1494C9.41016 12.6994 8.97016 13.1494 8.42016 13.1494Z"
fill="curentcolor"
/>
</svg>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9597 8.95844C19.2897 8.21844 18.2797 7.78844 16.8797 7.63844V6.87844C16.8797 5.50844 16.2997 4.18844 15.2797 3.26844C14.2497 2.32844 12.9097 1.88844 11.5197 2.01844C9.12975 2.24844 7.11975 4.55844 7.11975 7.05844V7.63844C5.71975 7.78844 4.70975 8.21844 4.03975 8.95844C3.06975 10.0384 3.09975 11.4784 3.20975 12.4784L3.90975 18.0484C4.11975 19.9984 4.90975 21.9984 9.20975 21.9984H14.7897C19.0897 21.9984 19.8797 19.9984 20.0897 18.0584L20.7897 12.4684C20.8997 11.4784 20.9197 10.0384 19.9597 8.95844ZM11.6597 3.40844C12.6597 3.31844 13.6097 3.62844 14.3497 4.29844C15.0797 4.95844 15.4897 5.89844 15.4897 6.87844V7.57844H8.50975V7.05844C8.50975 5.27844 9.97975 3.56844 11.6597 3.40844ZM8.41975 13.1484H8.40975C7.85975 13.1484 7.40975 12.6984 7.40975 12.1484C7.40975 11.5984 7.85975 11.1484 8.40975 11.1484C8.96975 11.1484 9.41975 11.5984 9.41975 12.1484C9.41975 12.6984 8.96975 13.1484 8.41975 13.1484ZM15.4197 13.1484H15.4097C14.8597 13.1484 14.4097 12.6984 14.4097 12.1484C14.4097 11.5984 14.8597 11.1484 15.4097 11.1484C15.9697 11.1484 16.4197 11.5984 16.4197 12.1484C16.4197 12.6984 15.9697 13.1484 15.4197 13.1484Z"
fill="curentcolor"
/>
</svg>
</div>