-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElectronics.html
More file actions
3840 lines (3547 loc) · 232 KB
/
Electronics.html
File metadata and controls
3840 lines (3547 loc) · 232 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
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="ar" dir="rtl" data-theme="light">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="متجر إيليجانسيا - أحدث صيحات الموضة وتشكيلات فريدة" />
<meta property="og:title" content="Store Eleganceia" />
<meta property="og:image" content="images/og-image.png" />
<!-- Title & Favicon -->
<title>Store Eleganceia | Electronics</title>
<link rel="icon" href="images/logo.png" />
<!-- CSS Files -->
<script src="js/theme-init.js"></script>
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
</head>
<body>
<!-- ========== HEADER ========== -->
<header>
<!-- Top Header -->
<div class="top-header d-flex align-items-center py-2">
<div class="container">
<div class="row align-items-center">
<!-- Logo -->
<div class="col-6 col-md-4">
<a href="index.html">
<img class="site-logo" src="images/logo.png" alt="شعار إيليجانسيا" loading="lazy">
</a>
</div>
<!-- Search -->
<div class="col-6 col-md-4 d-flex justify-content-center">
<form class="d-flex search-form w-100" role="search">
<input class="form-control search-input" type="search" placeholder="ابحثِ هنا...؟"
aria-label="Search" />
<button class="btn search-button" type="submit">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
</div>
<!-- User & Services (Desktop) -->
<div class="col-12 col-md-4 left-header d-none d-lg-flex justify-content-end align-items-center">
<!-- User Dropdown -->
<div class="dropdown">
<a id="desktopUserDropdown" class="header-icon" data-bs-toggle="dropdown" type="button"
aria-expanded="false" aria-label="قائمة المستخدم">
<i class="fa-solid fa-user btn-dark"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end text-end" aria-labelledby="desktopDropdown">
<li><a class="dropdown-item" data-bs-toggle="offcanvas" data-bs-target="#login"
href="#">تسجيل
الدخول / حسابي</a></li>
<li><a class="dropdown-item" href="#">طلبي</a></li>
<li><a class="dropdown-item" href="#">رسالتي</a></li>
<li><a class="dropdown-item" href="#">كوبوناتي</a></li>
<li><a class="dropdown-item" href="#">نقاطي</a></li>
<li><a class="dropdown-item" href="#">شوهد مؤخراً</a></li>
<li>
<hr class="dropdown-divider" />
</li>
<li><a class="dropdown-item" href="#">المزيد من الخدمات</a></li>
</ul>
</div>
<!-- Cart -->
<a class="position-relative header-icon" data-bs-toggle="offcanvas" href="#cart-panel"
aria-label="عرض سلة المشتريات">
<i class="fa-solid fa-cart-shopping"></i>
<span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-dark">0</span>
</a>
<!-- Favorites -->
<a class="position-relative header-icon" data-bs-toggle="offcanvas" href="#favoritesOffcanvas"
aria-label="المفضلة">
<i class="fa-regular fa-heart"></i>
<span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger">0</span>
</a>
<!-- Support -->
<a class="position-relative header-icon" data-bs-toggle="modal" href="#customerServiceModal"
aria-label="خدمة العملاء">
<i class="fa-solid fa-headset"></i>
</a>
<!-- Invoices -->
<a class="position-relative header-icon" data-bs-toggle="modal" href="#invoicesModal"
aria-label="الفواتير">
<i class="fa-solid fa-money-bill-wave"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Bottom header -->
<div class="bottom-header">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<!-- Menu icon -->
<button class="navbar-toggler menu-icon" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Header Bottom / Navbar -->
<div class="d-lg-none text-end d-flex gap-2">
<!-- Mobile Icons -->
<div class="dropdown">
<a id="desktopDropdown" class="navbar-toggler menu-icon" data-bs-toggle="dropdown"
type="button" aria-expanded="false">
<i class="fa-solid fa-user"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end text-end" aria-labelledby="desktopDropdown">
<li><a class="dropdown-item" data-bs-toggle="offcanvas" data-bs-target="#login"
href="#">تسجيل
الدخول / حسابي</a></li>
<li><a class="dropdown-item" href="#">طلبي</a></li>
<li><a class="dropdown-item" href="#">رسالتي</a></li>
<li><a class="dropdown-item" href="#">كوبوناتي</a></li>
<li><a class="dropdown-item" href="#">نقاطي</a></li>
<li><a class="dropdown-item" href="#">شوهد مؤخراً</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">المزيد من الخدمات</a></li>
</ul>
</div>
<!-- cart -->
<a class="navbar-toggler menu-icon" data-bs-toggle="offcanvas" href="#cart-panel">
<i class="fa-solid fa-cart-shopping"></i>
</a>
<!-- المفضلة -->
<a class="navbar-toggler menu-icon" data-bs-toggle="offcanvas" href="#favoritesOffcanvas">
<i class="fa-regular fa-heart" style="color: #d80e0e;"></i>
</a>
<!-- خدمة العملاء -->
<a class="navbar-toggler menu-icon" data-bs-toggle="modal" href="#customerServiceModal">
<i class="fa-solid fa-headset"></i>
</a>
<!-- الفواتير -->
<a class="navbar-toggler menu-icon" data-bs-toggle="modal" href="#invoicesModal"
aria-label="الفواتير">
<i class="fa-solid fa-money-bill-wave"></i>
</a>
</div>
<!-- قائمة الفئات -->
<div class="container collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" aria-current="page" href="index.html">جديد
في</a></li>
<li class="nav-item"><a class="nav-link" href="Sales.html">تخفيض الأسعار</a></li>
<li class="nav-item"><a class="nav-link" href="Women's_clothing.html">ملابس نسائية</a></li>
<li class="nav-item"><a class="nav-link" href="Pajamas.html">ملابس نوم</a></li>
<li class="nav-item"><a class="nav-link" href="Shoes.html">أحذية</a></li>
<li class="nav-item"><a class="nav-link" href="Health_Beauty.html">الصحة والجمال</a></li>
<li class="nav-item"><a class="nav-link" href="Children_Childhood.html">الأطفال والأمومة</a>
</li>
<li class="nav-item"><a class="nav-link" href="Jewelry_Accessories.html">مجوهرات
وإكسسوارات</a></li>
<li class="nav-item"><a class="nav-link" href="Bags_Luggage.html">الحقائب والأمتعة</a></li>
<li class="nav-item"><a class="nav-link" href="Sports_an_Outdoor_Activities.html">الرياضة
والأنشطة الخارجية</a>
</li>
<li class="nav-item"><a class="nav-link active" href="Electronics.html">إلكترونيات</a></li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!-- سلة المشتريات -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="cart-panel" aria-labelledby="offcanvasCartLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasCartLabel"
style="font-size: 30px !important;">سلة المشتريات</h5> <button type="button"
class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="empty-cart"> <img src="https://cdn-icons-png.flaticon.com/512/11329/11329060.png"
alt="عربة التسوق فارغة">
<h5>عربة التسوق فارغة</h5>
<p>مرحباً بعودتك! إذا كانت لديك منتجات في عربة التسوق، فقد قمنا بحفظها لك. سجّل الدخول
الآن لرؤيتها، أو متى ما كنت مستعداً لإتمام الشراء.</p>
<a href="#" class="btn btn-login" data-bs-toggle="offcanvas" data-bs-target="#login">
تسجيل الدخول
</a>
</div>
</div>
</div>
<!-- نافذة خدمة العملاء -->
<div class="modal fade" id="customerServiceModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
aria-labelledby="customerServiceModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="btn-close position-absolute top-0 end-0 m-3" data-bs-dismiss="modal"
aria-label="إغلاق"></button>
<div class="modal-header border-0 pt-4">
<h5 class="modal-title w-100 text-center"
style="font-size: 30px !important">
<i class="fa-solid fa-headset text-success"></i>
الخدمة للزبائن
</h5>
</div>
<div class="modal-body text-center">
<p>إن الله مع الصابرين. يرجى ملاحظة أن التسليم سيتأخر لمدة أسبوع.</p>
</div>
</div>
</div>
</div>
<!-- ========== BREADCRUMB ========== -->
<nav aria-label="breadcrumb" class="custom-breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">الصفحة الرئيسية</a></li>
<li class="breadcrumb-item active" aria-current="page"><i class="fa-solid fa-bolt"></i>
الإلكترونيات والأجهزة
</li>
</ol>
</nav>
<!-- ========== HERO SECTION ========== -->
<div class="container-fluid">
<div class="children-hero">
<div class="row align-items-center">
<div class="col-lg-8">
<div class="d-flex gap-3 flex-wrap">
<h1>
<i class="fa-solid fa-bolt text-secondary me-3"></i>
تقنيات ذكية... لأناقة حياتكِ اليومية
</h1>
<p class="mb-4">
اكتشفي عالم الإلكترونيات في إيليجانسيا... حيث الأداء العالي يلتقي بالتصميم الراقي.
</p>
</div>
</div>
<div class="col-lg-4 text-center">
<div class="hero-icon-container">
<i class="fa-solid fa-bolt" style="font-size: 8rem; color: rgba(255,255,255,0.3);"></i>
</div>
</div>
</div>
</div>
</div>
<div class="category_1 container-fluid mt-5">
<button type="button" class="btn btn-filter navbar-toggler d-md-none mb-3" data-bs-toggle="offcanvas"
href="#filter">
<i class="fas fa-filter me-2"></i>الفلترة
</button>
<div class="row">
<div class="col-md-3 d-none d-md-block">
<div class="filter-section sticky-lg-top p-3 bg-light border rounded shadow-sm filter-scrollable">
<h4 class="filter-title text-secondary fw-semibold">التصنيف</h4>
<select class="form-select mb-3" aria-label="اختيار حسب التوصية">
<option selected disabled>اختيار حسب التوصية</option>
<option value="popular">الأوسع انتشاراً</option>
<option value="newest">الوصول الجديد</option>
<option value="top-rated">الأعلى تقييماً</option>
<option value="price-low-high">السعر من الأقل إلى الأكثر</option>
<option value="price-high-low">السعر من الأكثر إلى الأقل</option>
</select>
<h4 class="filter-title text-secondary fw-semibold mt-3">الموديل</h4>
<div class="filter-checkbox size-grid-container mb-2">
<!-- iPhone -->
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 16 Pro Max</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 16 Pro</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 15 Pro Max</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 15 Pro</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 14 Pro Max</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 14 Pro</span>
</label>
<div id="hiddenSizes-0" style="display:none;" class="size-grid">
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 13 Pro Max</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 12 Pro Max</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone XR</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>iPhone 11 Pro</span>
</label>
<!-- Samsung Galaxy -->
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy S24</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy S23</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy S21 Ultra</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy S20</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A72</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A32 4G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A22 5G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A13 5G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A13 4G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy A12</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Galaxy Note 10 5G</span>
</label>
<!-- Xiaomi / Redmi -->
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Redmi 9</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Redmi 10 4G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Redmi Note 10 4G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Redmi Note 11 Pro 5G/Note 11 Pro 4G</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Xiaomi 11</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>Xiaomi Poco X5 Pro</span>
</label>
<!-- HUAWEI -->
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>HUAWEI P40 Pro</span>
</label>
<label class="form-check">
<input name="model" type="checkbox" class="form-check-input">
<span>HUAWEI P40</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-0" class="text-decoration-none">عرض المزيد »</a>
<h4 class="filter-title text-secondary fw-semibold mt-3">نوع</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>مروحة صغيرة</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>مقياس الحرارة والرطوبة</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>مروحة رقبة محمولة</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>مروحة مكتب</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>غطاء لهاتف</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>كفر هاتف في شريط يد</span>
</label>
<div id="hiddenSizes-1" style="display:none;" class="size-grid">
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>في الأذن</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>سماعة أذن واحدة</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>مشبك أذن</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>كفر هاتف بحلقة حامل</span>
</label>
<label class="form-check">
<input name="type" type="checkbox" class="form-check-input">
<span>سلك تلفون</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-1" class="text-decoration-none">عرض المزيد »</a>
<h4 class="filter-title text-secondary fw-semibold mt-3">المقاس</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="size" type="checkbox" class="form-check-input">
<span>مقاس واحد</span>
</label>
<label class="form-check">
<input name="size" type="checkbox" class="form-check-input">
<span>S</span>
</label>
<label class="form-check">
<input name="size" type="checkbox" class="form-check-input">
<span>M</span>
</label>
<label class="form-check">
<input name="size" type="checkbox" class="form-check-input">
<span>L</span>
</label>
</div>
<h4 class="filter-title text-secondary fw-semibold mt-3">اللون</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FFFFFF">
<span>أبيض</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#808080">
<span>رمادي</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#0000FF">
<span>الأزرق</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FF69B4">
<span>متعدد الألوان</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FF0000">
<span>أحمر</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#8B4513">
<span>بني</span>
</label>
<div id="hiddenSizes-2" style="display:none;" class="size-grid">
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#000000">
<span>أسود</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#F0E68C">
<span>كاكي</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#008000">
<span>أخضر</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FFA500">
<span>برتقالي</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#800080">
<span>أرجواني</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FFC0CB">
<span>وردي</span>
</label>
<label class="form-check">
<input name="color" type="color" class="form-check-input" value="#FFFF00">
<span>أصفر</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-2" class="text-decoration-none">عرض المزيد »</a>
<h4 class="filter-title text-secondary fw-semibold mt-3">تكوين</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>القطن</span>
</label>
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>البولي أميد</span>
</label>
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>البوليستر</span>
</label>
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>الكشمير</span>
</label>
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>النايلون</span>
</label>
<label class="form-check">
<input name="composition" type="checkbox" class="form-check-input">
<span>أكريليك</span>
</label>
</div>
<h4 class="filter-title text-secondary fw-semibold mt-3">المواد</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>ألياف كيماوية</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الألمنيوم</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>النايلون</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>مطاط</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>فولاذ غير قابل للصدأ</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>خزف</span>
</label>
<div id="hiddenSizes-3" style="display:none;" class="size-grid">
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>إيفا</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>فسكوزي</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الخشب</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>TPR</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>مادة من الحرير، قطن وصوف</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>البولي أميد</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>سبائك ألمنيوم</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>البولي بروبلين</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>بلاستيك شفاف "بولي ميثيل ميثاكريلات"</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>كلوريد متعدد الفينيل</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>إلاستان</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>سيليكون</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>تريتان كوبوليستر</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>قماش غير متناسج</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>حديد</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>ليف</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>البوليستر</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>PET</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>طين بوليمر</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>أقمشة منسوجة</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الخشب</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الورق</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>تفلون</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>PU</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>سبيكة الزنك</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>البوليسترين</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>مركبات وك</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>أكريلونتريل - ستايرين كوبوليمر</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>البلاستيك</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الراتنج</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>pc</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>الزجاج</span>
</label>
<label class="form-check">
<input name="material" type="checkbox" class="form-check-input">
<span>القماش</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-3" class="text-decoration-none">عرض المزيد »</a>
<h4 class="filter-title text-secondary fw-semibold mt-3">أسلوب</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="style" type="checkbox" class="form-check-input">
<span>كاجوال</span>
</label>
<label class="form-check">
<input name="style" type="checkbox" class="form-check-input">
<span>رياضية</span>
</label>
</div>
<h4 class="filter-title text-secondary fw-semibold mt-3">الماركة التجارية</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>XIAOMI</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>Lenovo</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>HP</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>Realme</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>Baseus</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>KODAK</span>
</label>
<div id="hiddenSizes-4" style="display:none;" class="size-grid">
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>ONIKUMA</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>Samsung</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>Ulanzi</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>UGREEN</span>
</label>
<label class="form-check">
<input name="brand" type="checkbox" class="form-check-input">
<span>HXSJ</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-4" class="text-decoration-none mt-2">عرض المزيد »</a>
<h4 class="filter-title text-secondary fw-semibold mt-3">ميزة</h4>
<div class="filter-checkbox size-grid-container mb-2">
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>ضد الماء</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>خفيف الوزن</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>منبه</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>هاتف</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>تذكير</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>عداد الخطى</span>
</label>
<div id="hiddenSizes-5" style="display:none;" class="size-grid">
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>عدد السعرات الحرارية</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>الطقس</span>
</label>
<label class="form-check">
<input name="feature" type="checkbox" class="form-check-input">
<span>مقاومة للغبرة</span>
</label>
</div>
</div>
<a href="#" id="showMoreBtn-5" class="text-decoration-none mt-2">عرض المزيد »</a>
</div>
</div>
<div class="col-md-9">
<div class="row row-cols-2 row-cols-md-4 all-products">
<div class="col mb-4 product">
<div class="card h-100 w-100 border-0 pb-1">
<div class="image-container position-relative overflow-hidden">
<a href="#" class="btn btn-favorite" title="أضف للمفضلة"
onclick="addToFavorites(this, event)">
<i class="fa-regular fa-heart"></i>
<div class="star star-1">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-2">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-3">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-4">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
</a>
<img src="images/categories/category_10/product_1.png" class="card-img-top p-2"
alt="...">
<img src="images/categories/category_10/product_2.png"
class="card-img-top p-2 hover-image" alt="...">
</div>
<a href="product-details.html" class="product-link">
<p class="card-text truncated-text">حافظة هاتف واقية شفافة بطبعة زهور الكرز مع
سلسلة،
حواف متموجة كريمية، مقاومة للصدمات وسميكة، متوافقة مع هواتف آيفون 16، 11، 13، 16
برو
ماكس، وسامسونج جالاكسي S23، S24، S25، A13 4G، A22، A21S، A51 4G، A52، S22 ألترا،
ريدمي 10 مقاومة للماء ومقاومة للخدش والسقوط
</p>
</a>
<div class="card-body product-overlay mt-0">
<a href="#" class="btn cart-btn" data-bs-toggle="modal"
data-bs-target="#addToCartModal"><i class="fa-solid fa-cart-plus"></i></a>
<div class="product-price" style="color: red !important;">8.00 ر.س
<span class="sales-count text-muted">تم بيع 100+</span>
<span class="discount-badge">-%20</span>
</div>
</div>
<div>
<i class="fa-solid fa-cake-candles"></i>
<span class="text-secondary">عملاء متكررون بشكل كبير</span>
</div>
</div>
</div>
<div class="col mb-4 product">
<div class="card h-100 w-100 border-0">
<div class="image-container position-relative">
<a href="#" class="btn btn-favorite" title="أضف للمفضلة"
onclick="addToFavorites(this, event)">
<i class="fa-regular fa-heart"></i>
<div class="star star-1">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-2">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-3">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
<div class="star star-4">
<svg viewBox="0 0 784.11 815.53" xmlns="http://www.w3.org/2000/svg">
<path class="fil0" d="M392.05 0c-20.9,210.08 -184.06,378.41 -392.05,407.78
207.96,29.37 371.12,197.68 392.05,407.74
20.93,-210.06 184.09,-378.37 392.05,-407.74
-207.98,-29.38 -371.16,-197.69 -392.06,-407.78z" />
</svg>
</div>
</a>
<img src="images/categories/category_10/product_3.png" class="card-img-top p-2"
alt="...">
<img src="images/categories/category_10/product_4.png"
class="card-img-top p-2 hover-image" alt="...">
</div>
<a href="product-details.html" class="product-link">
<p class="card-text truncated-text">YITUMU مروحة مكتبية صغيرة قابلة لإعادة الشحن
1800
مللي أمبير في الساعة، توفر 5 سرعات تبريد محمولة، قوة ريح قوية، تشغيل هادئ، شكل
مربع،
شحن USB، مناسبة للمنزل والمكتب والسيارة والسفر
</p>
</a>
<div class="card-body product-overlay">
<a href="#" class="btn cart-btn" data-bs-toggle="modal"
data-bs-target="#addToCartModal"><i class="fa-solid fa-cart-plus"></i></a>
<div class="product-price" style="color: red !important;">23.73 ر.س
<span class="sales-count text-muted">تم بيع 80+</span>
<span class="discount-badge">-%12</span>
</div>
</div>