-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
828 lines (796 loc) · 45.8 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Poketo Shop All</title>
<link rel="stylesheet" href="css/nav.css" />
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap" rel="stylesheet">
<!-- Include your css links or google fonts here -->
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/shop.css">
<!-- ... -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navigation -->
<header>
<div class="d-top-container">
<p>
Free Shipping over $50
<a href="#" style="color: white">Shop Now</a>
</p>
</div>
<div class="d-fixed-nav" id="d-fixedNav">
<div class="d-flex d-align-center" id="d-fixed-container">
<div class="d-flex d-align-center" id="d-left-nav">
<div>
<div id="logo">
<img src="https://www.poketo.com/cdn/shop/files/pk-logotype-dark.png?v=1674686921&width=100" alt="logo" />
</div>
<p id="d-shop-family">
Shop the Pattern family
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16">
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</p>
</div>
<div>
<ul class="d-flex d-gap-20" id="d-nav-links">
<li id="d-showDropdown">
<a href="shop.html">Shop All
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<li>
<a href="#">
Best Sellers
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<li>
<a href="#">Stationery
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<li>
<a href="#">Desk Supplies<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<li>
<a href="#">Home & Lifestyle
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<li>
<a href="#">Last Chance</a>
</li>
</ul>
</div>
</div>
<div id="d-hamburger-menu-icon">
<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-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"
/>
</svg>
</div>
<div id="logo-responsive">
<img src="https://www.poketo.com/cdn/shop/files/pk-logotype-dark.png?v=1674686921&width=100" alt="logo" />
</div>
<div id="d-right-nav" class="d-flex d-align-center d-gap-20">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="20" 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-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-person" viewBox="0 0 16 16" id="d-account-nav">
<path
d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z"
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-right" viewBox="0 0 16 16" id="d-account-logout">
<path fill-rule="evenodd" d="M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0z"/>
<path fill-rule="evenodd" d="M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708z"/>
</svg>
<div id="d-cart-nav">
<span id="d-cart-items-num"></span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M18.5 18.5C19.3284 18.5 20 19.1716 20 20C20 20.8284 19.3284 21.5 18.5 21.5C17.6716 21.5 17 20.8284 17 20C17 19.1716 17.6716 18.5 18.5 18.5ZM8.5 18.5C9.32843 18.5 10 19.1716 10 20C10 20.8284 9.32843 21.5 8.5 21.5C7.67157 21.5 7 20.8284 7 20C7 19.1716 7.67157 18.5 8.5 18.5ZM5 2.5C5.45887 2.5 5.85885 2.8123 5.97014 3.25746L8.78078 14.5H18.2192L19.9086 7.74254C19.9756 7.47464 20.247 7.31176 20.5149 7.37873L21.4851 7.62127C21.753 7.68824 21.9158 7.95971 21.8489 8.22761L19.9701 15.7425C19.8589 16.1877 19.4589 16.5 19 16.5H8C7.54113 16.5 7.14115 16.1877 7.02986 15.7425L4.21922 4.5H2.5C2.22386 4.5 2 4.27614 2 4V3C2 2.72386 2.22386 2.5 2.5 2.5H5Z"
fill="#0085ca"
></path>
</svg>
</div>
</div>
</div>
<div id="d-nav-dropdown-menu-container">
<div id="d-nav-dropdown-menu" class="d-grid d-gap-20 d-justify-center d-align-center d-display-none">
<div id="d-dropdown-shopall-nav">
<p>SHOP ALL</p>
<ul>
<li>
<a href="shop.html">Shop All</a>
</li>
<li>
<a href="#">New Arrivals</a>
</li>
<li>
<a href="#">Best Sellers</a>
</li>
<li>
<a href="#">Poketo x Headspace</a>
</li>
<li>
<a href="#">Gift Guide</a>
</li>
</ul>
</div>
<div>
<p>SHOP ALL</p>
<img src="https://www.poketo.com/cdn/shop/files/PK-Nav-Shop_All.jpg?v=1679067571&width=250" alt="shopall" />
<p class="d-dropdown-min-links">Shop all</p>
</div>
<div style="align-self: end">
<img src="https://www.poketo.com/cdn/shop/files/PK-Nav-New_Arrivals_51c5f22b-f43c-4d66-bfc4-c994a23aaf51.jpg?v=1690550261&width=250" alt="new arrivals" />
<p class="d-dropdown-min-links">New arrivals</p>
</div>
<div style="align-self: end">
<img src="https://www.poketo.com/cdn/shop/files/PK-Nav-Best_Sellers.jpg?v=1679067665&width=250" alt="best sellers" />
<p class="d-dropdown-min-links">Best sellers</p>
</div>
</div>
</div>
</div>
</header>
<div id="d-cart-modal">
<div id="d-cart-info" class="d-flex-col">
<div>
<div class="d-flex d-align-center" id="d-cart-header">
<p style="font-size: 26px; font-weight: 700">Your Cart <span id="d-empty-cart">is Empty</span></p>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x-lg" viewBox="0 0 16 16" id="d-close-cart">
<path
fill="none"
stroke="currentColor"
stroke-width="1"
fill-rule="evenodd"
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 8z"
/>
</svg>
</div>
<h3 style="text-align: center;" id="d-loveProducts">You’ll love these products too</h3>
<div id="d-freeShipping" class="d-display-none">
<p>
Congrats! You get free shipping
<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" fill="" class="bi bi-star" viewBox="0 0 16 16">
<path
d="M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.522-3.356c.33-.314.16-.888-.282-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767-3.686 1.894.694-3.957a.56.56 0 0 0-.163-.505L1.71 6.745l4.052-.576a.53.53 0 0 0 .393-.288L8 2.223l1.847 3.658a.53.53 0 0 0 .393.288l4.052.575-2.906 2.77a.56.56 0 0 0-.163.506l.694 3.957-3.686-1.894a.5.5 0 0 0-.461 0z"
/>
</svg>
</p>
<div class="d-flex d-align-center">
<hr width="100%" id="d-cart-hr" />
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-check-circle-fill" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"
/>
</svg>
</div>
<!-- ...... -->
</div>
</div>
<div id="d-cart-contents">
<!-- Product items to append here -->
<!-- Template start -->
<!-- End here -->
</div>
<div id="d-cart-bottom" class="d-flex-col">
<div id="d-taxShiping-info" class="d-display-none">
<div class="d-flex" style="justify-content: space-between">
<p>Subtotal <span id="d-num-items"></span></p>
<p id="d-price">$0</p>
</div>
<p>Taxes, shipping & promos calculated at checkout</p>
</div>
<button id="d-checkout-btn" class="d-flex d-justify-center d-align-center d-gap-10">
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
fill="#ffffff"
class="bi bi-lock"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="#ffffff"
stroke-width="1"
fill-rule="evenodd"
d="M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2m3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2M5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1"
/></svg
>CHECKOUT
</button>
<div id="d-payment-options" class="d-flex d-justify-center d-align-center d-gap-20">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="24" viewBox="0 0 40 24" fill="none" class="independ icon-affirm">
<g clip-path="url(#clip0_1276_136680)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.27793 13.0122C4.88231 13.0122 6.11329 13.7332 6.11329 15.5078V19.8059H4.35371V18.7801C3.95422 19.474 3.11362 20 2.17 20C0.84715 20 0 19.279 0 18.0866C0 16.5828 1.52684 16.0442 3.47318 15.791C3.9939 15.7232 4.26949 15.5502 4.26949 15.2082C4.26949 14.6997 3.85374 14.4472 3.10064 14.4472C2.30797 14.4472 1.42939 14.8735 0.885861 15.3718L0.266851 14.066C0.944474 13.5247 2.19305 13.0122 3.27793 13.0122ZM24.6811 13.0122C24.9301 13.0122 25.2343 13.0398 25.5248 13.1646L25.1819 14.9094C24.9606 14.7431 24.6257 14.6708 24.3768 14.6708C23.7406 14.6708 22.8278 15.1145 22.8278 16.6257V19.8059H20.9447V13.2062H22.7033V14.3155C23.1043 13.442 23.7129 13.0122 24.6811 13.0122ZM34.2552 13.0121C35.4585 13.0121 36.4543 13.7608 36.4543 15.2444V19.806H34.573V15.8405C34.573 14.967 34.0478 14.604 33.5499 14.604C32.9275 14.604 32.3055 15.175 32.3055 16.409V19.806H30.4238V15.8543C30.4238 14.9532 29.9291 14.604 29.3909 14.604C28.7961 14.604 28.1588 15.1889 28.1588 16.409V19.806H26.2748V13.2062H28.0896V14.2045C28.4077 13.5667 29.0971 13.0121 30.0929 13.0121C31.0058 13.0121 31.768 13.436 32.1277 14.1708C32.5149 13.6024 33.2594 13.0121 34.2552 13.0121ZM15.3456 9.90649C16.416 9.90649 17.0044 10.2919 17.0044 10.2919L16.4238 11.6228C16.4238 11.6228 16.0547 11.4121 15.5808 11.4121C15.1519 11.4121 14.6546 11.6618 14.6546 12.5351V13.2062H16.3607V14.6621H14.6546V19.8059H12.7731V14.6621H9.9171V19.8059H8.03543V14.6621H6.94279V13.2062H8.03543V12.7209C8.03543 10.5858 9.40475 9.90649 10.6079 9.90649C11.3631 9.90649 11.9201 10.0884 12.2667 10.2919L11.6862 11.6228C11.4144 11.4687 11.0867 11.4121 10.8431 11.4121C10.4144 11.4121 9.9171 11.6618 9.9171 12.5351V13.2062H12.7731V12.7209C12.7731 10.5858 14.1423 9.90649 15.3456 9.90649ZM19.3637 13.2063V19.8059H17.4839V13.2063H19.3637ZM4.23187 16.8142C2.71341 16.9761 1.88142 17.2304 1.88142 17.9758C1.88142 18.3778 2.12886 18.6221 2.62312 18.6221C3.55946 18.6221 4.23187 17.8112 4.23187 16.8142Z"
fill="black"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M28.4511 4C23.3681 4 18.8387 7.53668 17.5532 12.084H19.395C20.4692 8.6983 24.1144 5.72546 28.4511 5.72546C33.7231 5.72546 38.2787 9.74849 38.2787 16.0119C38.2787 17.4174 38.0973 18.6859 37.7529 19.8059H39.5403L39.5579 19.7442C39.8512 18.5887 40 17.3333 40 16.0119C40 9.02724 34.9229 4 28.4511 4Z"
fill="#0FA0EA"
></path>
</g>
<defs>
<clipPath id="clip0_1276_136680">
<rect width="40" height="24" fill="white"></rect>
</clipPath>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="21" viewBox="4 14.7 32 12" class="independ icon-apple-pay">
<g data-name="Apple Pay" id="Apple_Pay">
<path
d="M9.89,16.19a2,2,0,0,1-1.57.74,2.27,2.27,0,0,1,.56-1.63,2.35,2.35,0,0,1,1.56-.8,2.32,2.32,0,0,1-.55,1.69m.55.86c-.87-.05-1.61.49-2,.49s-1-.46-1.74-.45A2.58,2.58,0,0,0,4.5,18.41c-.93,1.61-.24,4,.67,5.31.44.64,1,1.36,1.67,1.33s.92-.43,1.72-.43,1,.43,1.73.42,1.18-.65,1.63-1.3a5.74,5.74,0,0,0,.72-1.49,2.34,2.34,0,0,1-1.41-2.14,2.4,2.4,0,0,1,1.14-2,2.5,2.5,0,0,0-1.93-1.05m5-1.81V25H17V21.64h2.09a3.08,3.08,0,0,0,3.25-3.2,3.06,3.06,0,0,0-3.2-3.2ZM17,16.52H18.7a1.81,1.81,0,0,1,2.06,1.92,1.83,1.83,0,0,1-2.07,1.94H17ZM25.06,25a2.5,2.5,0,0,0,2.22-1.24h0V25h1.4V20.13c0-1.41-1.12-2.31-2.85-2.31S23.07,18.74,23,20h1.36a1.33,1.33,0,0,1,1.43-1c.92,0,1.44.44,1.44,1.23v.53l-1.89.12c-1.75.1-2.7.82-2.7,2.07A2.14,2.14,0,0,0,25.06,25Zm.4-1.15c-.8,0-1.31-.39-1.31-1s.49-1,1.43-1l1.68-.11v.55A1.64,1.64,0,0,1,25.46,23.89Zm5.12,3.72c1.47,0,2.16-.56,2.77-2.26L36,17.91H34.47l-1.78,5.75h0l-1.78-5.75H29.3L31.86,25l-.14.43a1.21,1.21,0,0,1-1.27,1l-.45,0v1.17A5.35,5.35,0,0,0,30.58,27.61Z"
data-name="<Compound Path>"
id="_Compound_Path_"
></path>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none" class="independ icon-google-pay">
<g clip-path="url(#clip0_1276_136682)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M24.3195 12.2723C24.3195 11.4215 24.2431 10.6033 24.1013 9.81787H12.7998V14.4596H19.2578C18.9796 15.9595 18.1342 17.2304 16.8633 18.0813V21.0921H20.7414C23.0104 19.0031 24.3195 15.9268 24.3195 12.2723Z"
fill="#4285F4"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12.7995 23.999C16.0394 23.999 18.7557 22.9245 20.7411 21.0918L16.863 18.081C15.7885 18.801 14.414 19.2264 12.7995 19.2264C9.67415 19.2264 7.02876 17.1156 6.08515 14.2793H2.07617V17.3883C4.05066 21.31 8.10874 23.999 12.7995 23.999Z"
fill="#34A853"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6.08512 14.2797C5.84512 13.5597 5.70876 12.7907 5.70876 11.9998C5.70876 11.2089 5.84512 10.4398 6.08512 9.71985V6.61084H2.07613C1.26343 8.2308 0.799805 10.0635 0.799805 11.9998C0.799805 13.9361 1.26343 15.7688 2.07613 17.3887L6.08512 14.2797Z"
fill="#FBBC05"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12.7995 4.7726C14.5613 4.7726 16.1431 5.37804 17.3867 6.56709L20.8284 3.12537C18.7503 1.18906 16.034 0 12.7995 0C8.10874 0 4.05066 2.68902 2.07617 6.61073L6.08515 9.71974C7.02876 6.88345 9.67415 4.7726 12.7995 4.7726Z"
fill="#EA4335"
></path>
</g>
<defs>
<clipPath id="clip0_1276_136682">
<rect
width="24"
height="24"
fill="white"
transform="translate(0.560059)"
></rect>
</clipPath>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none" class="independ icon-visa">
<g id="Global" clip-path="url(#clip0_1276_136683)">
<path
d="M23.04 4H1.04004C0.487754 4 0.0400391 4.44772 0.0400391 5V19C0.0400391 19.5523 0.487754 20 1.04004 20H23.04C23.5923 20 24.04 19.5523 24.04 19V5C24.04 4.44772 23.5923 4 23.04 4Z"
fill="#040077"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.39484 14.4044H7.16424L6.24144 10.8044C6.19764 10.6388 6.10464 10.4924 5.96784 10.4234C5.62644 10.25 5.25024 10.112 4.83984 10.0424V9.90385H6.82224C7.09584 9.90385 7.30104 10.112 7.33524 10.3538L7.81404 12.9506L9.04404 9.90385H10.2404L8.39484 14.4044ZM10.9244 14.4044H9.76224L10.7192 9.90385H11.8814L10.9244 14.4044ZM13.385 11.1506C13.4192 10.9082 13.6244 10.7696 13.8638 10.7696C14.24 10.7348 14.6498 10.8044 14.9918 10.9772L15.197 10.0082C14.855 9.86965 14.4788 9.80005 14.1374 9.80005C13.0094 9.80005 12.1886 10.4234 12.1886 11.2886C12.1886 11.9468 12.77 12.2924 13.1804 12.5006C13.6244 12.7082 13.7954 12.8468 13.7612 13.0544C13.7612 13.3658 13.4192 13.5044 13.0778 13.5044C12.6674 13.5044 12.257 13.4006 11.8814 13.2272L11.6762 14.1968C12.0866 14.3696 12.5306 14.4392 12.941 14.4392C14.2058 14.4734 14.9918 13.8506 14.9918 12.9158C14.9918 11.7386 13.385 11.6696 13.385 11.1506ZM19.0592 14.4044L18.1364 9.90385H17.1452C16.94 9.90385 16.7348 10.0424 16.6664 10.25L14.9576 14.4044H16.154L16.3928 13.7468H17.8628L17.9996 14.4044H19.0592ZM17.3162 11.1158L17.6576 12.812H16.7006L17.3162 11.1158Z"
fill="white"
></path>
</g>
<defs>
<clipPath id="clip0_1276_136683">
<rect
width="24"
height="24"
fill="white"
transform="translate(0.0400391)"
></rect>
</clipPath>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="30" viewBox="0 0 152.407 108" class="independ icon-mastercard">
<g>
<rect width="152.407" height="108" style="fill: none"></rect>
<g>
<rect
x="60.4117"
y="25.6968"
width="31.5"
height="56.6064"
style="fill: #ff5f00"
></rect>
<path
d="M382.20839,306a35.9375,35.9375,0,0,1,13.7499-28.3032,36,36,0,1,0,0,56.6064A35.938,35.938,0,0,1,382.20839,306Z"
transform="translate(-319.79649 -252)"
style="fill: #eb001b"
></path>
<path
d="M454.20349,306a35.99867,35.99867,0,0,1-58.2452,28.3032,36.00518,36.00518,0,0,0,0-56.6064A35.99867,35.99867,0,0,1,454.20349,306Z"
transform="translate(-319.79649 -252)"
style="fill: #f79e1b"
></path>
<path
d="M450.76889,328.3077v-1.1589h.4673v-.2361h-1.1901v.2361h.4675v1.1589Zm2.3105,0v-1.3973h-.3648l-.41959.9611-.41971-.9611h-.365v1.3973h.2576v-1.054l.3935.9087h.2671l.39351-.911v1.0563Z"
transform="translate(-319.79649 -252)"
style="fill: #f79e1b"
></path>
</g>
</g>
</svg>
<svg height="30px" width="30px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 291.764 291.764" xml:space="preserve" class="independ icon-amex">
<g>
<path
style="fill: #26a6d1"
d="M18.235,41.025h255.294c10.066,0,18.235,8.169,18.235,18.244v173.235
c0,10.066-8.169,18.235-18.235,18.235H18.235C8.16,250.74,0,242.57,0,232.505V59.269C0,49.194,8.169,41.025,18.235,41.025z"
></path>
<path
style="fill: #ffffff"
d="M47.047,113.966l-28.812,63.76h34.492l4.276-10.166h9.774l4.276,10.166h37.966v-7.759l3.383,7.759
h19.639l3.383-7.923v7.923h78.959l9.601-9.902l8.99,9.902l40.555,0.082l-28.903-31.784l28.903-32.058h-39.926l-9.346,9.719
l-8.707-9.719h-85.897l-7.376,16.457l-7.549-16.457h-34.42v7.495l-3.829-7.495C76.479,113.966,47.047,113.966,47.047,113.966z
M53.721,123.02h16.813l19.111,43.236V123.02h18.418l14.761,31l13.604-31h18.326v45.752h-11.151l-0.091-35.851l-16.257,35.851
h-9.975l-16.348-35.851v35.851h-22.94l-4.349-10.257H50.147l-4.34,10.248H33.516C33.516,168.763,53.721,123.02,53.721,123.02z
M164.956,123.02h45.342L224.166,138l14.315-14.98h13.868l-21.071,22.995l21.071,22.73h-14.497l-13.868-15.154l-14.388,15.154
h-44.64L164.956,123.02L164.956,123.02z M61.9,130.761l-7.741,18.272h15.473L61.9,130.761z M176.153,132.493v8.352h24.736v9.309
h-24.736v9.118h27.745l12.892-13.43l-12.345-13.357h-28.292L176.153,132.493z"
></path>
</g>
</svg>
</div>
</div>
</div>
</div>
<div id="d-hamburger-menu">
<ul class="d-flex-col d-gap-20" id="d-nav-links-responsive">
<li id="d-showDropdown">
<a href="shop.html" class="d-flex d-align-center d-justify-between">Shop All
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<hr width="100%" />
<li>
<a href="#" class="d-flex d-align-center d-justify-between">
Best Sellers
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<hr width="100%" />
<li>
<a href="#" class="d-flex d-align-center d-justify-between">Stationery
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<hr width="100%" />
<li>
<a href="#" class="d-flex d-align-center d-justify-between">Desk Supplies<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<hr width="100%" />
<li>
<a href="#" class="d-flex d-align-center d-justify-between">Home & Lifestyle
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="12"
fill="currentColor"
class="bi bi-chevron-down"
viewBox="0 0 16 16"
>
<path
fill="none"
stroke="currentColor"
stroke-width="2"
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-.708"
/>
</svg>
</a>
</li>
<hr width="100%" />
<li>
<a href="#">Last Chance</a>
</li>
<hr width="100%" />
<li>
<a href="login.html" id="d-login-hamburger">Login / Account</a>
</li>
</ul>
</div>
<!-- DO NOT EDIT ANYTHING FROM ABOVE -->
<!-- YOUR CODE SHOULD BE PLACED HERE -->
<section id="d-shopAll-hero">
<div class="d-grid d-shopAll-hero-grid d-align-center d-gap-20">
<div class="d-shopAll-hero-txt">
<h1>
Shop All
</h1>
<p>From desk to dinner table, our range of fun, functional stationery and home goods brings art and design into your every day.</p>
</div>
<div id="d-shopAll-hero-img"></div>
</div>
</section>
<section id="d-shopAll-grid">
<div class="d-flex d-justify-between" id="d-shopAll-filter">
<div class="d-flex d-gap-20">
<p>Filter:</p>
<p>Availability <svg xmlns="http://www.w3.org/2000/svg " width="16 " height="12 " fill="currentColor " class="bi bi-chevron-down " viewBox="0 0 16 16 ">
<path
fill="none "
stroke="currentColor "
stroke-width="1 "
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-.708 "
/>
</svg></p>
<p>Price <svg xmlns="http://www.w3.org/2000/svg " width="16 " height="12 " fill="currentColor " class="bi bi-chevron-down " viewBox="0 0 16 16 ">
<path
fill="none "
stroke="currentColor "
stroke-width="1 "
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-.708 "
/>
</svg></p>
</div>
<div class="d-flex d-gap-20 d-justify-center" style="width: 25%;">
<p>Sort by:</p>
<div id="d-featured" class="d-flex d-align-center">
<span>Featured <svg xmlns="http://www.w3.org/2000/svg " width="16 " height="12 " fill="currentColor " class="bi bi-chevron-down " viewBox="0 0 16 16 ">
<path
fill="none "
stroke="currentColor "
stroke-width="1 "
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-.708 "
/>
</svg></span>
</div>
<p>18 items</p>
</div>
</div>
<div class="d-justify-between" id="d-shopAll-filter-mini">
<div class="d-flex d-gap-20">
<p><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#0085CA" class="bi bi-sliders" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1z"/>
</svg> Filter</p>
</div>
<div class="d-flex d-justify-center" style="width: 25%;">
<p>18 items</p>
</div>
</div>
<div id="d-shopAll-grid-items" class="d-grid d-gap-20">
</div>
</section>
<!-- DO NOT EDIT ANYTHING FROM BELOW -->
<!-- Fixed bottom -->
<div class="d-fixed-bottom d-fixed-bottom-accessibility d-flex d-justify-center d-align-center ">
<svg xmlns="http://www.w3.org/2000/svg " width="20 " height="20 " fill="currentColor " class="bi bi-universal-access-circle " viewBox="0 0 16 16 ">
<path
d="M8 4.143A1.071 1.071 0 1 0 8 2a1.071 1.071 0 0 0 0 2.143m-4.668 1.47 3.24.316v2.5l-.323 4.585A.383.383 0 0 0 7 13.14l.826-4.017c.045-.18.301-.18.346 0L9 13.139a.383.383 0 0 0 .752-.125L9.43 8.43v-2.5l3.239-.316a.38.38 0 0 0-.047-.756H3.379a.38.38
0 0 0-.047.756Z "
/>
<path
d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8 "
/>
</svg>
</div>
<!-- Footer -->
<footer class="d-flex-col d-gap-20 ">
<div class="d-footer-top ">
<div>
<img src="https://www.poketo.com/cdn/shop/files/pk-logotype-light.png?v=1674686921&width=100 " alt="footer-logo " />
</div>
<p class="d-flex d-justify-center d-align-center ">
Shop the Pattern family
<svg xmlns="http://www.w3.org/2000/svg " width="16 " height="12 " fill="currentColor " class="bi bi-chevron-up " viewBox="0 0 16 16 ">
<path
fill="none "
stroke="currentColor "
stroke-width="2 "
fill-rule="evenodd "
d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z "
/>
</svg>
</p>
</div>
<div class="d-footer-links d-grid ">
<div>
<p>SHOP</p>
<ul>
<li><a href="shop.html ">Shop All</a></li>
<li><a href="# ">Best Sellers</a></li>
<li><a href="# ">Stationery</a></li>
<li><a href="# ">Home Decor</a></li>
<li><a href="# ">Gift Cards</a></li>
</ul>
</div>
<div>
<p>LEARN</p>
<ul>
<li><a href="# ">About Us</a></li>
<li><a href="# ">Blog</a></li>
<li><a href="# ">Careers</a></li>
</ul>
</div>
<div>
<p>HELP</p>
<ul>
<li><a href="# ">FAQ</a></li>
<li><a href="# ">Supplemental Privacy </a></li>
<li><a href="# ">Policy </a></li>
<li><a href="# ">My Account</a></li>
</ul>
</div>
<div>
<p>CONNECT</p>
<ul>
<li><a href="# ">Affiliate Program</a></li>
<li><a href="# ">Wholesale</a></li>
<li><a href="# ">Acquisitions</a></li>
<li><a href="# ">Customization</a></li>
<li><a href="# ">Store Location</a></li>
</ul>
</div>
<div class="d-flex-col ">
<p>Join Our Family</p>
<p style="color: #dedede; font-size: 14px ">
Sign up for our Poketo newsletter and receive 10% off your first purchase. You'll be the first to hear about new arrivals, surprise savings, and more.
</p>
<div class="d-flex d-footer-input ">
<input type="text " name=" " id=" " placeholder="Enter your email " />
<button>SIGN UP</button>
</div>
<div class="d-flex d-gap-20 d-footer-socials ">
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-facebook " viewBox="0 0 16 16 ">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354
2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951 "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-instagram " viewBox="0 0 16 16 ">
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923
1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16
8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275
1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5
2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044
2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334 "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-tiktok " viewBox="0 0 16 16 ">
<path
d="M9 0h1.98c.144.715.54 1.617 1.235 2.512C12.895 3.389 13.797 4 15 4v2c-1.753 0-3.07-.814-4-1.829V11a5 5 0 1 1-5-5v2a3 3 0 1 0 3 3z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-twitter-x " viewBox="0 0 16 16 ">
<path
d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-pinterest " viewBox="0 0 16 16 ">
<path
d="M8 0a8 8 0 0 0-2.915 15.452c-.07-.633-.134-1.606.027-2.297.146-.625.938-3.977.938-3.977s-.239-.479-.239-1.187c0-1.113.645-1.943 1.448-1.943.682 0 1.012.512 1.012 1.127 0 .686-.437 1.712-.663 2.663-.188.796.4 1.446 1.185 1.446 1.422
0 2.515-1.5 2.515-3.664 0-1.915-1.377-3.254-3.342-3.254-2.276 0-3.612 1.707-3.612 3.471 0 .688.265 1.425.595 1.826a.24.24 0 0 1 .056.23c-.061.252-.196.796-.222.907-.035.146-.116.177-.268.107-1-.465-1.624-1.926-1.624-3.1 0-2.523 1.834-4.84 5.286-4.84
2.775 0 4.932 1.977 4.932 4.62 0 2.757-1.739 4.976-4.151 4.976-.811 0-1.573-.421-1.834-.919l-.498 1.902c-.181.695-.669 1.566-.995 2.097A8 8 0 1 0 8 0 "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="25 " height="25 " fill="currentColor " class="bi bi-arrow-up " viewBox="0 0 16 16 ">
<path
fill-rule="evenodd "
d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5 "
/>
</svg>
</div>
</div>
</div>
<div class="d-footer-rating ">
<p style="font-weight: bold ">How are we doing?</p>
<p style="font-size: 13px ">Rate your shopping experience with us</p>
<svg xmlns="http://www.w3.org/2000/svg " width="30 " height="30 " fill="currentColor " class="bi bi-star-fill " viewBox="0 0 16 16 ">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389
2.256z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="30 " height="30 " fill="currentColor " class="bi bi-star-fill " viewBox="0 0 16 16 ">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389
2.256z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="30 " height="30 " fill="currentColor " class="bi bi-star-fill " viewBox="0 0 16 16 ">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389
2.256z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="30 " height="30 " fill="currentColor " class="bi bi-star-fill " viewBox="0 0 16 16 ">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389
2.256z "
/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg " width="30 " height="30 " fill="currentColor " class="bi bi-star-fill " viewBox="0 0 16 16 ">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389
2.256z "
/>
</svg>
</div>
<div class="d-flex d-align-center " style="justify-content: space-between ">
<p>© 2024 Pattern</p>
<ul class="d-flex d-gap-20 ">
<li><a href="# ">Terms & Conditions</a></li>
<li><a href="# ">Privacy Policy</a></li>
<li><a href="# ">Accessibility</a></li>
</ul>
</div>
</footer>
<script src="js/nav.js "></script>
<!-- Include your other js scripts here -->
<!-- DONT INCLUDE JQUERY SCRIPT, ALREADY AT THE TOP-->
<script src="js/shop.js "></script>
<!-- ... -->
</body>
</html>