-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.html
1735 lines (1719 loc) · 79.3 KB
/
single.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
s<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="Keywords" content="کلمات کلیدی را در این بخش وارد نمایید" />
<meta
name="Description"
content="توضیحات سایت را در این قسمت وارد نمایید"
/>
<meta name="format-detection" content="telephone=no" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="stylesheet" href="css/bootstrap.css" />
<link href="style.css" rel="stylesheet" />
<!-- <link href="css/slick.css" rel="stylesheet" />
<link href="css/slick-theme.css" rel="stylesheet" /> -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="newstyle.css">
<title>New Project</title>
</head>
<body>
<div class="popuplogin text-center" dir="rtl">
<a href="#"><img src="img/logo.png" alt="" /></a>
<ul>
<li class="signup">عضویت</li>
<li class="active loginbtn">ورود</li>
</ul>
<form action="#">
<input type="text" placeholder="شماره همراه" />
<div class="passwordbox">
<input type="password" placeholder="رمز عبور" id="password" />
<div class="showpass showsvg">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-fill"
viewBox="0 0 16 16"
>
<path d="M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z" />
<path
d="M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8zm8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z"
/>
</svg>
</div>
<div class="hidepass hidesvg">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-slash-fill hidepass"
viewBox="0 0 16 16"
>
<path
d="m10.79 12.912-1.614-1.615a3.5 3.5 0 0 1-4.474-4.474l-2.06-2.06C.938 6.278 0 8 0 8s3 5.5 8 5.5a7.029 7.029 0 0 0 2.79-.588zM5.21 3.088A7.028 7.028 0 0 1 8 2.5c5 0 8 5.5 8 5.5s-.939 1.721-2.641 3.238l-2.062-2.062a3.5 3.5 0 0 0-4.474-4.474L5.21 3.089z"
/>
<path
d="M5.525 7.646a2.5 2.5 0 0 0 2.829 2.829l-2.83-2.829zm4.95.708-2.829-2.83a2.5 2.5 0 0 1 2.829 2.829zm3.171 6-12-12 .708-.708 12 12-.708.708z"
/>
</svg>
</div>
</div>
<a class="mt-5 text-right forget" href="#">بازیابی رمز عبور</a>
<button type="submit">ورود</button>
</form>
</div>
<div class="popupsignup text-center" dir="rtl">
<a href="#"><img src="img/logo.png" alt="" /></a>
<ul>
<li class="active signup">عضویت</li>
<li class="loginbtn">ورود</li>
</ul>
<form action="#">
<input type="text" placeholder="شماره همراه" />
<div class="passwordbox">
<input type="password" placeholder="رمز عبور" id="spassword1" />
<div class="showsvg1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-fill"
viewBox="0 0 16 16"
>
<path d="M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z" />
<path
d="M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8zm8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z"
/>
</svg>
</div>
<div class="hidesvg1">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-slash-fill"
viewBox="0 0 16 16"
>
<path
d="m10.79 12.912-1.614-1.615a3.5 3.5 0 0 1-4.474-4.474l-2.06-2.06C.938 6.278 0 8 0 8s3 5.5 8 5.5a7.029 7.029 0 0 0 2.79-.588zM5.21 3.088A7.028 7.028 0 0 1 8 2.5c5 0 8 5.5 8 5.5s-.939 1.721-2.641 3.238l-2.062-2.062a3.5 3.5 0 0 0-4.474-4.474L5.21 3.089z"
/>
<path
d="M5.525 7.646a2.5 2.5 0 0 0 2.829 2.829l-2.83-2.829zm4.95.708-2.829-2.83a2.5 2.5 0 0 1 2.829 2.829zm3.171 6-12-12 .708-.708 12 12-.708.708z"
/>
</svg>
</div>
</div>
<div class="passwordbox">
<input type="password" placeholder="رمز عبور" id="spassword2" />
<div class="showsvg2">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-fill"
viewBox="0 0 16 16"
>
<path d="M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z" />
<path
d="M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8zm8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z"
/>
</svg>
</div>
<div class="hidesvg2">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-slash-fill"
viewBox="0 0 16 16"
>
<path
d="m10.79 12.912-1.614-1.615a3.5 3.5 0 0 1-4.474-4.474l-2.06-2.06C.938 6.278 0 8 0 8s3 5.5 8 5.5a7.029 7.029 0 0 0 2.79-.588zM5.21 3.088A7.028 7.028 0 0 1 8 2.5c5 0 8 5.5 8 5.5s-.939 1.721-2.641 3.238l-2.062-2.062a3.5 3.5 0 0 0-4.474-4.474L5.21 3.089z"
/>
<path
d="M5.525 7.646a2.5 2.5 0 0 0 2.829 2.829l-2.83-2.829zm4.95.708-2.829-2.83a2.5 2.5 0 0 1 2.829 2.829zm3.171 6-12-12 .708-.708 12 12-.708.708z"
/>
</svg>
</div>
</div>
<div class="mt-5"></div>
<button type="submit">ثبت نام</button>
</form>
</div>
<div class="closepopup"></div>
<div class="resmenu text-right">
<div class="row align-items-center">
<div class="col-6 text-left reslogo">
<img src="img/logo.png" alt="" />
</div>
<div class="col-6 text-right">
<svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-x-lg resclosemenubtn"
viewBox="0 0 16 16"
>
<path
d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"
/>
</svg>
</div>
</div>
<a href="#" class="reslogin">
<img src="img/user1.png" alt="" />
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-box-arrow-in-right"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0v-2z"
/>
<path
fill-rule="evenodd"
d="M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z"
/>
</svg>
ورود | عضویت
</a>
<ul>
<li class="menu-item-has-children">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-stack"
viewBox="0 0 16 16"
>
<path
d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z"
/>
<path
d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z"
/>
</svg>
محصولات
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-chevron-down arrowdown"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"
/></svg
></a>
<ul class="sub-menu">
<a href="#" class="allpro">تمام محصولات</a>
<li class="menu-item-has-children">
<a href="#"
>شلوار
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-chevron-down arrowdown"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"
/></svg
></a>
<ul class="sub-menu">
<li class="allcat">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-chevron-left arrowleft"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"
/>
</svg>
همه موارد این دسته</a
>
</li>
<li><a href="#">ورزشی</a></li>
<li><a href="#">مجلسی</a></li>
</ul>
</li>
<li><a href="#">کفش</a></li>
<li><a href="#">لباس زیر</a></li>
<li><a href="#">پیراهن</a></li>
<li><a href="#">تیشرت</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-stack"
viewBox="0 0 16 16"
>
<path
d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z"
/>
<path
d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z"
/>
</svg>
اخبار تازه
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-chevron-down arrowdown"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"
/></svg
></a>
<ul class="sub-menu">
<li><a href="#">درباره ما</a></li>
</ul>
</li>
</ul>
</div>
<div class="resclosemenu"></div>
<div class="ressecmenu text-center">
<ul class="d-flex justify-content-center">
<li>
<a href="#"
><svg
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv"
focusable="false"
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="ClearAllRoundedIcon"
>
<path
d="M6 13h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-2 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z"
></path></svg
></a>
</li>
<li>
<a href="#"
><svg
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv"
focusable="false"
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="ShoppingCartTwoToneIcon"
>
<path d="m15.55 11 2.76-5H6.16l2.37 5z" opacity=".3"></path>
<path
d="M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"
></path></svg
></a>
</li>
<li class="active">
<a href="#"
><svg
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv"
focusable="false"
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="HandshakeTwoToneIcon"
>
<path
d="M12.22 19.85c-.18.18-.5.21-.71 0-.18-.18-.21-.5 0-.71l3.39-3.39-1.41-1.41-3.39 3.39c-.19.2-.51.19-.71 0-.21-.21-.18-.53 0-.71l3.39-3.39-1.41-1.41-3.39 3.39c-.18.18-.5.21-.71 0-.19-.19-.19-.51 0-.71l3.39-3.39-1.42-1.41-3.39 3.39c-.18.18-.5.21-.71 0-.19-.2-.19-.51 0-.71L9.52 8.4l1.87 1.86c.95.95 2.59.94 3.54 0 .98-.98.98-2.56 0-3.54l-1.86-1.86.28-.28c.78-.78 2.05-.78 2.83 0l4.24 4.24c.78.78.78 2.05 0 2.83l-8.2 8.2z"
opacity=".3"
></path>
<path
d="M12.22 19.85c-.18.18-.5.21-.71 0-.18-.18-.21-.5 0-.71l3.39-3.39-1.41-1.41-3.39 3.39c-.19.2-.51.19-.71 0-.21-.21-.18-.53 0-.71l3.39-3.39-1.41-1.41-3.39 3.39c-.18.18-.5.21-.71 0-.19-.19-.19-.51 0-.71l3.39-3.39-1.42-1.41-3.39 3.39c-.18.18-.5.21-.71 0-.19-.2-.19-.51 0-.71L9.52 8.4l1.87 1.86c.95.95 2.59.94 3.54 0 .98-.98.98-2.56 0-3.54l-1.86-1.86.28-.28c.78-.78 2.05-.78 2.83 0l4.24 4.24c.78.78.78 2.05 0 2.83l-8.2 8.2zm9.61-6.78c1.56-1.56 1.56-4.09 0-5.66l-4.24-4.24c-1.56-1.56-4.09-1.56-5.66 0l-.28.28-.28-.28c-1.56-1.56-4.09-1.56-5.66 0L2.17 6.71C.75 8.13.62 10.34 1.77 11.9l1.45-1.45c-.39-.75-.26-1.7.37-2.33l3.54-3.54c.78-.78 2.05-.78 2.83 0l3.56 3.56c.18.18.21.5 0 .71-.21.21-.53.18-.71 0L9.52 5.57l-5.8 5.79c-.98.97-.98 2.56 0 3.54.39.39.89.63 1.42.7.07.52.3 1.02.7 1.42.4.4.9.63 1.42.7.07.52.3 1.02.7 1.42.4.4.9.63 1.42.7.07.54.31 1.03.7 1.42.47.47 1.1.73 1.77.73.67 0 1.3-.26 1.77-.73l8.21-8.19z"
></path></svg
></a>
</li>
<li>
<a href="#"
><svg
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv"
focusable="false"
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="StorefrontTwoToneIcon"
>
<path
d="M6.44 9.86 7.02 5H5.05L4.04 9.36c-.1.42-.01.84.25 1.17.14.18.44.47.94.47.61 0 1.13-.49 1.21-1.14zM9.71 11c.74 0 1.29-.59 1.29-1.31V5H9.04l-.55 4.52c-.05.39.07.78.33 1.07.23.26.55.41.89.41zm4.51 0c.41 0 .72-.15.96-.41.25-.29.37-.68.33-1.07L14.96 5H13v4.69c0 .72.55 1.31 1.22 1.31zm4.69-6.01L16.98 5l.58 4.86c.08.65.6 1.14 1.21 1.14.49 0 .8-.29.93-.47.26-.33.35-.76.25-1.17l-1.04-4.37z"
opacity=".3"
></path>
<path
d="m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.2 1.01c-.26-.33-.35-.76-.25-1.17L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.5 0-.8-.29-.94-.47zM19 19H5v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19zm.71-8.47c-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 4.37c.1.42.01.85-.25 1.17z"
></path></svg
></a>
</li>
<li>
<a href="#"
><svg
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv"
focusable="false"
aria-hidden="true"
viewBox="0 0 24 24"
data-testid="LocalMallRoundedIcon"
>
<path
d="M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.33 0-4.29-1.59-4.84-3.75-.17-.63.32-1.25.97-1.25.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8.65 0 1.13.62.97 1.25C16.29 11.41 14.33 13 12 13z"
></path></svg
></a>
</li>
</ul>
</div>
<div class="bg singlebg">
<div class="container-fluid headermenu" dir="rtl">
<div class="container text-right" style="position: relative">
<div class="row d-flex align-items-center">
<div class="col-lg-2 logobar">
<a href="#"><img src="img/logo.png" alt="" /></a>
<div class="resopenmenu">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-list"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"
/>
</svg>
</div>
<div class="rescard">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-bag"
viewBox="0 0 16 16"
>
<path
d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"
/>
</svg>
</div>
</div>
<div class="col-lg-6 mainmenu">
<ul>
<li class="menu-item-has-children">
<a href="#">محصولات</a>
<div class="megamenu">
<div class="row">
<div class="col-3">
<div
class="nav flex-column nav-pills"
id="v-pills-tab"
role="tablist"
aria-orientation="vertical"
>
<div
class="nav-link active"
id="v-pills-1-tab"
data-toggle="pill"
data-target="#v-pills-1"
role="tab"
aria-controls="v-pills-1"
aria-selected="true"
>
<a href="#">آقایان</a>
</div>
<div
class="nav-link"
id="v-pills-2-tab"
data-toggle="pill"
data-target="#v-pills-2"
role="tab"
aria-controls="v-pills-2"
aria-selected="false"
>
<a href="#">بانوان</a>
</div>
<div
class="nav-link"
id="v-pills-3-tab"
data-toggle="pill"
data-target="#v-pills-3"
role="tab"
aria-controls="v-pills-3"
aria-selected="false"
>
<a href="#">کودکان</a>
</div>
<div
class="nav-link"
id="v-pills-4-tab"
data-toggle="pill"
data-target="#v-pills-4"
role="tab"
aria-controls="v-pills-4"
aria-selected="false"
>
<a href="#">ورزشی</a>
</div>
</div>
</div>
<div class="col-9">
<div class="tab-content" id="v-pills-tabContent">
<div
class="tab-pane show active"
id="v-pills-1"
role="tabpanel"
aria-labelledby="v-pills-1-tab"
>
<ul class="grid">
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">استقلال</a></li>
<li class="last-item">
<a href="#">پرسپولیس</a>
</li>
<li class="last-item">
<a href="#">تراکتورسازی</a>
</li>
</ul>
</div>
<div
class="tab-pane"
id="v-pills-2"
role="tabpanel"
aria-labelledby="v-pills-2-tab"
>
<ul class="grid">
<li class="last-item impitem">
<a href="#">کیت رسمی مسابقه</a>
</li>
<li class="last-item"><a href="#">سپاهان</a></li>
<li class="last-item"><a href="#">فولاد</a></li>
<li class="last-item">
<a href="#">ماشین سازی</a>
</li>
</ul>
</div>
<div
class="tab-pane"
id="v-pills-3"
role="tabpanel"
aria-labelledby="v-pills-3-tab"
></div>
<div
class="tab-pane"
id="v-pills-4"
role="tabpanel"
aria-labelledby="v-pills-4-tab"
></div>
</div>
</div>
</div>
</div>
</li>
<li><a href="#">اخبار تازه</a></li>
<li><a href="#">ارتباط با ما</a></li>
<li><a href="#">درباره مروژ</a></li>
</ul>
</div>
<div class="col-lg-4 text-left headerbtn" dir="ltr">
<ul>
<li class="langbtn">
<a href="#"><img src="img/lan.png" alt="" /></a>
</li>
<li>
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-bag"
viewBox="0 0 16 16"
>
<path
d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"
/></svg
></a>
</li>
<li>
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-search searchbtn"
viewBox="0 0 16 16"
>
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"
/></svg
></a>
</li>
<li class="login"><a href="#">ورود | عضویت</a></li>
<li class="number"><a href="#">09114802983</a></li>
</ul>
<div class="langs">
<p><a href="#">TR</a></p>
<p><a href="#">AR</a></p>
</div>
</div>
</div>
</div>
<div class="searchbox">
<div class="container">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-x-lg searchboxclose"
viewBox="0 0 16 16"
>
<path
d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"
/>
</svg>
<form action="#">
<input type="search" placeholder="سرچ کنید ..." />
<button type="submit">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-search"
viewBox="0 0 16 16"
>
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"
/>
</svg>
</button>
</form>
</div>
</div>
</div>
</div>
<div class="mt-5 mb-5 mn container text-right" dir="rtl">
<div class="row">
<div class="col-lg-5">
<img class="image-pr-inside" src="img/pr1.jpg" alt="">
<div class="gallery owl-carousel owl-product-inside">
<img src="img/pr1.jpg" alt="">
<img src="img/pr2.jpg" alt="">
<img src="img/tshirt.jpg" alt="">
<img src="img/p1.webp" alt="">
</div>
</div>
<div class="col-lg-7 m2">
<h4 class="mb-4">کاپشن مدل ۳۰۳۴ (فرهاد)</h4>
<div class="row" style="height: 45px">
<div class="col-8 text-right">
<form class="addtocartbox">
<ul>
<li class="cardbtn"><button>خرید</button></li>
<li class="plus">
<a href="#"><span>+</span></a>
</li>
<li><input type="text" value="1" /></li>
<li class="minus">
<a href="#"><span>-</span></a>
</li>
</ul>
</form>
<div class="singleaddtocard">
<ol>
<li class="deletefromcart">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trash3"
viewBox="0 0 16 16"
>
<path
d="M6.5 1h3a.5.5 0 0 1 .5.5v1H6v-1a.5.5 0 0 1 .5-.5ZM11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3A1.5 1.5 0 0 0 5 1.5v1H2.506a.58.58 0 0 0-.01 0H1.5a.5.5 0 0 0 0 1h.538l.853 10.66A2 2 0 0 0 4.885 16h6.23a2 2 0 0 0 1.994-1.84l.853-10.66h.538a.5.5 0 0 0 0-1h-.995a.59.59 0 0 0-.01 0H11Zm1.958 1-.846 10.58a1 1 0 0 1-.997.92h-6.23a1 1 0 0 1-.997-.92L3.042 3.5h9.916Zm-7.487 1a.5.5 0 0 1 .528.47l.5 8.5a.5.5 0 0 1-.998.06L5 5.03a.5.5 0 0 1 .47-.53Zm5.058 0a.5.5 0 0 1 .47.53l-.5 8.5a.5.5 0 1 1-.998-.06l.5-8.5a.5.5 0 0 1 .528-.47ZM8 4.5a.5.5 0 0 1 .5.5v8.5a.5.5 0 0 1-1 0V5a.5.5 0 0 1 .5-.5Z"
/></svg
></a>
</li>
<li>
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-eye-fill"
viewBox="0 0 16 16"
>
<path
d="M10.5 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z"
/>
<path
d="M0 8s3-5.5 8-5.5S16 8 16 8s-3 5.5-8 5.5S0 8 0 8zm8 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7z"
/></svg
></a>
</li>
<li class="showcard"><a href="#">مشاهده در سبد خرید</a></li>
</ol>
</div>
</div>
<div class="col-4 text-left">
<h5 class="text-center">
1,600,000<span>تومان</span><img src="img/v4.png" alt="" />
</h5>
</div>
</div>
<ul class="singlecat mt-4 mb-4">
<li><a href="#">کاپشن مردانه</a></li>
<li><a href="#">ویژه آقایان</a></li>
<li><a href="#">استقلال تهران</a></li>
</ul>
<ul class="singleinfo">
<li>
گارانتی بازگشت وجه 7 روزه<img src="img/check2.svg" alt="" />
</li>
<li>ارسال رایگان<img src="img/check2.svg" alt="" /></li>
<li>ضمانت اصالت کالا<img src="img/check2.svg" alt="" /></li>
</ul>
<p class="mt-3 mb-3 vaziat">وضعیت : <span>موجود</span></p>
<div class="singlecolors">
رنگ
<ul class="mt-1">
<li class="blue">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-check"
viewBox="0 0 16 16"
>
<path
d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z"
/>
</svg>
</li>
</ul>
</div>
<div class="singlesize">
سایز
<form action="#" class="mt-2">
<ul>
<li>
<label class="sizediv">
<input type="checkbox" checked="checked" name="size" />
<span class="checkmark"></span>
<p class="m-0">L</p>
</label>
</li>
<li>
<label class="sizediv">
<input type="checkbox" name="size" />
<span class="checkmark"></span>
<p class="m-0">M</p>
</label>
</li>
<li>
<label class="sizediv">
<input type="checkbox" name="size" />
<span class="checkmark"></span>
<p class="m-0">XL</p>
</label>
</li>
<li>
<label class="sizediv">
<input type="checkbox" name="size" />
<span class="checkmark"></span>
<p class="m-0">2XL</p>
</label>
</li>
<li>
<label class="sizediv disable">
<input type="checkbox" disabled name="size" />
<span class="checkmark"></span>
<p class="m-0">Disable</p>
</label>
</li>
</ul>
</form>
</div>
</div>
</div>
</div>
<div class="container singlecontent text-right mb-5" dir="rtl">
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<div
class="nav-link active"
id="pills-1-tab"
data-toggle="pill"
data-target="#pills-1"
role="tab"
aria-controls="pills-1"
aria-selected="true"
>
معرفی محصول
</div>
</li>
<li class="nav-item" role="presentation">
<div
class="nav-link"
id="pills-2-tab"
data-toggle="pill"
data-target="#pills-2"
role="tab"
aria-controls="pills-2"
aria-selected="false"
>
ویژگی ها
</div>
</li>
<li class="nav-item" role="presentation">
<div
class="nav-link"
id="pills-3-tab"
data-toggle="pill"
data-target="#pills-3"
role="tab"
aria-controls="pills-3"
aria-selected="false"
>
دیدگاه ها
</div>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div
class="tab-pane v1 fade show active"
id="pills-1"
role="tabpanel"
aria-labelledby="pills-1-tab"
>
<p class="m-0">
کاپشن بدون کلاه آبی ۳۰۳۴ – مدل فرهاد تهیه شده از جنس پلی استر و کتان
بوده که دارای ویژگی های زیر میباشد : مقاوم در برابر نفوذ سرما بافت
نرم دارای راحتی خاص بسیار مقاوم مقاوم در برابر رنگ دهی مقاوم در
برابر انبساط و انقباض مشخصات ظاهری : رویه بیرونی پلی استر رویه میانی
پشم شیشه (مرغوب ترین جنس موجود در بازار) رویه داخلی پلی استر با بافت
بسیار نرم دارای زیپ ۲ رو (جهت استفاده راحت در هر سمت) دارای ۲ جیب
زیپ دار در هر ۲ طرف سر آستین کش دار جهت جلوگیری از ورود هوا به داخل
آستین این مدل از ترکیب آبی رنگ می باشد و می توان با هر طیف های رنگی
سِت کنید.
</p>
</div>
<div
class="tab-pane fade p-0"
id="pills-2"
role="tabpanel"
aria-labelledby="pills-2-tab"
>
<div class="row m-0">
<div class="col-lg-3 col-md-6 coninfo">
<h6>قابلیت شست و شو : <span>دارد</span></h6>
</div>
<div class="col-lg-3 col-md-6 coninfo">
<h6>قابلیت شست و شو : <span>دارد</span></h6>
</div>
<div class="col-lg-3 col-md-6 coninfo">
<h6>قابلیت شست و شو : <span>دارد</span></h6>
</div>
<div class="col-lg-3 col-md-6 coninfo">
<h6>قابلیت شست و شو : <span>دارد</span></h6>
</div>
<div class="col-lg-3 col-md-6 coninfo">
<h6>قابلیت شست و شو : <span>دارد</span></h6>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="pills-3"
role="tabpanel"
aria-labelledby="pills-3-tab"
>
...
</div>
</div>
</div>
<div class="container mortabet" dir="rtl">
<div class="mortabetslider">
<div style="padding: 0 5px">
<div class="b2sliderpost mb-2">
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-suit-heart heart"
viewBox="0 0 16 16"
>
<path
d="m8 6.236-.894-1.789c-.222-.443-.607-1.08-1.152-1.595C5.418 2.345 4.776 2 4 2 2.324 2 1 3.326 1 4.92c0 1.211.554 2.066 1.868 3.37.337.334.721.695 1.146 1.093C5.122 10.423 6.5 11.717 8 13.447c1.5-1.73 2.878-3.024 3.986-4.064.425-.398.81-.76 1.146-1.093C14.446 6.986 15 6.131 15 4.92 15 3.326 13.676 2 12 2c-.777 0-1.418.345-1.954.852-.545.515-.93 1.152-1.152 1.595L8 6.236zm.392 8.292a.513.513 0 0 1-.784 0c-1.601-1.902-3.05-3.262-4.243-4.381C1.3 8.208 0 6.989 0 4.92 0 2.755 1.79 1 4 1c1.6 0 2.719 1.05 3.404 2.008.26.365.458.716.596.992a7.55 7.55 0 0 1 .596-.992C9.281 2.049 10.4 1 12 1c2.21 0 4 1.755 4 3.92 0 2.069-1.3 3.288-3.365 5.227-1.193 1.12-2.642 2.48-4.243 4.38z"
/>
</svg>
<img src="img/b3.webp" alt="" />
<div style="padding: 0 7px">
<h6 class="mb-3">گرم کن فرهاد مجیدی</h6>
<div class="row d-flex align-items-center">
<div class="col-6 cardbtn">
<img src="img/v6.png" alt="" />
</div>
<div class="col-6 text-left b2price">
<div
class="text-center"
style="display: table; margin: 0 auto 0 0"
>
1,600,000<br /><span>تومان</span>
<img src="img/v4.png" alt="" class="b2v3" />
</div>
</div>
</div>
<div class="colors text-center">
<ul>
<li class="red"></li>
<li class="green"></li>
<li class="blue"></li>
<li class="yellow"></li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div style="padding: 0 5px">
<div class="b2sliderpost mb-2">
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-suit-heart heart"
viewBox="0 0 16 16"
>
<path
d="m8 6.236-.894-1.789c-.222-.443-.607-1.08-1.152-1.595C5.418 2.345 4.776 2 4 2 2.324 2 1 3.326 1 4.92c0 1.211.554 2.066 1.868 3.37.337.334.721.695 1.146 1.093C5.122 10.423 6.5 11.717 8 13.447c1.5-1.73 2.878-3.024 3.986-4.064.425-.398.81-.76 1.146-1.093C14.446 6.986 15 6.131 15 4.92 15 3.326 13.676 2 12 2c-.777 0-1.418.345-1.954.852-.545.515-.93 1.152-1.152 1.595L8 6.236zm.392 8.292a.513.513 0 0 1-.784 0c-1.601-1.902-3.05-3.262-4.243-4.381C1.3 8.208 0 6.989 0 4.92 0 2.755 1.79 1 4 1c1.6 0 2.719 1.05 3.404 2.008.26.365.458.716.596.992a7.55 7.55 0 0 1 .596-.992C9.281 2.049 10.4 1 12 1c2.21 0 4 1.755 4 3.92 0 2.069-1.3 3.288-3.365 5.227-1.193 1.12-2.642 2.48-4.243 4.38z"
/>
</svg>
<img src="img/b3.webp" alt="" />
<div style="padding: 0 7px">
<h6 class="mb-3">گرم کن فرهاد مجیدی</h6>
<div class="row d-flex align-items-center">
<div class="col-6 cardbtn">
<img src="img/v6.png" alt="" />
</div>
<div class="col-6 text-left b2price">
<div