forked from recombee/js-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
product_feed_sample.xml
5007 lines (4505 loc) · 250 KB
/
product_feed_sample.xml
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
<?xml version="1.0"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<item>
<g:id>product-1</g:id>
<g:title>Active classic boxers</g:title>
<g:description>They keep their cool, especially in sticky situations</g:description>
<g:link>https://mysampleshop.com/products/product-product-1.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-2</g:id>
<g:title>Active sport boxer briefs</g:title>
<g:description>Skinning up Glory requires enough movement without your boxers deciding to poach their own route</g:description>
<g:link>https://mysampleshop.com/products/product-product-2.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>34 USD</g:price>
</item>
<item>
<g:id>product-3</g:id>
<g:title>Active sport briefs</g:title>
<g:description>These superbreathable no-fly briefs are the minimalist's choice for high-octane endeavors</g:description>
<g:link>https://mysampleshop.com/products/product-product-3.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>66 USD</g:price>
</item>
<item>
<g:id>product-4</g:id>
<g:title>Alpine guide pants</g:title>
<g:description>These durable, weather-resistant and breathable soft-shell pants keep stride on every mountain endeavor</g:description>
<g:link>https://mysampleshop.com/products/product-product-4.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>70 USD</g:price>
</item>
<item>
<g:id>product-5</g:id>
<g:title>Alpine wind jkt</g:title>
<g:description>On high ridges, steep ice and anything alpine, this jacket serves as a true ""best of all worlds"" staple</g:description>
<g:link>https://mysampleshop.com/products/product-product-5.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>48 USD</g:price>
</item>
<item>
<g:id>product-6</g:id>
<g:title>Ascensionist jkt</g:title>
<g:description>Our most technical soft shell for full-on mountain pursuits strikes the alpinist's balance between protection and minimalism</g:description>
<g:link>https://mysampleshop.com/products/product-product-6.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>38 USD</g:price>
</item>
<item>
<g:id>product-7</g:id>
<g:title>Atom</g:title>
<g:description>A multitasker's cloud nine, the Atom plays the part of courier bag, daypack and carry-on</g:description>
<g:link>https://mysampleshop.com/products/product-product-7.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>68 USD</g:price>
</item>
<item>
<g:id>product-8</g:id>
<g:title>Print banded betina btm</g:title>
<g:description>Our fullest coverage bottoms, the Betina fits highest across the hips with a slightly scooped, lined front</g:description>
<g:link>https://mysampleshop.com/products/product-product-8.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>34 USD</g:price>
</item>
<item>
<g:id>product-9</g:id>
<g:title>Baby micro d-luxe cardigan</g:title>
<g:description>Micro D-Luxe is a heavenly soft fabric with down-to-earth applications</g:description>
<g:link>https://mysampleshop.com/products/product-product-9.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>63 USD</g:price>
</item>
<item>
<g:id>product-10</g:id>
<g:title>Baby sun bucket hat</g:title>
<g:description>This hat goes on when the sun rises above the horizon, and stays on when raindrops start falling</g:description>
<g:link>https://mysampleshop.com/products/product-product-10.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>70 USD</g:price>
</item>
<item>
<g:id>product-11</g:id>
<g:title>Baby sunshade top</g:title>
<g:description>Soft, stretchy polyester fabric is fast wicking, quick drying and breathable</g:description>
<g:link>https://mysampleshop.com/products/product-product-11.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>30 USD</g:price>
</item>
<item>
<g:id>product-12</g:id>
<g:title>Baggies shorts</g:title>
<g:description>Even Baggies, our most popular shorts for anything, or nothing, occasionally need an update</g:description>
<g:link>https://mysampleshop.com/products/product-product-12.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>46 USD</g:price>
</item>
<item>
<g:id>product-13</g:id>
<g:title>Beach bucket</g:title>
<g:description>Whenever you're at the junction of water and land, neutralize the sun's unforgiving rays with the wide brim and soft design of our versatile Beach Bucket</g:description>
<g:link>https://mysampleshop.com/products/product-product-13.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>54 USD</g:price>
</item>
<item>
<g:id>product-14</g:id>
<g:title>Better sweater jkt</g:title>
<g:description>June nights camped out in New Mexico's Navajo country are starry and cold</g:description>
<g:link>https://mysampleshop.com/products/product-product-14.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>22 USD</g:price>
</item>
<item>
<g:id>product-15</g:id>
<g:title>Borderless shorts-11 in.</g:title>
<g:description>Go forward where others cringe</g:description>
<g:link>https://mysampleshop.com/products/product-product-15.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>45 USD</g:price>
</item>
<item>
<g:id>product-16</g:id>
<g:title>Borderless shorts-7 in.</g:title>
<g:description>One of summertime's gifts is the chance to freely traverse alpine country</g:description>
<g:link>https://mysampleshop.com/products/product-product-16.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>48 USD</g:price>
</item>
<item>
<g:id>product-17</g:id>
<g:title>Bucket hat</g:title>
<g:description>Besides its shade-casting prowess, the Bucket provides perfect eye cover after an extra-large fish taco fest</g:description>
<g:link>https://mysampleshop.com/products/product-product-17.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>45 USD</g:price>
</item>
<item>
<g:id>product-18</g:id>
<g:title>Cap 1 bottoms</g:title>
<g:description>Spring skiing is as transient as the wind</g:description>
<g:link>https://mysampleshop.com/products/product-product-18.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>29 USD</g:price>
</item>
<item>
<g:id>product-19</g:id>
<g:title>Cap 1 boxer briefs</g:title>
<g:description>On bivy or belay, the form-fitting Capilene 1 Boxer Briefs stay dry and comfortable</g:description>
<g:link>https://mysampleshop.com/products/product-product-19.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>67 USD</g:price>
</item>
<item>
<g:id>product-20</g:id>
<g:title>Cap 1 graphic t-shirt</g:title>
<g:description>This tee is made from our lightest-weight Capilene fabric to achieve a harmonic balance between technical ability and slacker prowess</g:description>
<g:link>https://mysampleshop.com/products/product-product-20.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>59 USD</g:price>
</item>
<item>
<g:id>product-21</g:id>
<g:title>Cap 1 t-shirt</g:title>
<g:description>Minimally styled but technically evolved for punishing expanses of hot country, our silky, ultra-breathable Capilene 1 T-Shirt is quick to wick and fast to dry</g:description>
<g:link>https://mysampleshop.com/products/product-product-21.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>32 USD</g:price>
</item>
<item>
<g:id>product-22</g:id>
<g:title>Cap 2 t-shirt</g:title>
<g:description>This one revels in the sweat jamborees of hill climbs, ridge runs and desert singletrack under a resolute sun</g:description>
<g:link>https://mysampleshop.com/products/product-product-22.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>51 USD</g:price>
</item>
<item>
<g:id>product-23</g:id>
<g:title>Cap 2 zip neck</g:title>
<g:description>Designed for wet-then-chill pursuits like backcountry skiing, alpine climbing and mountain trekking, our fastest-drying performance baselayer will keep you cool during endurance activities in warmer temperatures, but also insulates when skies turn dark</g:description>
<g:link>https://mysampleshop.com/products/product-product-23.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>32 USD</g:price>
</item>
<item>
<g:id>product-24</g:id>
<g:title>Cap 3 zip neck</g:title>
<g:description>Capilene 3 provides excellent insulation and next-to-skin comfort for endurance activities in cool to cold conditions</g:description>
<g:link>https://mysampleshop.com/products/product-product-24.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>42 USD</g:price>
</item>
<item>
<g:id>product-25</g:id>
<g:title>Cap 4 bottoms</g:title>
<g:description>For sufferfests like the Grand in January, a pair of these warm bottoms will add a bright side to your grief</g:description>
<g:link>https://mysampleshop.com/products/product-product-25.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>38 USD</g:price>
</item>
<item>
<g:id>product-26</g:id>
<g:title>City by the sea t-shirt</g:title>
<g:description>Illustrating the renaissance of sea-inspired, community living, artist Geoff McFetridge's work adorns the City-By-The-Sea T-Shirt</g:description>
<g:link>https://mysampleshop.com/products/product-product-26.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>58 USD</g:price>
</item>
<item>
<g:id>product-27</g:id>
<g:title>Compound cargo pants</g:title>
<g:description>The ultimate do-everything pants, built to withstand daily abuse</g:description>
<g:link>https://mysampleshop.com/products/product-product-27.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-28</g:id>
<g:title>Compound cargo pants</g:title>
<g:description>The ultimate do-everything pants, built to withstand daily abuse</g:description>
<g:link>https://mysampleshop.com/products/product-product-28.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>39 USD</g:price>
</item>
<item>
<g:id>product-29</g:id>
<g:title>Continental shorts</g:title>
<g:description>Wrinkle-resistant travel shorts that do what any great mountainside-to-museum garment should: wick moisture, dry quickly, and look sharp after successive days of use</g:description>
<g:link>https://mysampleshop.com/products/product-product-29.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>59 USD</g:price>
</item>
<item>
<g:id>product-30</g:id>
<g:title>Cotton board shorts</g:title>
<g:description>A classic in fabric and form, the 5</g:description>
<g:link>https://mysampleshop.com/products/product-product-30.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>61 USD</g:price>
</item>
<item>
<g:id>product-31</g:id>
<g:title>Crosstown</g:title>
<g:description>Crosstown or cross-country, this fully featured commuter backpack ensures that your life stays organized whether you're office-bound, hiking the steep and narrow, or somewhere in the global commute</g:description>
<g:link>https://mysampleshop.com/products/product-product-31.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>31 USD</g:price>
</item>
<item>
<g:id>product-32</g:id>
<g:title>Custodian pants</g:title>
<g:description>The graveyard shift has its advantages: quitting time = dawn patrol</g:description>
<g:link>https://mysampleshop.com/products/product-product-32.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>21 USD</g:price>
</item>
<item>
<g:id>product-33</g:id>
<g:title>Deep wading jkt</g:title>
<g:description>Whether you're chasing Olympic Peninsula chrome or reaching for stripers beyond the break, sometimes you simply have to jump in and go deep</g:description>
<g:link>https://mysampleshop.com/products/product-product-33.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>51 USD</g:price>
</item>
<item>
<g:id>product-34</g:id>
<g:title>Delivery shorts</g:title>
<g:description>Locals know all the best spots</g:description>
<g:link>https://mysampleshop.com/products/product-product-34.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>55 USD</g:price>
</item>
<item>
<g:id>product-35</g:id>
<g:title>Down sweater vest</g:title>
<g:description>Impossible to confuse with the sweater vests found at golf courses and bingo parlors, ours comes packed with ultra-toasty 800-fill down that traps heat in alpine conditions</g:description>
<g:link>https://mysampleshop.com/products/product-product-35.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>36 USD</g:price>
</item>
<item>
<g:id>product-36</g:id>
<g:title>Dragoons t-shirt</g:title>
<g:description>These dragoons have dropped their weapons in favor of big wave guns</g:description>
<g:link>https://mysampleshop.com/products/product-product-36.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>57 USD</g:price>
</item>
<item>
<g:id>product-37</g:id>
<g:title>Duck pants</g:title>
<g:description>Essential wear for splitting logs, driving nails or applying a little more chewing gum to the crack in the U-joint</g:description>
<g:link>https://mysampleshop.com/products/product-product-37.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>40 USD</g:price>
</item>
<item>
<g:id>product-38</g:id>
<g:title>Elias fz sweatshirt</g:title>
<g:description>Clean as a Wingate splitter</g:description>
<g:link>https://mysampleshop.com/products/product-product-38.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>23 USD</g:price>
</item>
<item>
<g:id>product-39</g:id>
<g:title>Elias sweatshirt</g:title>
<g:description>wear it bouldering, working the slack line, and setting up a bivy out of view of the ranger's probing eyes</g:description>
<g:link>https://mysampleshop.com/products/product-product-39.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>36 USD</g:price>
</item>
<item>
<g:id>product-40</g:id>
<g:title>Fezzman shirt</g:title>
<g:description>Look fresh even when you feel disheveled</g:description>
<g:link>https://mysampleshop.com/products/product-product-40.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>30 USD</g:price>
</item>
<item>
<g:id>product-41</g:id>
<g:title>Fish frenzy t-shirt</g:title>
<g:description>Dependent on free-flowing currents, the Salmon's extraordinary cycle of life perseveres with the Fish Frenzy T-Shirt</g:description>
<g:link>https://mysampleshop.com/products/product-product-41.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>35 USD</g:price>
</item>
<item>
<g:id>product-42</g:id>
<g:title>Freewheeler</g:title>
<g:description>This sturdy wheeled bag holds a week's worth of clothes and keeps boots or dirty gear in a separate compartment, a floating baffle separating the two</g:description>
<g:link>https://mysampleshop.com/products/product-product-42.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>36 USD</g:price>
</item>
<item>
<g:id>product-43</g:id>
<g:title>Gi ii pants</g:title>
<g:description>The travel-tested, quick-drying durability of Gi II Pants stand up to rock and river, and provide life-of-the-garment 40-UPF sun protection</g:description>
<g:link>https://mysampleshop.com/products/product-product-43.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>42 USD</g:price>
</item>
<item>
<g:id>product-44</g:id>
<g:title>Gi ii shorts</g:title>
<g:description>Base camp favorites, the Gi II's featherlight weight and motion-friendly crotch gusset invite day hikes, bouldering sessions, and dips in the creek</g:description>
<g:link>https://mysampleshop.com/products/product-product-44.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>24 USD</g:price>
</item>
<item>
<g:id>product-45</g:id>
<g:title>Girl's boardie capris</g:title>
<g:description>Built for two-week camping trips on Baja beaches, these capris are made of a lightweight, soft-brushed 3</g:description>
<g:link>https://mysampleshop.com/products/product-product-45.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>44 USD</g:price>
</item>
<item>
<g:id>product-46</g:id>
<g:title>Girl's boardie shorts</g:title>
<g:description>put her in some boardies</g:description>
<g:link>https://mysampleshop.com/products/product-product-46.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>20 USD</g:price>
</item>
<item>
<g:id>product-47</g:id>
<g:title>Girl's cotton tank dress</g:title>
<g:description>This soft cotton dress feels breezy and cool, just like a day at the beach</g:description>
<g:link>https://mysampleshop.com/products/product-product-47.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>44 USD</g:price>
</item>
<item>
<g:id>product-48</g:id>
<g:title>Going big in b.c. poster</g:title>
<g:description>Going big in b</g:description>
<g:link>https://mysampleshop.com/products/product-product-48.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>42 USD</g:price>
</item>
<item>
<g:id>product-49</g:id>
<g:title>Great divider</g:title>
<g:description>From standing waves to blue-water wind chop, there's one universal truth: Boat decks get wet</g:description>
<g:link>https://mysampleshop.com/products/product-product-49.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>52 USD</g:price>
</item>
<item>
<g:id>product-50</g:id>
<g:title>Guidewater duffle</g:title>
<g:description>For serious angling expeditions, the Guidewater Duffel Max lives up to its name, hauling maximum gear with grace and efficiency</g:description>
<g:link>https://mysampleshop.com/products/product-product-50.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>40 USD</g:price>
</item>
<item>
<g:id>product-51</g:id>
<g:title>Guidewater jkt</g:title>
<g:description>Pounding into the teeth of a nor'easter or swinging tips through the deluge the Guidewater keeps you fishing comfortably long after other anglers have headed for the barn</g:description>
<g:link>https://mysampleshop.com/products/product-product-51.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>34 USD</g:price>
</item>
<item>
<g:id>product-52</g:id>
<g:title>Guidewater shorts</g:title>
<g:description>Everything we love about the Guidewater Pants, and less</g:description>
<g:link>https://mysampleshop.com/products/product-product-52.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>21 USD</g:price>
</item>
<item>
<g:id>product-53</g:id>
<g:title>Guidewater vest</g:title>
<g:description>Find the tippet, tool or fly box you need without taking your eyes of that big bank feeder</g:description>
<g:link>https://mysampleshop.com/products/product-product-53.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>34 USD</g:price>
</item>
<item>
<g:id>product-54</g:id>
<g:title>Highwater pfd vest</g:title>
<g:description>The constant boat angling dilemma: You know you should wear one, but who wants to fish all day in a life vest? Here's the solution: The Highwater Vest is a full-on USCG-approved Type III personal floatation device that's also a trim-fitting, functional fishing vest</g:description>
<g:link>https://mysampleshop.com/products/product-product-54.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-55</g:id>
<g:title>Hip chest pack</g:title>
<g:description>Ready to go vest free? This is the classic alternative</g:description>
<g:link>https://mysampleshop.com/products/product-product-55.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>66 USD</g:price>
</item>
<item>
<g:id>product-56</g:id>
<g:title>Iceberg t-shirt</g:title>
<g:description>The effects of global warming run deep, depicted here on the Iceberg T-Shirt with artwork by wood block print artist Nick Wroblewski</g:description>
<g:link>https://mysampleshop.com/products/product-product-56.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>53 USD</g:price>
</item>
<item>
<g:id>product-57</g:id>
<g:title>Insulator pants</g:title>
<g:description>Steelhead, salmon, trout</g:description>
<g:link>https://mysampleshop.com/products/product-product-57.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>31 USD</g:price>
</item>
<item>
<g:id>product-58</g:id>
<g:title>'73 logo t-shirt</g:title>
<g:description>Soft-wearing ringspun organic cotton</g:description>
<g:link>https://mysampleshop.com/products/product-product-58.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>63 USD</g:price>
</item>
<item>
<g:id>product-59</g:id>
<g:title>Borderless gi shorts</g:title>
<g:description>These shorts have a mud-, sand- and grass-resistant blend of tough 4-oz 95% nylon (60% recycled)/5% spandex for the wide panorama of kid endeavors, and feature built-in 40-UPF sun protection and a DWR (durable water repellent) finish</g:description>
<g:link>https://mysampleshop.com/products/product-product-59.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>30 USD</g:price>
</item>
<item>
<g:id>product-60</g:id>
<g:title>Cap 1 graphic tee</g:title>
<g:description>Kids live at full throttle</g:description>
<g:link>https://mysampleshop.com/products/product-product-60.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>48 USD</g:price>
</item>
<item>
<g:id>product-61</g:id>
<g:title>Cap 3 bottoms</g:title>
<g:description>Like birds and clouds, kids stay on the move</g:description>
<g:link>https://mysampleshop.com/products/product-product-61.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>43 USD</g:price>
</item>
<item>
<g:id>product-62</g:id>
<g:title>El cap jkt</g:title>
<g:description>Resistant to hard play but irresistible against the skin, our El Cap Jacket is lightweight, quick-drying and way cozy</g:description>
<g:link>https://mysampleshop.com/products/product-product-62.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>31 USD</g:price>
</item>
<item>
<g:id>product-63</g:id>
<g:title>Flying fish t-shirt</g:title>
<g:description>Soft-wearing ringspun organic cotton</g:description>
<g:link>https://mysampleshop.com/products/product-product-63.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>37 USD</g:price>
</item>
<item>
<g:id>product-64</g:id>
<g:title>Gpiw classic t-shirt</g:title>
<g:description>Soft-wearing ringspun organic cotton</g:description>
<g:link>https://mysampleshop.com/products/product-product-64.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>32 USD</g:price>
</item>
<item>
<g:id>product-65</g:id>
<g:title>Live simply guitar t-shirt</g:title>
<g:description>Soft-wearing ringspun organic cotton</g:description>
<g:link>https://mysampleshop.com/products/product-product-65.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>52 USD</g:price>
</item>
<item>
<g:id>product-66</g:id>
<g:title>Synch marsupial</g:title>
<g:description>The roomy kangaroo-style front pocket on the Kids' Synchilla Marsupial lets them take their rock, leaf and feather collection wherever they go</g:description>
<g:link>https://mysampleshop.com/products/product-product-66.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>40 USD</g:price>
</item>
<item>
<g:id>product-67</g:id>
<g:title>Torrentshell jkt</g:title>
<g:description>and dry</g:description>
<g:link>https://mysampleshop.com/products/product-product-67.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>30 USD</g:price>
</item>
<item>
<g:id>product-68</g:id>
<g:title>La surfer maria t-shirt</g:title>
<g:description>Pray for surf wearing the La Surfer Maria T-Shirt</g:description>
<g:link>https://mysampleshop.com/products/product-product-68.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>26 USD</g:price>
</item>
<item>
<g:id>product-69</g:id>
<g:title>Lead an examined life poster</g:title>
<g:description>Guanacos standing sentry in Patagonia, Chile</g:description>
<g:link>https://mysampleshop.com/products/product-product-69.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>42 USD</g:price>
</item>
<item>
<g:id>product-70</g:id>
<g:title>Light and variable surf trunks</g:title>
<g:description>Our lightest, leanest surf trunks are built for minimal underwater drag when diving and bodysurfing, and they pack down into their own tiny stuff pouch</g:description>
<g:link>https://mysampleshop.com/products/product-product-70.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-71</g:id>
<g:title>Live simply bug t-shirt</g:title>
<g:description>In nature, live organisms are eventually reduced to bug food</g:description>
<g:link>https://mysampleshop.com/products/product-product-71.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>27 USD</g:price>
</item>
<item>
<g:id>product-72</g:id>
<g:title>Live simply deer t-shirt</g:title>
<g:description>Adaptability is simply a matter of survival for the deer, who's at home in just about any habitat</g:description>
<g:link>https://mysampleshop.com/products/product-product-72.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>63 USD</g:price>
</item>
<item>
<g:id>product-73</g:id>
<g:title>Live simply guitar t-shirt</g:title>
<g:description>Live life unplugged</g:description>
<g:link>https://mysampleshop.com/products/product-product-73.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-74</g:id>
<g:title>Logo hat</g:title>
<g:description>this 100% organic cotton hat disguises bed head, cuts glare when you're checking surf, and pulls chinward for an afternoon siesta</g:description>
<g:link>https://mysampleshop.com/products/product-product-74.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>49 USD</g:price>
</item>
<item>
<g:id>product-75</g:id>
<g:title>L/s hooded rashguard</g:title>
<g:description>The 30-UPF fabric of our Long-Sleeved Rashguard keeps the sun from sizzling your skin</g:description>
<g:link>https://mysampleshop.com/products/product-product-75.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>37 USD</g:price>
</item>
<item>
<g:id>product-76</g:id>
<g:title>L/s island hopper shirt</g:title>
<g:description>Serene in the face of serious heat and always up for a cleansing dunk in the hotel sink, an Island Hopper is traveler's manna</g:description>
<g:link>https://mysampleshop.com/products/product-product-76.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>40 USD</g:price>
</item>
<item>
<g:id>product-77</g:id>
<g:title>L/s rashguard</g:title>
<g:description>The 30-UPF fabric of our Long-Sleeved Rashguard keeps the sun from sizzling your skin</g:description>
<g:link>https://mysampleshop.com/products/product-product-77.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>36 USD</g:price>
</item>
<item>
<g:id>product-78</g:id>
<g:title>L/s steersman shirt</g:title>
<g:description>This ain't no city shirt, unless you're in Manila</g:description>
<g:link>https://mysampleshop.com/products/product-product-78.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>66 USD</g:price>
</item>
<item>
<g:id>product-79</g:id>
<g:title>Lw endurance ankle socks</g:title>
<g:description>Fast-forward pursuits, like riding the White Rim in a day, have miles of inspiration followed by moments of doubt</g:description>
<g:link>https://mysampleshop.com/products/product-product-79.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>55 USD</g:price>
</item>
<item>
<g:id>product-80</g:id>
<g:title>Lw endurance quarter socks</g:title>
<g:description>Scraped, taped or inflamed our ankles suffer in rough country</g:description>
<g:link>https://mysampleshop.com/products/product-product-80.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>50 USD</g:price>
</item>
<item>
<g:id>product-81</g:id>
<g:title>Lw hiking crew socks</g:title>
<g:description>Like suites for your feet, these stay-cool and breathable, multi-use socks feature a variable-knit, felted merino wool construction under the foot to disperse heat and cushion hard knocks</g:description>
<g:link>https://mysampleshop.com/products/product-product-81.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>24 USD</g:price>
</item>
<item>
<g:id>product-82</g:id>
<g:title>Lw r4 jkt</g:title>
<g:description>High off the deck on Warbonnet Peak in the immaculate Wind River Mountains, the naming of the range quickly makes sense</g:description>
<g:link>https://mysampleshop.com/products/product-product-82.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>47 USD</g:price>
</item>
<item>
<g:id>product-83</g:id>
<g:title>Lw travel duffel</g:title>
<g:description>This wanderer's bag is large enough to hold the contents of your life without getting in the way</g:description>
<g:link>https://mysampleshop.com/products/product-product-83.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>26 USD</g:price>
</item>
<item>
<g:id>product-84</g:id>
<g:title>Lw travel pack</g:title>
<g:description>In the lifelong search for a place to call home, we all do time on the road</g:description>
<g:link>https://mysampleshop.com/products/product-product-84.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>25 USD</g:price>
</item>
<item>
<g:id>product-85</g:id>
<g:title>M10 jkt</g:title>
<g:description>and our lightest 3-layer hard shell</g:description>
<g:link>https://mysampleshop.com/products/product-product-85.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>26 USD</g:price>
</item>
<item>
<g:id>product-86</g:id>
<g:title>M10 pants</g:title>
<g:description>like the time-honored alpine sprint</g:description>
<g:link>https://mysampleshop.com/products/product-product-86.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>57 USD</g:price>
</item>
<item>
<g:id>product-87</g:id>
<g:title>Merino 1 crew</g:title>
<g:description>In a day packed with decisions, this one's easy</g:description>
<g:link>https://mysampleshop.com/products/product-product-87.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>32 USD</g:price>
</item>
<item>
<g:id>product-88</g:id>
<g:title>Merino 1 t-shirt</g:title>
<g:description>The bus ride out of Tlachichuca packs in more bodies than miles</g:description>
<g:link>https://mysampleshop.com/products/product-product-88.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>52 USD</g:price>
</item>
<item>
<g:id>product-89</g:id>
<g:title>Merino 2 polo</g:title>
<g:description>The feel is bohemian, the look should at least get your foot in the door</g:description>
<g:link>https://mysampleshop.com/products/product-product-89.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>52 USD</g:price>
</item>
<item>
<g:id>product-90</g:id>
<g:title>Merino 2 t-shirt</g:title>
<g:description>Stay calm and collected amid the frenzy of Namche Bazaar in this versatile layer</g:description>
<g:link>https://mysampleshop.com/products/product-product-90.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>48 USD</g:price>
</item>
<item>
<g:id>product-91</g:id>
<g:title>Migration hemp shirt</g:title>
<g:description>Summerweight and soft, the Migration represents an inspired merger of 55% durable hemp and 45% plush organic cotton fabrics</g:description>
<g:link>https://mysampleshop.com/products/product-product-91.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>59 USD</g:price>
</item>
<item>
<g:id>product-92</g:id>
<g:title>Minimalist board shorts-19 in.</g:title>
<g:description>nothing wasted, nothing wanted</g:description>
<g:link>https://mysampleshop.com/products/product-product-92.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>39 USD</g:price>
</item>
<item>
<g:id>product-93</g:id>
<g:title>Minimass</g:title>
<g:description>The Mini Mass's lesser size lets you thread narrow streets and airplane aisles without leaving chaos in your wake</g:description>
<g:link>https://mysampleshop.com/products/product-product-93.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>36 USD</g:price>
</item>
<item>
<g:id>product-94</g:id>
<g:title>Mlc wheelie</g:title>
<g:description>The alpinist's saying speed is of the essence never rings truer than in teeming airport terminals</g:description>
<g:link>https://mysampleshop.com/products/product-product-94.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>64 USD</g:price>
</item>
<item>
<g:id>product-95</g:id>
<g:title>Mountain island t-shirt</g:title>
<g:description>For those who aspire to meld the mountain world with life at sea, the Mountain Island T-Shirt portrays the water cycle in a singular, confluent image</g:description>
<g:link>https://mysampleshop.com/products/product-product-95.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>69 USD</g:price>
</item>
<item>
<g:id>product-96</g:id>
<g:title>Nine trails jkt</g:title>
<g:description>Somewhere between the Bridger Ridge Run (for normal trail-runners) and the Barkley Marathons (for the insane), we all find our stride</g:description>
<g:link>https://mysampleshop.com/products/product-product-96.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>41 USD</g:price>
</item>
<item>
<g:id>product-97</g:id>
<g:title>Nine trails shorts</g:title>
<g:description>For those who view trails as their sanctuary, running means more than freedom of movement and lightness of being</g:description>
<g:link>https://mysampleshop.com/products/product-product-97.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>55 USD</g:price>
</item>
<item>
<g:id>product-98</g:id>
<g:title>Organic logo t-shirt</g:title>
<g:description>Originally printed our first season debuting organic cotton, the classic Organic Logo T-Shirt commemorates Patagonia's commitment</g:description>
<g:link>https://mysampleshop.com/products/product-product-98.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>in stock</g:availability>
<g:price>63 USD</g:price>
</item>
<item>
<g:id>product-99</g:id>
<g:title>O web belt</g:title>
<g:description>A social gadabout able to cross the divide between work wear, casual duds and a day at the crags</g:description>
<g:link>https://mysampleshop.com/products/product-product-99.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>
<g:availability>out of stock</g:availability>
<g:price>34 USD</g:price>
</item>
<item>
<g:id>product-100</g:id>
<g:title>Paddler board shorts</g:title>
<g:description>Built for maximum comfort during friction-heavy activities, Paddler Board Shorts have a lightweight nylon outer fabric with a DWR (durable water repellent) finish and a smooth, loose-hanging 100% recycled polyester liner</g:description>
<g:link>https://mysampleshop.com/products/product-product-100.html</g:link>
<g:image_link>https://raw.githubusercontent.com/recombee/js-api-client/master/examples/product_img.svg</g:image_link>