-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
791 lines (528 loc) · 51.9 KB
/
Copy pathcart.html
File metadata and controls
791 lines (528 loc) · 51.9 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
<!doctype html>
<!--[if IE 9]> <html class="ie9 no-js" lang="en"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="#030303">
<link rel="canonical" href="cart">
<title>
Your Shopping Cart – Shoescape
</title>
<!-- /snippets/social-meta-tags.liquid -->
<meta property="og:site_name" content="Shoescape">
<meta property="og:url" content="https://shoe-finder.myshopify.com/cart">
<meta property="og:title" content="Your Shopping Cart">
<meta property="og:type" content="website">
<meta property="og:description" content="Find the perfect shoe for you.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Your Shopping Cart">
<meta name="twitter:description" content="Find the perfect shoe for you.">
<script>
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
</script>
<link href="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/theme.scss.css?15906663460824376455" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Karla:400,700" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Unica+One:400,700" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
<script>
window.theme = window.theme || {};
theme.strings = {
stockAvailable: "1 available",
addToCart: "Add to Cart",
soldOut: "Sold Out",
unavailable: "Unavailable",
noStockAvailable: "The item could not be added to your cart because there are not enough in stock.",
willNotShipUntil: "Will not ship until [date]",
willBeInStockAfter: "Will be in stock after [date]",
totalCartDiscount: "You're saving [savings]",
addressError: "Error looking up that address",
addressNoResults: "No results for that address",
addressQueryLimit: "You have exceeded the Google API usage limit. Consider upgrading to a \u003ca href=\"https:\/\/developers.google.com\/maps\/premium\/usage-limits\"\u003ePremium Plan\u003c\/a\u003e.",
authError: "There was a problem authenticating your Google Maps API Key."
};
</script>
<!--[if (gt IE 9)|!(IE)]><!--><script src="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/lazysizes.min.js?15906663460824376455" async="async"></script><!--<![endif]-->
<!--[if lte IE 9]><script src="//cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/lazysizes.min.js?15906663460824376455"></script><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><script src="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/vendor.js?15906663460824376455" defer="defer"></script><!--<![endif]-->
<!--[if lt IE 9]><script src="//cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/vendor.js?15906663460824376455"></script><![endif]-->
<script>
window.theme = window.theme || {};
theme.moneyFormat = "${{amount}}";
</script>
<!--[if (gt IE 9)|!(IE)]><!--><script src="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/theme.js?15906663460824376455" defer="defer"></script><!--<![endif]-->
<!--[if lte IE 9]><script src="//cdn.shopify.com/s/files/1/0063/1557/3308/t/2/assets/theme.js?15906663460824376455"></script><![endif]-->
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/6315573308/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="651ae5cb39ed18e8bda96038998b9144">
<meta id="in-context-paypal-metadata" data-shop-id="6315573308" data-environment="production" data-locale="en_US" data-paypal-v4="true">
<style media="all">.additional-checkout-button{border:0 !important;border-radius:5px !important;display:inline-block;margin:0 0 10px;padding:0 24px !important;max-width:100%;min-width:150px !important;line-height:44px !important;text-align:center !important}.additional-checkout-button+.additional-checkout-button{margin-left:10px}.additional-checkout-button:last-child{margin-bottom:0}.additional-checkout-button span{font-size:14px !important}.additional-checkout-button img{display:inline-block !important;height:1.3em !important;margin:0 !important;vertical-align:middle !important;width:auto !important}@media (max-width: 500px){.additional-checkout-button{display:block;margin-left:0 !important;padding:0 10px !important;width:100%}}.additional-checkout-button--apple-pay{background-color:#000 !important;color:#fff !important;display:none;font-family:-apple-system, 'Helvetica Neue', sans-serif !important;min-width:150px !important;white-space:nowrap !important}.additional-checkout-button--apple-pay:hover,.additional-checkout-button--apple-pay:active,.additional-checkout-button--apple-pay:visited{color:#fff !important;text-decoration:none !important}.additional-checkout-button--apple-pay .additional-checkout-button__logo{background:-webkit-named-image(apple-pay-logo-white) center center no-repeat !important;background-size:auto 100% !important;display:inline-block !important;vertical-align:middle !important;width:3em !important;height:1.3em !important}@media (max-width: 500px){.additional-checkout-button--apple-pay{display:none}}.additional-checkout-button--google-pay{line-height:0 !important;padding:0 !important;border-radius:unset !important;width:80px !important}@media (max-width: 500px){.additional-checkout-button--google-pay{width:100% !important}}.gpay-iframe{height:44px !important;width:100% !important;cursor:pointer;vertical-align:middle !important}.additional-checkout-button--paypal-express{background-color:#ffc439 !important}.additional-checkout-button--paypal{vertical-align:top;line-height:0 !important;padding:0 !important}.additional-checkout-button--amazon{background-color:#fad676 !important;position:relative !important}.additional-checkout-button--amazon .additional-checkout-button__logo{-webkit-transform:translateY(4px) !important;transform:translateY(4px) !important}.additional-checkout-button--amazon .alt-payment-list-amazon-button-image{max-height:none !important;opacity:0 !important;position:absolute !important;top:0 !important;left:0 !important;width:100% !important;height:100% !important}.additional-checkout-button-visually-hidden{border:0 !important;clip:rect(0, 0, 0, 0) !important;clip:rect(0 0 0 0) !important;width:1px !important;height:1px !important;margin:-2px !important;overflow:hidden !important;padding:0 !important;position:absolute !important}
</style>
<style>.shopify-payment-button__button--hidden {
visibility: hidden;
}
.shopify-payment-button__button {
border-radius: 4px;
border: none;
box-shadow: 0 0 0 0 transparent;
color: white;
cursor: pointer;
display: block;
font-size: 1em;
font-weight: 500;
line-height: 1;
text-align: center;
width: 100%;
transition: background 0.2s ease-in-out;
}
.shopify-payment-button__button[disabled] {
opacity: 0.6;
cursor: default;
}
.shopify-payment-button__button--unbranded {
background-color: #1990c6;
padding: 1em 2em;
}
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
background-color: #136f99;
}
.shopify-payment-button__more-options {
background: transparent;
border: 0 none;
cursor: pointer;
display: block;
font-size: 1em;
margin-top: 1em;
text-align: center;
width: 100%;
}
.shopify-payment-button__more-options:hover:not([disabled]) {
text-decoration: underline;
}
.shopify-payment-button__more-options[disabled] {
opacity: 0.6;
cursor: default;
}
.shopify-payment-button__button--branded {
display: flex;
flex-direction: column;
min-height: 44px;
position: relative;
z-index: 1;
}
.shopify-payment-button__button--branded .shopify-cleanslate {
flex: 1 !important;
display: flex !important;
flex-direction: column !important;
}
</style>
<script id="shopify-features" type="application/json">{"accessToken":"651ae5cb39ed18e8bda96038998b9144","betas":["smart-payment-buttons"],"domain":"shoe-finder.myshopify.com","shopId":6315573308,"smart_payment_buttons_url":"https:\/\/cdn.shopifycloud.com\/payment-sheet\/assets\/latest\/spb.js"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "shoe-finder.myshopify.com";
Shopify.theme = {"name":"Venture","id":16029745212,"theme_store_id":775,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
</script>
<script id="__st">var __st={"a":6315573308,"offset":-14400,"reqid":"60f0af64-72c9-46bc-9a62-0d7285c0b5e3","pageurl":"shoe-finder.myshopify.com\/cart","u":"3f20b72feaee"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script>window.Shopify = window.Shopify || {};
window.Shopify.Checkout = window.Shopify.Checkout || {};
window.Shopify.Checkout.apiHost = "shoe-finder.myshopify.com";
window.ShopifyPay = window.ShopifyPay || {};
window.ShopifyPay.acceleratedFlowIncontext = false;
window.ShopifyPay.apiHost = "pay.shopify.com";
window.ShopifyPay.apiToken = "azRMdUNLLzZXRG1Pdi9LbzFidytmc0NPWDdlbUY4NDRsUElTYk5pTWdoQmFYQUJsRkRPaEdRMFFSVCtlZDNzSS0tUXFCd21vRUhvL1JIdkxCN1A0MTNMQT09--e3b52d4a4f1466f92aebf53ef5acad191e3ce9af";
window.ShopifyPay.requestHost = "shoe-finder.myshopify.com"
window.ShopifyPay.sheetStyleSheetUrl = "\/\/cdn.shopify.com\/s\/assets\/shared\/sheet\/main-9591cdb8fc78ba1acaca189815e8d30f2513988b8b83f4a84c83115fcae19d76.css";
</script>
<script>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'CAD';
var meta = {"page":{}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>
<script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
};
</script>
<script class="analytics">
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config;
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
(new Image()).src = '//v.shopify.com/internal_errors/track?error=trekkie_load';
};
script.async = true;
script.src = 'https://cdn.shopify.com/s/javascripts/tricorder/trekkie.storefront.min.js?v=2017.09.05.1';
var first = document.getElementsByTagName('script')[0];
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":6315573308,"isMerchantRequest":null,"themeId":16029745212,"themeCityHash":13144969119158615209}},"Performance":{"navigationTimingApiMeasurementsEnabled":true,"navigationTimingApiMeasurementsSampleRate":1.0},"Session Attribution":{}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(
null,
{}
);
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//cdn.shopify.com/s/assets/shop_events_listener-f2c5800305098f0ebebdfa7d980c9abf56514c46d5305e97a7c476f7c9116163.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();
</script>
<script defer="defer" integrity="sha256-WWGQeyS5siuDoBuPNVc0f7BeXB4VORm7Dr6Lt8hjnSo=" crossorigin="anonymous" src="https://cdn.shopify.com/s/assets/storefront/express_buttons-5961907b24b9b22b83a01b8f3557347fb05e5c1e153919bb0ebe8bb7c8639d2a.js"></script>
<script defer="defer" integrity="sha256-20d/RxNhm1b3GoYSQMHqqayON47NGMqZa2yi9+ZM1M8=" crossorigin="anonymous" src="https://cdn.shopify.com/s/assets/storefront/features-db477f4713619b56f71a861240c1eaa9ac8e378ecd18ca996b6ca2f7e64cd4cf.js"></script>
<link rel="stylesheet" media="screen" href="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/compiled_assets/styles.css?15906663460824376455">
<script id="sections-script" defer="defer" data-sections="voice" src="https://cdn.shopify.com/s/files/1/0063/1557/3308/t/2/compiled_assets/scripts.js?15906663460824376455"></script>
</head>
<body class="template-cart" >
<a class="in-page-link visually-hidden skip-link" href="cart#MainContent">
Skip to content
</a>
<div id="shopify-section-header" class="shopify-section"><style>
.site-header__logo img {
max-width: 450px;
}
</style>
<div id="NavDrawer" class="drawer drawer--left">
<div class="drawer__inner">
<form action="search" method="get" class="drawer__search" role="search">
<input type="search" name="q" placeholder="Search" aria-label="Search" class="drawer__search-input">
<button type="submit" class="text-link drawer__search-submit">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 32 32"><path fill="#444" d="M21.839 18.771a10.012 10.012 0 0 0 1.57-5.39c0-5.548-4.493-10.048-10.034-10.048-5.548 0-10.041 4.499-10.041 10.048s4.493 10.048 10.034 10.048c2.012 0 3.886-.594 5.456-1.61l.455-.317 7.165 7.165 2.223-2.263-7.158-7.165.33-.468zM18.995 7.767c1.498 1.498 2.322 3.49 2.322 5.608s-.825 4.11-2.322 5.608c-1.498 1.498-3.49 2.322-5.608 2.322s-4.11-.825-5.608-2.322c-1.498-1.498-2.322-3.49-2.322-5.608s.825-4.11 2.322-5.608c1.498-1.498 3.49-2.322 5.608-2.322s4.11.825 5.608 2.322z"/></svg>
<span class="icon__fallback-text">Search</span>
</button>
</form>
<ul class="drawer__nav">
<li class="drawer__nav-item">
<a href="index"
class="drawer__nav-link drawer__nav-link--top-level"
>
Home
</a>
</li>
<li class="drawer__nav-item">
<a href="collections/men"
class="drawer__nav-link drawer__nav-link--top-level"
>
Men
</a>
</li>
<li class="drawer__nav-item">
<a href="collections/women"
class="drawer__nav-link drawer__nav-link--top-level"
>
Women
</a>
</li>
<li class="drawer__nav-item">
<a href="collections/all"
class="drawer__nav-link drawer__nav-link--top-level"
>
All
</a>
</li>
</ul>
</div>
</div>
<header class="site-header page-element is-moved-by-drawer" role="banner" data-section-id="header" data-section-type="header">
<div class="site-header__upper page-width">
<div class="grid grid--table">
<div class="grid__item small--one-quarter medium-up--hide">
<button type="button" class="text-link site-header__link js-drawer-open-left">
<span class="site-header__menu-toggle--open">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-hamburger" viewBox="0 0 32 32"><path fill="#444" d="M4.889 14.958h22.222v2.222H4.889v-2.222zM4.889 8.292h22.222v2.222H4.889V8.292zM4.889 21.625h22.222v2.222H4.889v-2.222z"/></svg>
</span>
<span class="site-header__menu-toggle--close">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 32 32"><path fill="#444" d="M25.313 8.55l-1.862-1.862-7.45 7.45-7.45-7.45L6.689 8.55l7.45 7.45-7.45 7.45 1.862 1.862 7.45-7.45 7.45 7.45 1.862-1.862-7.45-7.45z"/></svg>
</span>
<span class="icon__fallback-text">Site navigation</span>
</button>
</div>
<div class="grid__item small--one-half medium-up--two-thirds small--text-center">
<div class="site-header__logo h1" itemscope itemtype="http://schema.org/Organization">
<a href="index" itemprop="url" >Shoescape</a>
</div>
</div>
<div class="grid__item small--one-quarter medium-up--one-third text-right">
<div id="SiteNavSearchCart">
<form action="search" method="get" class="site-header__search small--hide" role="search">
<div class="site-header__search-inner">
<label for="SiteNavSearch" class="visually-hidden">Search</label>
<input type="search" name="q" id="SiteNavSearch" placeholder="Search" aria-label="Search" class="site-header__search-input">
</div>
<button type="submit" class="text-link site-header__link site-header__search-submit">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 32 32"><path fill="#444" d="M21.839 18.771a10.012 10.012 0 0 0 1.57-5.39c0-5.548-4.493-10.048-10.034-10.048-5.548 0-10.041 4.499-10.041 10.048s4.493 10.048 10.034 10.048c2.012 0 3.886-.594 5.456-1.61l.455-.317 7.165 7.165 2.223-2.263-7.158-7.165.33-.468zM18.995 7.767c1.498 1.498 2.322 3.49 2.322 5.608s-.825 4.11-2.322 5.608c-1.498 1.498-3.49 2.322-5.608 2.322s-4.11-.825-5.608-2.322c-1.498-1.498-2.322-3.49-2.322-5.608s.825-4.11 2.322-5.608c1.498-1.498 3.49-2.322 5.608-2.322s4.11.825 5.608 2.322z"/></svg>
<span class="icon__fallback-text">Search</span>
</button>
</form>
<a href="cart" class="site-header__link site-header__cart">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-cart" viewBox="0 0 31 32"><path d="M14.568 25.629c-1.222 0-2.111.889-2.111 2.111 0 1.111 1 2.111 2.111 2.111 1.222 0 2.111-.889 2.111-2.111s-.889-2.111-2.111-2.111zm10.22 0c-1.222 0-2.111.889-2.111 2.111 0 1.111 1 2.111 2.111 2.111 1.222 0 2.111-.889 2.111-2.111s-.889-2.111-2.111-2.111zm2.555-3.777H12.457L7.347 7.078c-.222-.333-.555-.667-1-.667H1.792c-.667 0-1.111.444-1.111 1s.444 1 1.111 1h3.777l5.11 14.885c.111.444.555.666 1 .666h15.663c.555 0 1.111-.444 1.111-1 0-.666-.555-1.111-1.111-1.111zm2.333-11.442l-18.44-1.555h-.111c-.555 0-.777.333-.667.889l3.222 9.22c.222.555.889 1 1.444 1h13.441c.555 0 1.111-.444 1.222-1l.778-7.443c.111-.555-.333-1.111-.889-1.111zm-2 7.443H15.568l-2.333-6.776 15.108 1.222-.666 5.554z"/></svg>
<span class="icon__fallback-text">Cart</span>
<span class="site-header__cart-indicator hide"></span>
</a>
</div>
</div>
</div>
</div>
<div id="StickNavWrapper">
<div id="StickyBar" class="sticky">
<nav class="nav-bar small--hide" role="navigation" id="StickyNav">
<div class="page-width">
<div class="grid grid--table">
<div class="grid__item seven-eighths" id="SiteNavParent">
<button type="button" class="hide text-link site-nav__link site-nav__link--compressed js-drawer-open-left" id="SiteNavCompressed">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-hamburger" viewBox="0 0 32 32"><path fill="#444" d="M4.889 14.958h22.222v2.222H4.889v-2.222zM4.889 8.292h22.222v2.222H4.889V8.292zM4.889 21.625h22.222v2.222H4.889v-2.222z"/></svg>
<span class="site-nav__link-menu-label">Menu</span>
<span class="icon__fallback-text">Site navigation</span>
</button>
<ul class="site-nav list--inline" id="SiteNav">
<li class="site-nav__item">
<a href="index" class="site-nav__link">
Home
</a>
</li>
<li class="site-nav__item">
<a href="collections/men" class="site-nav__link">
Men
</a>
</li>
<li class="site-nav__item">
<a href="collections/women" class="site-nav__link">
Women
</a>
</li>
<li class="site-nav__item">
<a href="collections/all" class="site-nav__link">
All
</a>
</li>
</ul>
</div>
<div class="grid__item one-eighth text-right">
<div class="sticky-only" id="StickyNavSearchCart"></div>
</div>
</div>
</div>
</nav>
<div id="NotificationSuccess" class="notification notification--success" aria-hidden="true">
<div class="page-width notification__inner notification__inner--has-link">
<a href="cart" class="notification__link">
<span class="notification__message">Item added to cart. <span>View cart and check out</span>.</span>
</a>
<button type="button" class="text-link notification__close">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 32 32"><path fill="#444" d="M25.313 8.55l-1.862-1.862-7.45 7.45-7.45-7.45L6.689 8.55l7.45 7.45-7.45 7.45 1.862 1.862 7.45-7.45 7.45 7.45 1.862-1.862-7.45-7.45z"/></svg>
<span class="icon__fallback-text">Close</span>
</button>
</div>
</div>
<div id="NotificationError" class="notification notification--error" aria-hidden="true">
<div class="page-width notification__inner">
<span class="notification__message notification__message--error" aria-live="assertive" aria-atomic="true"></span>
<button type="button" class="text-link notification__close">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 32 32"><path fill="#444" d="M25.313 8.55l-1.862-1.862-7.45 7.45-7.45-7.45L6.689 8.55l7.45 7.45-7.45 7.45 1.862 1.862 7.45-7.45 7.45 7.45 1.862-1.862-7.45-7.45z"/></svg>
<span class="icon__fallback-text">Close</span>
</button>
</div>
</div>
</div>
</div>
</header>
</div>
<div class="page-container page-element is-moved-by-drawer">
<main class="main-content" id="MainContent" role="main">
<div id="shopify-section-cart-template" class="shopify-section"><div data-section-id="cart-template" data-section-type="cart">
<div class="page-width">
<div class="page-empty text-center">
<h1>Shopping Cart</h1>
<p class="cart--empty-message">Your cart is currently empty.</p>
<hr>
<p class="cart--continue-message">
<a href="collections/all" class="btn">Continue browsing</a>
</p>
<p class="cart--cookie-message">Enable cookies to use the shopping cart</p>
</div>
</div>
<script id="CartProductTemplate" type="text/template">
{{#items}}
<tr class="cart__row responsive-table__row">
<td class="cart__cell--image text-center">
<a href="https://shoe-finder.myshopify.com/{{ url }}" class="cart__image">
<img src="https://shoe-finder.myshopify.com/{{ img }}" alt="{{ name }}">
</a>
</td>
<td>
<a href="https://shoe-finder.myshopify.com/{{ url }}" class="h5">
{{{ name }}}
</a>
{{#if variation}}
<p>{{variation}}</p>
{{/if}}
{{#properties}}
{{#each this}}
{{#if this}}
<p>{{@key}}: {{this}}</p>
{{/if}}
{{/each}}
{{/properties}}
<p>
<a href="https://shoe-finder.myshopify.com/cart/change?line={{ line }}&quantity=0">Remove</a>
</p>
</td>
<td class="cart__cell--quantity">
<label for="Updates_{{ key }}" class="cart__quantity-label medium-up--hide">
Quantity</label>
<input type="number" name="updates[]" id="Updates_{{ key }}" value="{{ itemQty }}" min="0" data-line="{{ line }}" aria-label="Quantity">
</td>
<td class="cart__cell--total">
{{#if discountsApplied}}
<small class="cart-item__original-price cart__item-total"><s>{{{originalLinePrice}}}</s></small><br>
<span class="cart__item-total">{{{linePrice}}}</span>
{{else}}
<span class="cart__item-total">{{{linePrice}}}</span>
{{/if}}
{{#if discountsApplied}}
{{#each discounts}}
<p class="cart-item__discount cart__item-total">{{ this.title }}</p>
{{/each}}
{{/if}}
</td>
</tr>
{{/items}}
</script>
</div>
<script type="application/json" id="CartJson-cart-template">
{"token":"802daaec37e99430421edbfe4ee1a350","note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD"}
</script>
</div>
</main>
<div id="shopify-section-footer" class="shopify-section"><footer class="site-footer" role="contentinfo">
<div class="page-width">
<div class="flex-footer">
<div class="flex__item" >
<div class="site-footer__section">
<h4 class="h1 site-footer__section-title">Footer menu</h4>
<ul class="site-footer__list">
<li class="site-footer__list-item"><a href="search">Search</a></li>
</ul>
</div>
</div>
<div class="flex__item" >
<div class="site-footer__section">
<h4 class="h1 site-footer__section-title text-left">Follow us</h4>
<ul class="list--inline social-icons text-left">
</ul>
</div>
</div>
</div>
</div>
<div class="site-footer__copyright">
<div class="page-width">
<div class="grid medium-up--grid--table">
<div class="grid__item medium-up--one-half">
<small>© 2018, <a href="index" title="">Shoescape</a>. <a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&utm_medium=shopify&utm_source=onlinestore">Powered by Shopify</a></small>
</div>
<div class="grid__item medium-up--one-half medium-up--text-right">
<ul class="list--inline payment-icons">
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-american_express" viewBox="0 0 32 32"><path fill="#444" d="M13.397 12.197v-.736H10.57v3.531h2.827v-.725h-1.984v-.704h1.931v-.725h-1.931v-.64zm3.979.214c0-.395-.16-.629-.427-.779-.277-.16-.587-.171-1.024-.171h-1.941v3.541h.843v-1.291h.907c.309 0 .491.032.619.149.149.171.139.48.139.693v.448h.853v-.693c0-.32-.021-.469-.139-.651-.075-.107-.235-.224-.416-.299a1.02 1.02 0 0 0 .587-.949zm-1.109.501c-.117.075-.256.075-.416.075h-1.024v-.789h1.045c.149 0 .299.011.405.064s.181.16.181.309c-.011.16-.075.277-.192.341zM2.069 14.213h1.76l.32.789h1.717v-2.773l1.227 2.773h.747l1.227-2.773v2.773h.864v-3.541H8.534l-1.013 2.4-1.109-2.4H5.036v3.349l-1.44-3.349H2.337L.918 14.768v.224h.821l.331-.779zm.875-2.154l.576 1.408H2.368l.576-1.408zm17.952.16h.8v-.757h-.821c-.587 0-1.013.128-1.28.416-.363.384-.459.853-.459 1.387 0 .64.149 1.045.448 1.355.235.32.661.437 1.227.395h.992l.32-.789h1.76l.331.789h1.717v-2.656l1.6 2.656h1.195v-3.541h-.864v2.464l-1.483-2.464h-1.291v3.349l-1.429-3.349H22.4l-1.195 2.784h-.384c-.224 0-.459-.043-.587-.181-.16-.181-.235-.448-.235-.832 0-.373.096-.651.245-.8.171-.181.341-.224.651-.224zm2.112-.16l.587 1.408h-1.163l.576-1.408zm-5.141-.598h.864v3.541h-.864v-3.541zm3.136 7.04c0-.405-.171-.629-.437-.789-.277-.149-.587-.171-1.013-.171h-1.952v3.541h.853v-1.291h.907c.309 0 .501.032.619.16.16.16.139.48.139.693v.437h.853v-.704c0-.309-.021-.469-.139-.651a.935.935 0 0 0-.416-.299c.203-.075.587-.363.587-.928zm-1.11.502c-.117.064-.256.075-.416.075h-1.024v-.789h1.045c.149 0 .299 0 .405.064.107.053.171.171.171.32s-.075.267-.181.331zm-4.117-1.451h-2.699L12 18.715l-1.045-1.163H7.563v3.541h3.349l1.077-1.173 1.045 1.173h1.643v-1.184h1.056c.736 0 1.472-.203 1.472-1.184-.011-.992-.757-1.173-1.429-1.173zm-5.301 2.795H8.406v-.704h1.856v-.725H8.406v-.64h2.123l.928 1.035-.981 1.035zm3.36.416l-1.301-1.44 1.301-1.397v2.837zm1.93-1.579h-1.088v-.896h1.099c.309 0 .512.128.512.437 0 .299-.203.459-.523.459zm8.523-.907v-.725h-2.816v3.531h2.816v-.736h-1.973v-.704h1.931v-.725h-1.931v-.64zm6.603 1.035a.279.279 0 0 0-.075-.085c-.192-.192-.501-.277-.96-.288l-.459-.011a.996.996 0 0 1-.331-.043.27.27 0 0 1-.181-.267c0-.117.032-.192.128-.256.085-.053.192-.064.341-.064h1.536v-.757h-1.685c-.885 0-1.216.544-1.216 1.056 0 1.12.992 1.067 1.781 1.099.149 0 .235.021.299.075s.107.128.107.235a.362.362 0 0 1-.096.235c-.064.064-.181.085-.341.085h-1.621v.757h1.632c.544 0 .939-.149 1.152-.448.117-.171.181-.395.181-.661-.011-.309-.075-.501-.192-.661zm-1.238 2.464h-2.187v-.32c-.256.203-.715.32-1.152.32h-6.901v-1.141c0-.139-.011-.149-.149-.149h-.107v1.291h-2.272v-1.333c-.384.16-.811.181-1.173.171h-.267v1.173h-2.752l-.683-.768-.715.768H6.794v-4.939h4.555l.651.757.693-.757h3.051c.352 0 .928.032 1.195.288v-.288h2.731c.256 0 .811.053 1.141.288v-.288h4.128v.288c.203-.192.64-.288 1.013-.288h2.315v.288c.245-.171.587-.288 1.056-.288h1.568V.412H.918V12.86l.917-2.101h2.208l.288.587v-.587h2.581l.565 1.269.555-1.269h8.203c.373 0 .704.075.949.288v-.288h2.251v.288c.384-.213.864-.288 1.408-.288h3.253l.299.587v-.587h2.411l.331.587v-.587h2.347v4.928h-2.368l-.448-.747v.747h-2.965l-.32-.789h-.725l-.331.789h-1.536c-.608 0-1.056-.139-1.355-.299v.299h-3.648v-1.12c0-.16-.032-.171-.128-.171h-.139v1.291H8.46v-.608l-.256.608H6.732l-.256-.608v.597H3.639l-.32-.789h-.725l-.331.789H.919v14.901h29.963v-9.045c-.331.181-.779.245-1.227.245zm-3.221-1.451h-1.643v.757h1.643c.853 0 1.323-.352 1.323-1.12 0-.363-.085-.576-.256-.747-.192-.192-.501-.277-.971-.288l-.459-.011a.996.996 0 0 1-.331-.043.27.27 0 0 1-.181-.267c0-.117.032-.192.128-.256.085-.053.181-.064.341-.064h1.547v-.757h-1.696c-.885 0-1.205.544-1.205 1.056 0 1.12.992 1.067 1.781 1.099.149 0 .235.021.299.075a.326.326 0 0 1 .107.235.362.362 0 0 1-.096.235c-.053.075-.171.096-.331.096z"/></svg>
<span class="icon__fallback-text">american express</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-apple_pay" viewBox="0 0 72 45"><defs><path d="M5.711 0c-.21 0-.415.004-.623.01a9.313 9.313 0 0 0-1.354.116c-.453.08-.875.21-1.287.415-.404.2-.775.464-1.096.777A4.249 4.249 0 0 0 .13 3.645a8.13 8.13 0 0 0-.12 1.32c-.007.202-.01.405-.01.607v33.854c0 .202.004.404.01.607.012.44.04.886.12 1.322.08.44.214.853.425 1.255a4.27 4.27 0 0 0 1.891 1.848c.412.205.834.335 1.287.414.447.078.902.106 1.354.117.208.004.414.007.623.007.244.004.49.004.738.004h59.104c.245 0 .492 0 .738-.002.207 0 .414-.004.622-.007.452-.013.907-.04 1.355-.118a4.69 4.69 0 0 0 1.287-.414 4.293 4.293 0 0 0 1.893-1.847c.21-.403.343-.815.423-1.257.08-.437.108-.882.12-1.323.005-.202.006-.405.01-.606V5.574c-.003-.202-.005-.405-.01-.607a8.873 8.873 0 0 0-.12-1.32 4.421 4.421 0 0 0-.424-1.257A4.273 4.273 0 0 0 69.554.542a4.736 4.736 0 0 0-1.287-.414 9.479 9.479 0 0 0-1.354-.115c-.208-.005-.415-.007-.622-.01h-.738V0H5.711zm.004 44.059c-.202 0-.403-.004-.6-.007a8.678 8.678 0 0 1-1.21-.103 3.575 3.575 0 0 1-1.024-.327c-.315-.156-.6-.36-.853-.605a3.306 3.306 0 0 1-.62-.833 3.493 3.493 0 0 1-.333-1 7.744 7.744 0 0 1-.104-1.178 28.63 28.63 0 0 1-.01-.586V5.581c0-.197.004-.392.01-.59.01-.356.03-.776.104-1.18.07-.374.175-.69.335-1a3.351 3.351 0 0 1 1.47-1.434c.314-.155.64-.26 1.022-.326A8.106 8.106 0 0 1 5.113.946c.2-.004.4-.006.6-.007l.735-.003h59.103l.002.001.73.003c.202 0 .402.003.604.008.366.01.797.03 1.21.104.383.067.707.17 1.023.327a3.38 3.38 0 0 1 1.47 1.438c.16.306.265.623.334 1 .074.4.095.82.104 1.18.006.193.008.39.01.587v33.837c-.002.196-.004.39-.01.585-.01.36-.03.782-.104 1.184a3.45 3.45 0 0 1-.334.995 3.315 3.315 0 0 1-1.473 1.437c-.314.156-.638.26-1.02.327-.42.073-.867.093-1.207.102-.2.004-.403.007-.607.007-.243.003-.488.003-.73.003H6.441c-.24 0-.483 0-.726-.002z" id="a"/><path d="M8.812 1.718c-.618.713-1.154 1.853-1.007 2.945 1.07.084 2.157-.543 2.822-1.348h-.002c.665-.807 1.113-1.925.99-3.04-.958.038-2.12.64-2.803 1.443zm13.589.247c-.583.067-1.123.143-1.608.227l-.156.027v16.964h1.548v-7.147c.523.09 1.12.137 1.78.137.875 0 1.696-.112 2.44-.333a5.46 5.46 0 0 0 1.956-1.02c.55-.458.988-1.03 1.307-1.7.316-.672.48-1.462.48-2.35 0-.738-.117-1.4-.345-1.968a4.517 4.517 0 0 0-.96-1.488l-.002.001c-.483-.468-1.11-.83-1.855-1.08-.74-.246-1.63-.37-2.643-.37-.698 0-1.354.033-1.942.1zm.563 8.784a5.083 5.083 0 0 1-.778-.13V3.406c.204-.038.457-.073.754-.105.377-.04.83-.06 1.352-.06.645 0 1.24.076 1.77.23.523.15.98.374 1.36.665.37.288.664.662.867 1.113.203.457.306 1.002.306 1.62 0 1.284-.398 2.267-1.18 2.926l.002-.002c-.796.667-1.92 1.006-3.35 1.006-.39 0-.762-.018-1.103-.05zM8.313 5.753c-.753 0-1.91-.85-3.144-.825-1.617.023-3.108.94-3.94 2.387-1.678 2.922-.426 7.238 1.21 9.6.8 1.158 1.752 2.457 3.008 2.41 1.208-.046 1.66-.78 3.12-.78.719-.001 1.183.189 1.621.379.452.194.876.39 1.521.377 1.298-.028 2.123-1.18 2.92-2.344.913-1.34 1.292-2.64 1.312-2.706-.027-.015-2.528-.97-2.556-3.855v-.001c-.02-2.413 1.968-3.574 2.06-3.63-1.124-1.635-2.863-1.86-3.484-1.886-.1-.01-.199-.014-.298-.014-1.373 0-2.649.888-3.35.888zm24.992 1.048a5.796 5.796 0 0 0-1.707.813l-.127.086.525 1.224.19-.126c.4-.27.85-.484 1.34-.637.49-.15.99-.23 1.486-.23.646 0 1.162.12 1.53.35.373.233.655.523.837.86.19.348.312.72.367 1.104.058.4.086.76.086 1.066v.137c-2.295-.01-4.088.372-5.278 1.138-1.25.805-1.884 1.952-1.884 3.405 0 .418.075.84.223 1.257.152.422.378.8.676 1.122.3.326.687.592 1.15.792.46.2 1.004.3 1.61.3.48 0 .93-.06 1.34-.18a4.55 4.55 0 0 0 1.936-1.148 5.12 5.12 0 0 0 .295-.324h.06l.142 1.375h1.492l-.04-.22a9.314 9.314 0 0 1-.147-1.368l-.004-.004c-.017-.48-.025-.962-.025-1.442v-4.715c0-.56-.056-1.13-.165-1.696a4.316 4.316 0 0 0-.643-1.577 3.593 3.593 0 0 0-1.308-1.16c-.55-.296-1.267-.446-2.13-.446a6.81 6.81 0 0 0-1.827.244zm.313 11.145c-.26-.09-.49-.228-.687-.41a2.028 2.028 0 0 1-.48-.698c-.123-.28-.185-.63-.185-1.035 0-.664.18-1.203.53-1.596.36-.408.827-.723 1.38-.935a7.035 7.035 0 0 1 1.864-.425 16.61 16.61 0 0 1 1.787-.077l.002 2.406c0 .167-.04.394-.115.666a3.363 3.363 0 0 1-.415.828c-.18.264-.407.507-.675.72-.267.21-.586.38-.948.506s-.78.19-1.24.19c-.282 0-.555-.048-.818-.14zm13.407-3.258c-.18.475-.35.953-.502 1.418l-.217.663h-.054c-.068-.22-.14-.447-.22-.687-.15-.46-.312-.913-.477-1.345l-3.09-7.906h-1.654l4.42 11.367c.117.275.134.4.134.45 0 .015-.007.11-.135.455a8.3 8.3 0 0 1-.94 1.743c-.353.482-.677.874-.966 1.163a5.252 5.252 0 0 1-1.036.82c-.36.212-.688.385-.98.514l-.165.075.538 1.31.172-.066c.14-.052.403-.172.802-.367.404-.2.85-.514 1.327-.94a6.81 6.81 0 0 0 1.117-1.256c.326-.467.653-1.018.972-1.63a25.07 25.07 0 0 0 .943-2.062c.31-.763.64-1.616.985-2.535l3.57-9.04-1.654-.002-2.89 7.858z" id="c"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path fill="#121211" mask="url(#b)" d="M-5 50h82V-5H-5z"/><g transform="translate(10 10)"><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><path fill="#121211" mask="url(#d)" d="M-4.567 29.728h61.136V-4.725H-4.567z"/></g></g></svg>
<span class="icon__fallback-text">apple pay</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-google_pay" viewBox="0 0 61.47 37.5"><path d="M57 0H4.45A4.47 4.47 0 0 0 0 4.45V33a4.47 4.47 0 0 0 4.45 4.5H57a4.47 4.47 0 0 0 4.47-4.5V4.45A4.47 4.47 0 0 0 57 0zm3 33a3 3 0 0 1-3 3H4.45a3 3 0 0 1-3-3V4.45a3 3 0 0 1 3-3H57a3 3 0 0 1 3 3V33z"/><path d="M35.1 13a4 4 0 0 0-2.85-1.13h-4.39v12.89h1.66v-5.22h2.73a4 4 0 0 0 2.85-1.1l.18-.19A3.72 3.72 0 0 0 35.1 13zm-1.17 4.34a2.2 2.2 0 0 1-1.64.66h-2.77v-4.55h2.77a2.27 2.27 0 0 1 1.64 3.89zM40.1 15.65a4.06 4.06 0 0 0-3.56 1.73l1.46.92a2.52 2.52 0 0 1 2.15-1.17 2.31 2.31 0 0 1 1.6.6 1.85 1.85 0 0 1 .68 1.47v.34A4.86 4.86 0 0 0 40 19a4.48 4.48 0 0 0-2.77.84 2.62 2.62 0 0 0-1 2.18 2.72 2.72 0 0 0 1 2.16 3.54 3.54 0 0 0 2.44.87 3.15 3.15 0 0 0 2.73-1.52h.08v1.25h1.58v-5.44A3.48 3.48 0 0 0 43 16.65a4.14 4.14 0 0 0-2.9-1zm1.6 7.15a2.68 2.68 0 0 1-1.87.77 2 2 0 0 1-1.28-.43 1.29 1.29 0 0 1-.55-1.08 1.44 1.44 0 0 1 .64-1.19 2.8 2.8 0 0 1 1.68-.48 3.34 3.34 0 0 1 2.16.61 2.47 2.47 0 0 1-.78 1.8zM51.36 15.94l-2.56 6.34-2.63-6.34h-1.8L48 24.2l-2.09 4.45h1.71l5.53-12.71h-1.79zM15.7 16.91v2.85h4A3.42 3.42 0 0 1 18.23 22a4.49 4.49 0 0 1-6.68-2.35 4.47 4.47 0 0 1 4.16-5.88 4 4 0 0 1 2.84 1.11l2.12-2.11a7.13 7.13 0 0 0-5-1.93A7.41 7.41 0 0 0 9.1 21.57a7.39 7.39 0 0 0 6.61 4.08 7.1 7.1 0 0 0 4.91-1.79 7.23 7.23 0 0 0 2.2-5.44 9.39 9.39 0 0 0-.12-1.5h-7z"/></svg>
<span class="icon__fallback-text">google pay</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-master" viewBox="0 0 23 15"><path d="M17.375 8.166c-.537 0-.644.237-.644.437 0 .1.061.276.284.276.437 0 .53-.575.514-.699-.015 0-.03-.015-.154-.015zm-6.301-.975c-.399 0-.476.453-.476.499h.813c-.008-.039.07-.499-.337-.499zm-5.526.975c-.537 0-.645.237-.645.437 0 .1.061.276.285.276.437 0 .53-.575.514-.699-.016 0-.03-.015-.154-.015zm15.45-.899c-.323 0-.576.376-.576.937 0 .346.122.568.384.568.399 0 .583-.515.583-.899.008-.422-.13-.606-.392-.606zM16.292.951a6.7 6.7 0 0 0-4.368 1.62 7.007 7.007 0 0 1 1.88 3.024h-.322a6.772 6.772 0 0 0-1.789-2.817 6.723 6.723 0 0 0-1.788 2.817h-.323A7.004 7.004 0 0 1 11.58 2.47 6.817 6.817 0 0 0 7.097.798 6.859 6.859 0 0 0 .236 7.659a6.86 6.86 0 0 0 11.343 5.196 7.07 7.07 0 0 1-1.872-2.764h.33a6.727 6.727 0 0 0 1.657 2.449 6.731 6.731 0 0 0 1.659-2.449h.33a6.937 6.937 0 0 1-1.759 2.656 6.7 6.7 0 0 0 4.368 1.62c3.699 0 6.708-3.009 6.708-6.709C23 3.958 19.992.95 16.292.95v.001zM3.13 9.44l.414-2.618-.936 2.618h-.499l-.061-2.618-.445 2.618H.897l.584-3.477h1.066l.031 2.133.721-2.133H4.45L3.875 9.44H3.13zm2.495 0l.022-.277c-.015 0-.23.338-.752.338-.268 0-.705-.146-.705-.783 0-.813.66-1.081 1.297-1.081.1 0 .314.015.314.015s.023-.046.023-.184c0-.223-.2-.254-.468-.254-.475 0-.798.13-.798.13l.107-.63s.384-.16.883-.16c.26 0 1.005.03 1.005.882l-.284 2.01h-.644V9.44zm2.709-.89c0 .967-.937.928-1.105.928-.614 0-.799-.085-.822-.092l.1-.636c0-.008.307.107.645.107.199 0 .453-.015.453-.253 0-.354-.913-.269-.913-1.106 0-.737.544-.951 1.09-.951.414 0 .674.053.674.053l-.091.645s-.4-.03-.499-.03c-.26 0-.399.052-.399.237 0 .376.868.191.868 1.098h-.001zM9.4 7.306l-.207 1.266c-.016.1.015.238.268.238.061 0 .138-.023.185-.023l-.092.622c-.077.023-.284.092-.545.092-.338 0-.583-.192-.583-.622 0-.292.414-2.67.43-2.686h.73l-.078.43h.36l-.091.683H9.4zm1.772 1.55c.369 0 .775-.176.775-.176l-.13.705s-.238.123-.768.123c-.583 0-1.258-.246-1.258-1.274 0-.89.544-1.681 1.274-1.681.798 0 1.044.583 1.044 1.067 0 .191-.092.668-.092.668h-1.49c0-.016-.137.567.645.567v.001zm2.426-1.42c-.506-.176-.544.799-.76 2.01h-.752l.453-2.824h.683l-.06.407s.245-.445.567-.445a.92.92 0 0 1 .138.007c-.092.2-.185.376-.269.844v.001zm2.096 1.965s-.392.1-.637.1c-.868 0-1.313-.6-1.313-1.512 0-1.374.822-2.103 1.666-2.103.376 0 .821.176.821.176l-.122.775s-.299-.207-.668-.207c-.498 0-.944.476-.944 1.335 0 .423.208.821.722.821.246 0 .606-.176.606-.176l-.13.79-.001.001zm1.756.039l.023-.277c-.016 0-.23.338-.752.338-.268 0-.706-.146-.706-.783 0-.813.66-1.081 1.297-1.081.1 0 .315.015.315.015s.023-.046.023-.184c0-.223-.2-.254-.468-.254-.476 0-.799.13-.799.13l.108-.63s.384-.16.882-.16c.26 0 1.006.03 1.006.882l-.284 2.01c-.008-.007-.645-.007-.645-.007zm1.512.008h-.752l.453-2.825h.683l-.06.407s.245-.446.567-.446c.091 0 .138.008.138.008-.1.2-.185.376-.269.844-.506-.176-.544.807-.76 2.01v.002zm2.234-.008l.03-.26s-.245.306-.683.306c-.606 0-.906-.583-.906-1.182 0-.929.561-1.735 1.228-1.735.43 0 .706.376.706.376l.16-.975h.73l-.56 3.469h-.706zm1.367-.015a.195.195 0 0 1-.108.03.178.178 0 0 1-.107-.03.226.226 0 0 1-.085-.085.187.187 0 0 1-.03-.108c0-.038.007-.077.03-.107a.226.226 0 0 1 .085-.085.187.187 0 0 1 .107-.03c.039 0 .077.007.108.03.038.016.061.046.085.085.023.038.03.069.03.107a.178.178 0 0 1-.03.108.218.218 0 0 1-.085.085zm-.024-.353a.197.197 0 0 0-.183 0 .156.156 0 0 0-.07.069.197.197 0 0 0 0 .183c.016.03.039.054.07.07a.197.197 0 0 0 .183 0 .151.151 0 0 0 .07-.07.197.197 0 0 0 0-.183.156.156 0 0 0-.07-.07zm-.03.284l-.023-.039a.18.18 0 0 0-.039-.053c-.008-.007-.015-.008-.03-.008h-.023v.1h-.038v-.238h.084c.031 0 .047 0 .062.008.014.008.022.016.03.023.008.007.008.022.008.038s-.008.03-.016.046c-.016.016-.03.023-.046.023.008 0 .016.008.023.016.006.008.022.023.038.046l.03.047h-.06v-.01zm-.015-.17c0-.008 0-.016-.008-.016l-.016-.015c-.008 0-.023-.008-.038-.008h-.047v.069h.047c.022 0 .038 0 .046-.008.016-.008.016-.016.016-.023v.001z" fill="#444" fill-rule="evenodd"/></svg>
<span class="icon__fallback-text">master</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-paypal" viewBox="0 0 57 32"><path fill="#444" d="M53.906 11.425h3.219l-2.656 12h-3.188zm-45.375.031q1.469 0 2.484 1.078t.609 2.984q-.375 1.844-1.703 2.891T6.78 19.456H4.311l-.875 3.969H-.002l2.625-11.969h5.906zm30.625 0q1.469 0 2.5 1.078t.625 2.984q-.25 1.219-.953 2.125t-1.719 1.359-2.234.453h-2.438l-.844 3.969h-3.438l2.625-11.969h5.875zm-26.312 3.032q.156-.031.672-.156t.859-.203.906-.156 1.094-.078q.875-.031 1.641.125t1.406.5.906 1.031.047 1.625l-1.313 6.25h-3.156l.219-.938q-.656.656-1.656.938t-1.891.141-1.422-.984-.281-2.219q.344-1.625 1.953-2.328t4.391-.703q.094-.469-.094-.75t-.563-.391-1-.078q-.813.031-1.75.25t-1.25.406zm30.687 0q.188-.031.547-.125t.672-.172.703-.141.813-.109.859-.047q.906-.031 1.672.125t1.406.5.922 1.031.063 1.625l-1.344 6.25h-3.188l.219-.938q-.656.656-1.672.938t-1.922.141-1.438-.984-.281-2.219q.219-1.125 1.094-1.797t2.156-.953 3.156-.281q.156-.719-.266-.984t-1.391-.234q-.563 0-1.219.125t-1.141.266-.734.266zM6.406 17.175q.438 0 .859-.219t.719-.594.391-.844q.188-.688-.156-1.156t-1-.469H5.563l-.75 3.281h1.594zm30.657 0q.656 0 1.25-.484t.75-1.172-.203-1.156-.984-.469h-1.75l-.688 3.281h1.625zm-15.25-3.094l1.281 9.406-2.313 3.938h3.531l7.5-13.344h-3.25l-3.125 5.563-.5-5.563h-3.125zM16.625 20.3q0-.313.156-.844h-.813q-1.469 0-1.875.781-.313.563-.016.938t.859.375q1.375-.063 1.688-1.25zm30.719 0q.063-.531.188-.844h-.781q-1.563 0-1.906.781-.313.563-.016.938t.859.375q1.406-.063 1.656-1.25z"/></svg>
<span class="icon__fallback-text">paypal</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-shopify_pay" viewBox="0 0 289 62"><g fill="#000" fill-rule="nonzero"><path d="M75.05 33.928c-1.85-.993-2.803-1.83-2.803-2.98 0-1.464 1.322-2.404 3.385-2.404 1.567.036 3.112.374 4.549.993l1.692-5.124s-1.557-1.202-6.135-1.202c-6.374 0-10.79 3.607-10.79 8.679 0 2.875 2.064 5.071 4.814 6.64 2.222 1.254 3.014 2.143 3.014 3.45 0 1.36-1.11 2.458-3.173 2.458a14.386 14.386 0 0 1-5.977-1.569l-1.8 5.124a13.893 13.893 0 0 0 7.193 1.78c6.558 0 11.265-3.19 11.265-8.941.003-3.087-2.377-5.283-5.233-6.904zM100.802 23.098a9.913 9.913 0 0 0-7.722 3.816l-.105-.052 2.803-14.483h-7.299l-7.088 36.86h7.299l2.433-12.6c.952-4.759 3.438-7.686 5.765-7.686 1.64 0 2.274 1.098 2.274 2.667 0 1.07-.107 2.139-.318 3.189l-2.75 14.43h7.299l2.856-14.9a26.66 26.66 0 0 0 .529-4.706c0-4.077-2.168-6.535-5.976-6.535zM123.38 23.21c-8.78 0-14.597 7.843-14.597 16.575 0 5.595 3.49 10.091 10.048 10.091 8.622 0 14.439-7.633 14.439-16.574 0-5.176-3.067-10.091-9.89-10.091zm-3.6 21.122c-2.486 0-3.544-2.089-3.544-4.705 0-4.131 2.169-10.876 6.135-10.876 2.591 0 3.438 2.196 3.438 4.34.004 4.447-2.165 11.243-6.025 11.243l-.004-.002zM151.894 23.21c-4.926 0-7.722 4.288-7.722 4.288h-.105l.423-3.868h-6.453c-.317 2.614-.899 6.588-1.481 9.568l-5.078 26.404h7.299l2.01-10.666h.156a8.588 8.588 0 0 0 4.284.941c8.568 0 14.174-8.68 14.174-17.464.003-4.862-2.166-9.202-7.507-9.202zm-6.981 21.228a4.667 4.667 0 0 1-3.015-1.045l1.216-6.745c.846-4.497 3.226-7.477 5.765-7.477 2.22 0 2.909 2.04 2.909 3.974-.001 4.653-2.803 11.294-6.875 11.294zM170.091 13.158a4.19 4.19 0 0 0-2.977 1.224 4.093 4.093 0 0 0-1.2 2.958c0 2.144 1.375 3.608 3.438 3.608h.105a4.147 4.147 0 0 0 3.06-1.172 4.05 4.05 0 0 0 1.224-3.01 3.41 3.41 0 0 0-1.012-2.609 3.492 3.492 0 0 0-2.638-1zM159.652 49.551h7.299l4.972-25.567h-7.351zM190.926 24.157h-5.078l.265-1.202c.423-2.458 1.904-4.654 4.337-4.654.79.002 1.575.125 2.327.366l1.428-5.648a9.734 9.734 0 0 0-3.967-.627 10.916 10.916 0 0 0-7.138 2.406c-2.486 2.089-3.65 5.124-4.23 8.156l-.212 1.202h-3.384l-1.058 5.438h3.385l-3.862 20.182h7.299l3.862-20.18h5.024l1.002-5.439zM207.869 23.984s-4.563 11.365-6.611 17.568h-.106c-.14-1.997-1.8-17.568-1.8-17.568h-7.67l4.393 23.478c.117.405.06.84-.157 1.202a12.396 12.396 0 0 1-3.967 4.34 15.86 15.86 0 0 1-4.125 2.039l2.01 6.118a16.724 16.724 0 0 0 7.14-3.922c3.332-3.085 6.399-7.843 9.572-14.327l8.939-18.927h-7.618z"/><g><path d="M35.217 59.977l18.067-3.88S46.77 12.548 46.73 12.249a.577.577 0 0 0-.525-.482c-.218-.018-4.835-.356-4.835-.356s-3.208-3.147-3.558-3.495a.774.774 0 0 0-.305-.18l-2.29 52.24zM36.218 7.023c-.07.013-.134.027-.181.04l-1.795.549c-1.071-3.047-2.961-5.847-6.286-5.847-.092 0-.187.004-.281.01A4.05 4.05 0 0 0 24.545 0c-7.749 0-11.448 9.574-12.609 14.438L6.516 16.1c-1.68.522-1.733.574-1.957 2.139C4.396 19.424 0 53.034 0 53.034l33.928 6.284 2.29-52.295zM27.42 9.366V9.7l-5.988 1.829c1.153-4.398 3.313-6.522 5.203-7.324.582 1.658.848 3.408.785 5.162zm-3.088-7.312c.358.007.705.123.994.331-2.483 1.155-5.143 4.064-6.268 9.872l-4.732 1.449c1.318-4.43 4.443-11.652 10.006-11.652zM25.67 27.95a10.626 10.626 0 0 0-4.461-1.059c-3.6 0-3.785 2.236-3.785 2.8 0 3.073 8.105 4.255 8.105 11.45 0 5.664-3.634 9.312-8.535 9.312a11.942 11.942 0 0 1-8.887-3.618l1.575-5.142s3.091 2.623 5.7 2.623a2.314 2.314 0 0 0 1.697-.638 2.26 2.26 0 0 0 .7-1.657c0-4.01-6.653-4.19-6.653-10.778 0-5.545 4.026-10.909 12.153-10.909a10.096 10.096 0 0 1 4.679.887l-2.288 6.729zm3.09-24.117c1.712.213 2.854 2.14 3.588 4.358l-2.895.887v-.62a13.902 13.902 0 0 0-.694-4.625z"/></g><g><path d="M219 61l5.087-27.561a178.392 178.392 0 0 0 1.43-8.9h2.173l-.794 5.232h.106C229.28 26.21 232.46 24 235.852 24c4.822 0 6.624 4.153 6.624 8.414 0 8.737-5.882 18.554-13.99 18.554a10.28 10.28 0 0 1-5.087-1.133h-.106l-2.014 11.163L219 61zm4.769-13.537a7.91 7.91 0 0 0 4.928 1.456c6.73 0 11.392-9.709 11.392-16.344 0-3.074-1.166-6.526-4.928-6.526-3.603 0-8.322 4.692-9.75 12.513l-1.642 8.9zM259.823 50.43c.06-2.33.272-4.655.636-6.958h-.103c-2.914 5.718-6.144 7.498-9.489 7.498-3.869 0-6.2-3.237-6.2-7.875 0-8.845 6.2-19.094 16.056-19.094a16.416 16.416 0 0 1 5.14.756l-2.702 13.916a56.835 56.835 0 0 0-1.112 11.757h-2.226zm3.391-24.001a9.016 9.016 0 0 0-3.073-.378c-7.31 0-13.035 8.306-13.088 16.45-.053 3.399.9 6.419 4.345 6.419 4.133 0 8.797-6.31 10.015-12.998l1.801-9.493zM272.167 24l2.544 15.642c.53 2.912.794 4.692 1.059 7.065h.107c.74-1.888 1.641-3.884 2.861-6.526L285.999 24h2.438l-9.487 20.663c-2.28 5.066-4.667 9.658-8.16 13.053a14.235 14.235 0 0 1-5.99 3.829l-.689-2.05a17.228 17.228 0 0 0 4.61-2.75 22.06 22.06 0 0 0 5.14-6.797 1.85 1.85 0 0 0 .159-1.294L269.835 24h2.332z"/></g></g></svg>
<span class="icon__fallback-text">shopify pay</span>
</li>
<li>
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-visa" viewBox="0 0 43 32"><path fill="#444" d="M30.656 13.544q-1.25-.563-2.594-.531-.969 0-1.484.359t-.516.813.453.813 1.516.891q2.969 1.344 2.938 3.656 0 2.125-1.656 3.391t-4.438 1.266q-2.313-.031-3.906-.719l.469-3.063.438.25q1.781.719 3.313.719.844 0 1.469-.359t.656-1.016q0-.438-.406-.797t-1.469-.891q-.594-.313-1.047-.594t-.953-.734-.781-1.063-.281-1.297q.031-1.969 1.703-3.203t4.266-1.234q1.656 0 3.125.531l-.438 2.969zM16.031 10.45L10.5 24.013H6.812L3.937 13.2q1.5.594 2.734 1.813t1.766 2.656Q6.499 12.325-.001 10.7l.031-.25h5.656q1.313 0 1.594 1.094l1.219 6.25.406 1.875 3.406-9.219h3.719zm4.938 0l-2.188 13.563h-3.5l2.188-13.563h3.5zm22.312 13.562H40q-.25-1.594-.375-2.031l-4.5-.031-.719 2.063h-3.719l5.219-12.469q.469-1.094 1.844-1.094h2.688zm-5.25-9.937l-.219.578q-.125.328-.203.547t-.047.188q-1.125 3-1.406 3.813H39l-.75-3.938z"/></svg>
<span class="icon__fallback-text">visa</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</div>
<div id="shopify-section-voice" class="shopify-section">
</div>
</div>
<script id="QuantityTemplate" type="text/template">
<div class="js-qty">
<input type="text" value="{{ value }}" id="{{ key }}" name="{{ name }}" pattern="[0-9]*" data-line="{{ line }}" class="js-qty__input" aria-live="polite">
<button type="button" class="js-qty__adjust js-qty__adjust--minus" aria-label="Reduce item quantity by one">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-minus" viewBox="0 0 22 3"><path fill="#000" d="M21.5.5v2H.5v-2z" fill-rule="evenodd"/></svg>
<span class="icon__fallback-text">−</span>
</button>
<button type="button" class="js-qty__adjust js-qty__adjust--plus" aria-label="Increase item quantity by one">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-plus" viewBox="0 0 22 21"><path d="M12 11.5h9.5v-2H12V0h-2v9.5H.5v2H10V21h2v-9.5z" fill="#000" fill-rule="evenodd"/></svg>
<span class="icon__fallback-text">+</span>
</button>
</div>
</script>
</body>
</html>