-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextracted_data.json
More file actions
3111 lines (3111 loc) · 194 KB
/
extracted_data.json
File metadata and controls
3111 lines (3111 loc) · 194 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Asparagus Bunch",
"variant_title": "65 / Mexico / Default",
"price": 4.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/asparagus.jpg?v=1478020600",
"inventory_quantity": 9998,
"body_html_safe": " Asparagus \n Asparagus is a highly versatile vegetable, with a mild taste often compared to green beans or broccoli. Try adding asparagus to pasta dishes and salads. Enjoy the spears steamed or sautéed in a frittata, or as a stand-alone side dish. It's high in folic acid and a good source of potassium, fiber, thiamin, and vitamins A, B6, and C. ",
"grams": 150,
"weight": "0.15kg",
"option2": "Mexico"
},
{
"title": "Bean Sprouts 400g",
"variant_title": "65 / Australia / Default",
"price": 2.49,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/3192.png?v=1694663239",
"inventory_quantity": 9999,
"body_html_safe": " Hugo's Fresh Sprouts Bean \n \n Sprouts are a great source of vitamins and minerals that are a perfect addition to salads, stir fry’s and sandwiches. Parilla Fresh packs and distributes products 6 days a week to ensure the freshest products are delivered and available at all times. \n Sprouts are good for you because the nutrient content of seeds is increased by at least 500% when the seeds are sprouted. Sprouts provide many essential antioxidants, enzymes and vitamins found in live plant foods that can help in preventing heart disease, diabetes and cancer. Sprouts also contain essential fatty acids, vital in hormone production and function, playing a major role in immune system function. \n Parilla Fresh sprouts are grown in a quality controlled environment with comprehensive Quality Assurance and food safety programs implemented at all facilities. This ensures that all Parilla Fresh sprouts are healthy, safe and nutritious for the whole family. \n Find out more detail here: http://www.parillafresh.com.au/all-about-sprouts/ ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Beans Hand Picked min 250g",
"variant_title": "65 / Australia / Default",
"price": 3.25,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/handpick-bean_3367c002-b94c-4d76-85f3-f0b3c5e45bdc.jpeg?v=1595642116",
"inventory_quantity": 9998,
"body_html_safe": " Beans Hand Picked \n ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Beans Organic min 250g",
"variant_title": "65 / Australia / Default",
"price": 7.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Beans_Organic_200g.jpg?v=1568691472",
"inventory_quantity": 9998,
"body_html_safe": " Beans Organic \n Green Beans are the perfect addition of colour to your dish and pair well with garlic, shallots and almonds. They provide a good source vitamin A, C and dietary fibre. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Beetroot Baby Each",
"variant_title": "65 / Australia / Default",
"price": 5.9,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/1142_-Beetroot-Bunch-Square-_1200x1200px_004428e2-cd4e-47ab-b3b3-7b12c9d35c6b.jpg?v=1682891336",
"inventory_quantity": 10000,
"body_html_safe": " Beetroot \n Beetroot tends to have an earthy taste and naturally sweet flavour. It can be used in juices, salads, hummus and much more. Good source dietary fibre and folic acid. \n ",
"grams": 125,
"weight": "0.125kg",
"option2": "Australia"
},
{
"title": "Beetroot Bunch",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1142_-Beetroot-Bunch-Square-_1200x1200px.jpg?v=1658885928",
"inventory_quantity": 10000,
"body_html_safe": " Beetroot \n Beetroot tends to have an earthy taste and naturally sweet flavour. It can be used in juices, salads, hummus and much more. Good source dietary fibre and folic acid. \n ",
"grams": 750,
"weight": "0.75kg",
"option2": "Australia"
},
{
"title": "Beetroot Head Each",
"variant_title": "65 / Australia / Default",
"price": 1.6,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1141_-Beetroot-Each-VariantNumber-Square-_1200x1200px.jpg?v=1658886026",
"inventory_quantity": 10000,
"body_html_safe": " Beetroot Head Only \n Beetroot tends to have an earthy taste and naturally sweet flavour. It can be used in juices, salads, hummus and much more. Good source dietary fibre and folic acid. ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Beetroot Love Beets Baby Beetroot Peeled and Cooked 250g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/11412-done.jpg?v=1593219268",
"inventory_quantity": 10000,
"body_html_safe": " Love Beets Baby Beetroot Peeled and Cooked \n Fresh Cooked Beetroot \n Our baby beetroots are vacuum-packed and steam cooked to maintain their freshness. With absolutely nothing added, these babies give you the taste and convenience of cooked beetroot, without the work. \n Aussies love beetroot! But we don’t love the mess and fuss of preparing it. Thankfully, we’ve uncovered a way to make enjoying sweet and healthy beetroot easy. Love Beets fresh-cooked beetroot is free from additives and preservatives. Peeled and cooked in nothing but its own juices, Love Beets is ready to eat straight out of the packet. The vacuum-seal cooking process locks in the flavour and goodness of Love Beets and means they can be stored at room-temperature for up to 6 months, providing the perfect pantry staple! \n Approx: 3-5 beetroots in packet. ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Beetroot Love Beets Organic Peel and Cooked 250g",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/711412-done.jpg?v=1622513254",
"inventory_quantity": 10000,
"body_html_safe": " Beetroot Love Beets Organic Peel and Cooked \n Fresh Cooked Beetroot \n Our baby beetroots are vacuum-packed and steam cooked to maintain their freshness. With absolutely nothing added, these babies give you the taste and convenience of cooked beetroot, without the work. \n Aussies love beetroot! But we don’t love the mess and fuss of preparing it. Thankfully, we’ve uncovered a way to make enjoying sweet and healthy beetroot easy. Love Beets fresh-cooked beetroot is free from additives and preservatives. Peeled and cooked in nothing but its own juices, Love Beets is ready to eat straight out of the packet. The vacuum-seal cooking process locks in the flavour and goodness of Love Beets and means they can be stored at room-temperature for up to 6 months, providing the perfect pantry staple! \n Approx: 3-5 beetroots in packet. ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Broccoli Head Each",
"variant_title": "65 / Australia / Default",
"price": 1.59,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/broccoli_04fa785b-d9a6-433e-87cf-c22ade7aa334.jpeg?v=1594002197",
"inventory_quantity": 9984,
"body_html_safe": " Broccoli \n Broccoli has large flower heads, usually dark green in colour, arranged in a tree-like structure branching out from a thick stalk which is usually light green. It has a grassy, earthy flavour that's mildly bitter. It's very versatile when it comes to cooking and can be used in a variety of tasty ways. It's an excellent source vitamin A and C. Very good source folacin and Vitamin E. ",
"grams": 325,
"weight": "0.325kg",
"option2": "Australia"
},
{
"title": "Brussels Sprout min 500g",
"variant_title": "65 / Australia / Default",
"price": 6.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Brussels_Sprouts_8365ed29-5801-464e-9ea4-64e935862095.jpeg?v=1441111069",
"inventory_quantity": 9996,
"body_html_safe": " Brussels Sprouts \n If grown and prepared correctly, Brussels sprouts taste richly sweet, with just a hint of bitterness. If you roast them until they start to caramelize, the sweetness is enhanced even further. They are delicious sautéed on their own and paired with a nice meat. An excellent source of vitamin C. Moderate source of dietary fibre, iron, potassium and riboflavin. ",
"grams": 500,
"weight": "0.5kg",
"option2": "Australia"
},
{
"title": "Buk Choy Shanghai Baby Bunch of 2-3",
"variant_title": "65 / Australia / Special65",
"price": 2.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1562-done.jpg?v=1621478211",
"inventory_quantity": 9993,
"body_html_safe": " Buk Choy Baby \n The stems firm, and leaves are crisp, smooth, and wide. Baby Bok choy is tender and crunchy with a sweet, fresh flavour. Can help make a delicious plate of mixed greens with oyster sauce or a nice stir-fry. Bok choy is an excellent source of vitamin C, vitamin K, vitamin A, and beta-carotene. It is a very good source of folate, calcium, and vitamin B6 as well. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Buk Choy White Long Bunch",
"variant_title": "65 / Australia / Special65",
"price": 2.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/buk-choy_11d44921-8075-4364-970c-9606f90ea090.jpeg?v=1473831020",
"inventory_quantity": 10000,
"body_html_safe": " ",
"grams": 600,
"weight": "0.6kg",
"option2": "Australia"
},
{
"title": "Cabbage Green Whole",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1222-done.jpg?v=1593492693",
"inventory_quantity": 10000,
"body_html_safe": " Fresh Cabbage \n Green cabbage is the most common variety with green outer leaves and pale green or white inside. If raw its texture is rubbery with a peppery flavour and can be used in slaw salads. Once cooked it softens and takes on a sweeter taste and can be used in soups, casseroles and stir-fries. It's an excellent source vitamin C and dietary fibre. ",
"grams": 2500,
"weight": "2.5kg",
"option2": "Australia"
},
{
"title": "Cabbage Half",
"variant_title": "65 / Australia / Default",
"price": 2.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1242-done.jpg?v=1593492256",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage (Half) \n Green cabbage is the most common variety with green outer leaves and pale green or white inside. If raw its texture is rubbery with a peppery flavour and can be used in slaw salads. Once cooked it softens and takes on a sweeter taste and can be used in soups, casseroles and stir-fries. It's an excellent source vitamin C and dietary fibre. ",
"grams": 1250,
"weight": "1.25kg",
"option2": "Australia"
},
{
"title": "Cabbage Red Half",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cabbage_red_half_1302_resized_34f9171e-2579-4491-bc5f-c667df99f4aa.jpeg?v=1594512607",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Red Half \n Red or purple cabbages take longer to mature, so these types are generally not as tender as green or white varieties. Red cabbage can be used interchangeably in most standard cabbage recipes but be aware that the colour will leach into any other ingredients. They add a striking addition to coleslaw and traditional salads. It provides a good source of vitamin C and dietary fibre. ",
"grams": 745,
"weight": "0.745kg",
"option2": "Australia"
},
{
"title": "Cabbage Red Whole",
"variant_title": "65 / Australia / Default",
"price": 9.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cabbage-red_05690542-a8c8-4026-a76e-25202276c731.jpeg?v=1594512658",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Red \n Red or purple cabbages take longer to mature, so these types are generally not as tender as green or white varieties. Red cabbage can be used interchangeably in most standard cabbage recipes but be aware that the colour will leach into any other ingredients. They add a striking addition to coleslaw and traditional salads. It provides a good source of vitamin C and dietary fibre. ",
"grams": 2000,
"weight": "2.0kg",
"option2": "Australia"
},
{
"title": "Cabbage Savoy Half",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cabbage_savoy_half_1272_resized_large_a0ceda3f-6e2f-489d-8c80-277df0c3e4c6.jpeg?v=1594512691",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Savoy \n Savoy cabbage has deep green crinkly leaves and is considered the most tender and sweet. The head is less compact, due to the wrinkled leaves, but looks like green cabbage. It is the better choice for stuffed cabbage since the leaves are more pliable and stand up to longer cooking times but is also great raw in coleslaw. It provides a good source of vitamin C and dietary fibre. ",
"grams": 515,
"weight": "0.515kg",
"option2": "Australia"
},
{
"title": "Cabbage Savoy Quarter Each",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cabbage_savoy_quarter_12525_resized_large_b7a27190-e6a3-4ca9-9868-07ed21da156f.jpeg?v=1441095650",
"inventory_quantity": 10000,
"body_html_safe": " ",
"grams": 840,
"weight": "0.84kg",
"option2": "Australia"
},
{
"title": "Cabbage Savoy Whole",
"variant_title": "65 / Australia / Default",
"price": 9.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Cabbage_Savoy_0bc54e25-1e8d-448b-a90c-6cccc77e43de.jpeg?v=1594512809",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Savoy \n Savoy cabbage has deep green crinkly leaves and is considered the most tender and sweet. The head is less compact, due to the wrinkled leaves, but looks like green cabbage. It is the better choice for stuffed cabbage since the leaves are more pliable and stand up to longer cooking times but is also great raw in coleslaw. It provides a good source of vitamin C and dietary fibre. ",
"grams": 1900,
"weight": "1.9kg",
"option2": "Australia"
},
{
"title": "Cabbage Sugarloaf",
"variant_title": "65 / Australia / Default",
"price": 6.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1223-done.jpg?v=1632355695",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Sugarloaf ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Cabbage Tuscan Bunch",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1312-done.jpg?v=1568670693",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Tuscan \n Tuscan Cabbage is a Brassica vegetable, closely related to Kale. It is best served steamed, boiled, or sauteed and is a source of folic acid, Vitamin A and Vitamin K. ",
"grams": 1500,
"weight": "1.5kg",
"option2": "Australia"
},
{
"title": "Capsicum Green Each",
"variant_title": "65 / Australia / Default",
"price": 3.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/green_cap_1_4e4883d0-1470-4d58-9bb9-6c5ee1f5bb65.jpeg?v=1477344740",
"inventory_quantity": 9997,
"body_html_safe": " Green Capsicums \n Green Capsicums are harvested before they are fully ripe. Green capsicums will continue to first turn yellow and then red if they are left on the plant to mature. They have a slightly bitter flavor and crunchy texture and will never have the sweet taste of their red, yellow and orange counterparts. Excellent source vitamin C; good source B6, E and potassium. ",
"grams": 300,
"weight": "0.3kg",
"option2": "Australia"
},
{
"title": "Capsicum Red Each",
"variant_title": "65 / Australia / Default",
"price": 5.1,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/1331.webp?v=1694663013",
"inventory_quantity": 9998,
"body_html_safe": " Capsicums Red \n These are more mature than green, orange or yellow capsicums. They are rich in carotenoid phytonutrients and contain almost eleven times more beta-carotene than green capsicums as well as one and a half times more vitamin C. Red capsicums have a sweet, almost fruity taste. Their bright colour and sweet flavour make them perfect for tossing into salads. When roasted red capsicums become silken and luscious. Pimento and paprika are both prepared from red capsicums. Excellent source vitamin C; good source B6, E and potassium. ",
"grams": 300,
"weight": "0.3kg",
"option2": "Australia"
},
{
"title": "Capsicum Red Organic 350g",
"variant_title": "65 / Australia / Default",
"price": 11.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71332-done.jpg?v=1638844017",
"inventory_quantity": 9999,
"body_html_safe": " These are more mature than green, orange or yellow capsicums. They are rich in carotenoid phytonutrients and contain almost eleven times more beta-carotene than green capsicums as well as one and a half times more vitamin C. Red capsicums have a sweet, almost fruity taste. Their bright colour and sweet flavour make them perfect for tossing into salads. When roasted red capsicums become silken and luscious. Pimento and paprika are both prepared from red capsicums. Excellent source vitamin C; good source B6, E and potassium. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 350,
"weight": "0.35kg",
"option2": "Australia"
},
{
"title": "Carrot Dutch Bunch",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/carrot-dutch-bunch.jpg?v=1594513110",
"inventory_quantity": 10000,
"body_html_safe": " Carrots Dutch \n Dutch Carrots are small, sweet and still have their tops attached. Carrots can be eaten raw or steamed, roasted, baked and even juiced. They go well with butter, beef, chicken, cumin, feta and honey. They're an excellent source of vitamin A; good source of dietary fibre. ",
"grams": 500,
"weight": "0.5kg",
"option2": "Australia"
},
{
"title": "Carrot Loose Each",
"variant_title": "65 / Australia / Default",
"price": 0.6,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/HFM_1371_W_1000PX_2.jpg?v=1594513318",
"inventory_quantity": 9990,
"body_html_safe": " Carrots Loose \n The taste of carrots is a unique composition between sweet, fruity and more harsh or bitter flavours. Carrots can be eaten raw or steamed, roasted, baked and even juiced. They go well with butter, beef, chicken, cumin, feta and honey. They're an excellent source of vitamin A; good source of dietary fibre. ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Carrot Organic 1kg",
"variant_title": "65 / Australia / Default",
"price": 6.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71381-done_91a2642b-7f7d-4d68-80aa-546d24c711a7.jpg?v=1600814487",
"inventory_quantity": 9999,
"body_html_safe": " Carrots Organic \n The taste of carrots is a unique composition between sweet, fruity and more harsh or bitter flavours. Carrots can be eaten raw or steamed, roasted, baked and even juiced. They go well with butter, beef, chicken, cumin, feta and honey. They're an excellent source of vitamin A; good source of dietary fibre. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 1000,
"weight": "1.0kg",
"option2": "Australia"
},
{
"title": "Carrot Purple Dutch Bunch",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/13922-done.jpg?v=1533428114",
"inventory_quantity": 10000,
"body_html_safe": " ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Carrot Small Prepack 500g",
"variant_title": "65 / Australia / Default",
"price": 1.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Carrots_small_7f938911-785e-406a-a116-3ed271c60608.jpg?v=1504246102",
"inventory_quantity": 10000,
"body_html_safe": " Carrots Small Prepack \n Smaller then usual sized carrots, these small carrots are a great addition to salads, sandwiches, or as a snack in lunchboxes. They are a source of fibre, Vitamin A and Vitamin K. ",
"grams": 500,
"weight": "0.5kg",
"option2": "Australia"
},
{
"title": "Carrot Snackables 250g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/13832-done.jpg?v=1623879231",
"inventory_quantity": 10000,
"body_html_safe": " Whole Snacking Carrots Snackables - 100% Australian grown \n Super sweet baby carrots grown in Tasmania. Perfect for snacking, steaming and the school lunch box. ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Carrots Medium 1kg",
"variant_title": "65 / Australia / Special65",
"price": 1.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1382-done.jpg?v=1611533677",
"inventory_quantity": 9993,
"body_html_safe": " Carrots Medium \n The taste of carrots is a unique composition between sweet, fruity and more harsh or bitter flavours. Carrots can be eaten raw or steamed, roasted, baked and even juiced. They go well with butter, beef, chicken, cumin, feta and honey. They're an excellent source of vitamin A; good source of dietary fibre. ",
"grams": 1000,
"weight": "1.0kg",
"option2": "Australia"
},
{
"title": "Cauliflower Half",
"variant_title": "65 / Australia / Special65",
"price": 2.79,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/PLU_-Cauliflower-Half-Standard-1-Square-_1200x1200px.jpg?v=1660182791",
"inventory_quantity": 9998,
"body_html_safe": " Cauliflower half \n Cauliflower has a sweet and nutty flavour with bitter undertones. Its flavour is mild and texture quite crunchy making it perfect for a variety of recipes. Chuck it in a soup, veggie-bake or make cauliflower rice. It's a source of vitamin C, potassium, folic acid. ",
"grams": 620,
"weight": "0.62kg",
"option2": "Australia"
},
{
"title": "Cauliflower Purple Each",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cauliflower-purple-done.jpg?v=1497835527",
"inventory_quantity": 10000,
"body_html_safe": " Cauliflower Purple \n This Cauliflower Purple is an interesting vegetable that has a special type of pigment that gives it its deep purple colour. Cauliflower is high in vitamins and minerals and a great way to get your daily intake of vitamins. Enjoy this unique vegetable in a variety of dishes! ",
"grams": 1000,
"weight": "1.0kg",
"option2": "Australia"
},
{
"title": "Cauliflower Whole",
"variant_title": "65 / Australia / Special65",
"price": 4.49,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/PLU_-Cauliflower-Whole-Standard-1-Square-_1200x1200px.jpg?v=1660182796",
"inventory_quantity": 9995,
"body_html_safe": " Cauliflower \n Cauliflower has a sweet and nutty flavour with bitter undertones. Its flavour is mild and texture quite crunchy making it perfect for a variety of recipes. Chuck it in a soup, veggie-bake or make cauliflower rice. It's a good source of vitamin C, potassium, folic acid. ",
"grams": 1200,
"weight": "1.2kg",
"option2": "Australia"
},
{
"title": "Cauliflower Whole Organic",
"variant_title": "65 / Australia / Default",
"price": 8.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/PLU_-Cauliflower-Whole-Organic-1-Square-_1200x1200px.jpg?v=1660182781",
"inventory_quantity": 9999,
"body_html_safe": " Cauliflower Organic \n Cauliflower has a sweet and nutty flavour with bitter undertones. Its flavour is mild and texture quite crunchy making it perfect for a variety of recipes. Chuck it in a soup, veggie-bake or make cauliflower rice. It's a good source of vitamin C, potassium, folic acid. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 1000,
"weight": "1.0kg",
"option2": "Australia"
},
{
"title": "Celeriac Loose Each",
"variant_title": "65 / Australia / Default",
"price": 7.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Celerac_e41d163e-0634-4cf0-abee-01b7e2ff3569.jpeg?v=1594513584",
"inventory_quantity": 10000,
"body_html_safe": " Celeriac Loose \n Raw, celeriac has fantastic crunch and a super nutty, celery-like flavour that makes it perfect for salads and slaws. Cooked, it takes on a slight sweetness that works well mashed, baked, roasted or boiled. It's a very good source of dietary fibre; good source of vitamin C. \n ",
"grams": 225,
"weight": "0.225kg",
"option2": "Australia"
},
{
"title": "Celery Half",
"variant_title": "65 / Australia / Special65",
"price": 0.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/celery-half_c9d53969-0443-4a94-bb2d-a53406741a94.jpeg?v=1594513652",
"inventory_quantity": 9995,
"body_html_safe": " Celery \n Celery is a raw vegetable with a coarse, earthy taste. It's salty and bitter in taste with loads of crunch. It can add depth to the flavours while cooking, especially soups, sauces and casseroles. It's a good source of vitamin A, calcium, phosphorus, sodium, potassium and dietary fibre. ",
"grams": 500,
"weight": "0.5kg",
"option2": "Australia"
},
{
"title": "Celery Whole",
"variant_title": "65 / Australia / Special65",
"price": 1.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1472-done.jpg?v=1590212850",
"inventory_quantity": 9999,
"body_html_safe": " Celery \n Celery is a raw vegetable with a coarse, earthy taste. It's salty and bitter in taste with loads of crunch. It can add depth to the flavours while cooking, especially soups, sauces and casseroles. It's a good source of vitamin A, calcium, phosphorus, sodium, potassium and dietary fibre. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Celery Whole Organic",
"variant_title": "65 / Australia / Special65",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/celery-whole-organic.jpg?v=1568697204",
"inventory_quantity": 9998,
"body_html_safe": " Celery Organic \n Celery is a raw vegetable with a coarse, earthy taste. It's salty and bitter in taste with loads of crunch. It can add depth to the flavours while cooking, especially soups, sauces and casseroles. It's a good source of vitamin A, calcium, phosphorus, sodium, potassium and dietary fibre. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Chickory Bunch",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/chickory_1502_resized_da1b249c-bbc3-4784-b6ee-f16a65da1369.jpeg?v=1594513891",
"inventory_quantity": 10000,
"body_html_safe": " Chickory \n Ideally, the flavour of chicory is rich and sweet with a hint of bitterness. Chicory works best in composed salads rather than tossed with other, softer leaves. Raw chicory leaves are excellent eaten fresh, drizzled with a little vinaigrette, or stir-fried and served as a vegetable side dish. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Chilli Bullhorn Yellow Sweet Each",
"variant_title": "65 / Australia / Default",
"price": 2.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1541-done.jpg?v=1611530066",
"inventory_quantity": 10000,
"body_html_safe": " Chillies Sweet \n Sweet chilis have very little to no heat. It's an excellent source of vitamin C and vitamin A. \n ",
"grams": 100,
"weight": "0.1kg",
"option2": "Australia"
},
{
"title": "Chilli Jalapeno Fresh 200g",
"variant_title": "65 / Australia / Default",
"price": 4.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/7121-done_d4bb3c33-25a4-465a-84ad-640bb393f72e.jpg?v=1611522307",
"inventory_quantity": 10000,
"body_html_safe": " Chillies Jalapeno Fresh \n These chunky chillies are perfect for pickling or for using fresh in Mexican favourites such as burritos, salsa and guacamole. They are an excellent source of vitamin C and vitamin A. ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Chilli Long Hot Green min 200g",
"variant_title": "65 / Australia / Default",
"price": 6.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/7102-done_ae57e4d9-a4a1-4b54-ae8e-9eb040db0664.jpg?v=1611530866",
"inventory_quantity": 10000,
"body_html_safe": " Chillies Hot Long Green \n Green ones have a sharper and often hotter character then red counterparts. It's an excellent source of vitamin C and vitamin A. ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Chilli Red Habanero min 50g",
"variant_title": "65 / Australia / Default",
"price": 2.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/15111-done.jpg?v=1542683150",
"inventory_quantity": 10000,
"body_html_safe": " Chillies Habanero Red \n This Habanero Red Chilli is perfect for adding a burst of flavour and heat to any dish. With its unmistakable aroma and unique taste, this chilli is sure to take your cooking to the next level. Try it on tacos, pizzas, and salsas for a truly unforgettable experience. ",
"grams": 50,
"weight": "0.05kg",
"option2": "Australia"
},
{
"title": "Chilli Thai min 50g",
"variant_title": "65 / Australia / Default",
"price": 2.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Thai_chillies2.jpg?v=1594693858",
"inventory_quantity": 10000,
"body_html_safe": " Chillies Thai \n Thai Chilies are a great addition to Asian dishes to create an authentic flavour. Thai chillies have a mild spice and are a source of antioxidants, B Vitamins and Potassium. ",
"grams": 50,
"weight": "0.05kg",
"option2": "Australia"
},
{
"title": "Chinese Cabbage Wombok Half",
"variant_title": "65 / Australia / Default",
"price": 2.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/chinese-cabbage-resized.jpg?v=1491112950",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Chinese \n This oblong, white to pale green cabbage is cultivated worldwide, and is a popular ingredient in authentic Asian cuisines, from stir-fry and noodle dishes to dumplings, rolls, and salads. It's easy to prepare and offers a mild flavour that gets sweeter with cooking. It provides a good source of vitamin C and dietary fibre. ",
"grams": 980,
"weight": "0.98kg",
"option2": "Australia"
},
{
"title": "Chinese Cabbage Wombok Whole",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Cabbage_Chinese_1_grande_f86f7030-b451-4a29-904d-071ae6882d1f.jpeg?v=1594512535",
"inventory_quantity": 10000,
"body_html_safe": " Cabbage Chinese \n This oblong, white to pale green cabbage is cultivated worldwide, and is a popular ingredient in authentic Asian cuisines, from stir-fry and noodle dishes to dumplings, rolls, and salads. It's easy to prepare and offers a mild flavour that gets sweeter with cooking. It provides a good source of vitamin C and dietary fibre. ",
"grams": 2000,
"weight": "2.0kg",
"option2": "Australia"
},
{
"title": "Choy Sum Bunch",
"variant_title": "65 / Australia / Special65",
"price": 2.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/choy-sum_8fd37f12-b320-443b-ab44-975737d2058a.jpeg?v=1441098879",
"inventory_quantity": 9997,
"body_html_safe": " ",
"grams": 380,
"weight": "0.38kg",
"option2": "Australia"
},
{
"title": "Coolibah Baby Asian Salad Mix 120g",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/7015-done.jpg?v=1592080136",
"inventory_quantity": 10000,
"body_html_safe": " Salad Baby Asian Mix \n Traditions of the East combine in a delicate balance of texture and flavour. This salad mix has become increasingly popular. ",
"grams": 120,
"weight": "0.12kg",
"option2": "Australia"
},
{
"title": "Coolibah Organic Salad Mix Organic 100g",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/7024.png?v=1704931761",
"inventory_quantity": 9999,
"body_html_safe": " Coolibah Organic Salad Mix \n ",
"grams": 100,
"weight": "0.1kg",
"option2": "Australia"
},
{
"title": "Coolibah Salad Baby Leaves Mixed min 120g",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/7012-done.jpg?v=1589149610",
"inventory_quantity": 9999,
"body_html_safe": " \n Baby Salad Leaves \n This unique colourful combination features a full range of baby salad leaves from the sweetness of cos to the savoury bite of radicchio. Salad mixes have become a staple of healthy eating in our modern world. The original French Mesclun, meaning “mixture”, was a traditional combination of chervil, arugula (roquette), leafy lettuces and endive in equal proportions. Coolibah Herbs has refined this product from its early development to reflect changing seasons and maintains a fresh combination of salad leaves all year round. They have also adapted the blend to cater for popular taste preferences. It provides many essential nutrients for health and is also a very good source of dietary fibre. ",
"grams": 120,
"weight": "0.12kg",
"option2": "Australia"
},
{
"title": "Coolibah Salad Baby Mixed Leaves Organic 120g",
"variant_title": "65 / Australia / Default",
"price": 6.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/77012-done.jpg?v=1568691473",
"inventory_quantity": 10000,
"body_html_safe": " Baby Salad Leaves Organic \n This unique colourful combination features a full range of baby salad leaves from the sweetness of cos to the savoury bite of radicchio. Salad mixes have become a staple of healthy eating in our modern world. The original French Mesclun, meaning “mixture”, was a traditional combination of chervil, arugula (roquette), leafy lettuces and endive in equal proportions. Coolibah Herbs has refined this product from its early development to reflect changing seasons and maintains a fresh combination of salad leaves all year round. They have also adapted the blend to cater for popular taste preferences. It provides many essential nutrients for health and is also a very good source of dietary fibre. Organic farming involves much more than not using chemical pesticides and fertilisers. Organic farming helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 120,
"weight": "0.12kg",
"option2": "Australia"
},
{
"title": "Coolibah Salad Mix Italian 120g",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Coolibah_Herbs-Italian_Salad_Mix-1-Square-_1200x1200px.jpg?v=1643071017",
"inventory_quantity": 10000,
"body_html_safe": " \n Italian Salad Mix \n \n Our Italian Mix is a Mediterranean style salad, with widely differing yet complimentary flavours. Coolibah Herbs has refined this product from its early development to reflect changing seasons and maintains a fresh combination of salad leaves all year round. They have also adapted the blend to cater for popular taste preferences. It provides many essential nutrients for health and is also a very good source of dietary fibre. ",
"grams": 120,
"weight": "0.12kg",
"option2": "Australia"
},
{
"title": "Coolibah Salad Organic Wild Roquette 100g",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/7025.png?v=1704931788",
"inventory_quantity": 9999,
"body_html_safe": " Coolibah Organic Salad Wild Roquette \n ",
"grams": 100,
"weight": "0.1kg",
"option2": "Australia"
},
{
"title": "Corn Baby 115g",
"variant_title": "65 / Thailand / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/corn-baby_d675a015-c1e4-4638-9a11-dd4b48ef225d.jpeg?v=1596677265",
"inventory_quantity": 9998,
"body_html_safe": " Corn Baby \n Baby corn is harvested earlier from the corn plant compared to full-grown corn cob. A mild tasting corn, it is a great addition to stir-fries and Asian inspired dishes. A source of fibre, magnesium and protein. ",
"grams": 115,
"weight": "0.115kg",
"option2": "Thailand"
},
{
"title": "Corn Loose Each",
"variant_title": "65 / Australia / Default",
"price": 1.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Corn-loose_505ef188-e980-4a5c-91f0-3bc8d06182f2.jpeg?v=1592099352",
"inventory_quantity": 9992,
"body_html_safe": " Corn Loose \n A sweet and crunchy veg, corn is perfect for grilling, bbqing or boiling. A source of protein, fibre and B Vitamins. ",
"grams": 350,
"weight": "0.35kg",
"option2": "Australia"
},
{
"title": "Cucumber Lebanese Each",
"variant_title": "65 / Australia / Default",
"price": 1.4,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1781-done.jpg?v=1597968546",
"inventory_quantity": 9980,
"body_html_safe": " Cucumber Lebanese \n A mild-tasting vegetable, Lebanese cucumbers are commonly eaten raw as an addition to salads, sandwiches, or on their own as a snack. A source of Vitamin A, Manganese, and Vitamin K. ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Cucumber Lebanese Organic 400g",
"variant_title": "65 / Australia / Default",
"price": 7.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71781-done_eabf1c65-1dce-419f-891a-1234d4fd1d79.jpg?v=1601592848",
"inventory_quantity": 9997,
"body_html_safe": " Cucumber Lebanese Organic \n ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Cucumber Mini Lebanese Organic 300g",
"variant_title": "65 / Australia / Default",
"price": 5.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71783-done_0cabe806-6797-4a8a-adb1-1f8393d4f607.jpg?v=1612386054",
"inventory_quantity": 10000,
"body_html_safe": " Baby Cucumbers or Qukes Organic \n \n ------------------------------------------------- \n *Picture is for illustration purposes only. Brand may vary. ",
"grams": 350,
"weight": "0.35kg",
"option2": "Australia"
},{
"title": "Cucumber Qukes 250g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Qukes.jpg?v=1568670414",
"inventory_quantity": 9998,
"body_html_safe": " Qukes \n Qukes or Sweet Baby Cucumbers in 250g Punnet. \n ",
"grams": 250,
"weight": "0.25kg",
"option2": "Australia"
},
{
"title": "Cucumber Telegraph Each",
"variant_title": "65 / Australia / Default",
"price": 2.5,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/cucumber-telegraph_e47b437f-4bd4-4736-8ff1-3b3e0d0f6f9e.jpeg?v=1594514652",
"inventory_quantity": 9999,
"body_html_safe": " Cucumber Telegraph \n A mild-tasting vegetable, Telegraph cucumbers are commonly eaten raw as an addition to salads, sandwiches, or on their own as a snack. A source of Vitamin A, Manganese, and Vitamin K. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 435,
"weight": "0.435kg",
"option2": "Australia"
},
{
"title": "Cucumbers Baby Organic 200g",
"variant_title": "65 / Australia / Default",
"price": 6.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71784---Square-_1200x1200px.jpg?v=1646780187",
"inventory_quantity": 9999,
"body_html_safe": " Qukes Organic \n Premium Qukes or Sweet Baby Cucumbers in 250g Punnet. \n ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Dave's Market Picks Fruit and Veg Box",
"variant_title": "65 / Default / Special65",
"price": 60.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/square_54313477-ad2d-405c-ac88-d80e4fb03a62.png?v=1716513064",
"inventory_quantity": 9962,
"body_html_safe": " \n \n body {\n font-family: Arial, sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f7f7f7;\n }\n\n .container {\n max-width: 800px;\n margin: 20px auto;\n padding: 20px;\n background-color: #fff;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n }\n\n h2 {\n font-size: 24px;\n font-weight: bold;\n margin-bottom: 10px;\n }\n\n p {\n margin-bottom: 20px;\n }\n\n .product-list {\n text-align: center;\n }\n\n .market-update {\n text-align: left;\n margin-top: 30px;\n }\n\n .disclaimer {\n text-align: left;\n font-style: italic;\n margin-top: 30px;\n color: #888;\n }\n \n \n Dave's Market Picks Fruit and Veg Box will be ever changing due to current market availability but will always be $65 worth of produce. You'll get the best balance of value and quality in this perfectly selected offering of the market's very best. \n \n WHAT'S IN THE BOX THIS WEEK? \n \n \n 6 Apple Imperfect Pink Lady Each \n 4 Avocado GMax Greenskin Small Each \n 2 Broccoli Head Each \n Carrots Medium 1kg \n Cauliflower Whole \n Celery Whole \n<div style=\"text-align: cen...",
"grams": 4,
"weight": "0.004kg",
"option2": "Default"
},
{
"title": "Dave's Market Picks Fruit and Veg Box XL",
"variant_title": "65 / Default / Default",
"price": 80.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/square.png?v=1716513025",
"inventory_quantity": 8741,
"body_html_safe": " \n \n body {\n font-family: Arial, sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f7f7f7;\n }\n\n .container {\n max-width: 800px;\n margin: 20px auto;\n padding: 20px;\n background-color: #fff;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n }\n\n h2 {\n font-size: 24px;\n font-weight: bold;\n margin-bottom: 10px;\n }\n\n p {\n margin-bottom: 20px;\n }\n\n .product-list {\n text-align: center;\n }\n\n .market-update {\n text-align: center;\n margin-top: 30px;\n }\n\n .disclaimer {\n text-align: center;\n font-style: italic;\n margin-top: 30px;\n color: #888;\n }\n \n \n Dave's Market Picks Fruit and Veg Box will be ever changing due to current market availability but will always be $80 worth of produce. You'll get the best balance of value and quality in this perfectly selected offering of the market's very best. \n WHAT'S IN THE BOX THIS WEEK? \n \n \n 8 Apple Imperfect Pink Lady Each \n 5 Avocado GMax Greenskin Small Each \n 3 Broccoli Head Each \n Carrots Medium 1kg \n Cauliflower Whole \n Celery Whole \n<div style=\"text-align: center;\"...",
"grams": 1,
"weight": "0.001kg",
"option2": "Default"
},
{
"title": "Dicky Bill Coriander Bag 25g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/33222.png?v=1706155549",
"inventory_quantity": 10000,
"body_html_safe": " Dicky Bill Coriander Bag ",
"grams": 25,
"weight": "0.025kg",
"option2": "Australia"
},
{
"title": "Dicky Bill Dill Bag 25g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/33332.png?v=1706155539",
"inventory_quantity": 10000,
"body_html_safe": " Dicky Bill Dill Bag ",
"grams": 25,
"weight": "0.025kg",
"option2": "Australia"
},
{
"title": "Dicky Bill Parsley Bag 25g",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/files/34132.png?v=1706155529",
"inventory_quantity": 10000,
"body_html_safe": " Dicky Bill Parsley Bag 25g ",
"grams": 25,
"weight": "0.025kg",
"option2": "Australia"
},
{
"title": "Edible Flowers Punnet",
"variant_title": "65 / Australia / Default",
"price": 12.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/7042-done_3e147e26-b989-4791-aff1-44fa4433b8a5.jpg?v=1611529390",
"inventory_quantity": 10000,
"body_html_safe": " Edible Flowers \n Add some colour to your cooking with these edible flowers. With an array of different colours and varieties, these flowers are a perfect complement to salads, baked goods and smoothie bowls. \n *If buying a quantity of 2 or more we will require two days ordering notice and hence select a Window that is 3 days ahead to ensure we have enough to fulfil your order. \n *Brand will vary depending on availability ",
"grams": 25,
"weight": "0.025kg",
"option2": "Australia"
},
{
"title": "Eggplant Each",
"variant_title": "65 / Australia / Default",
"price": 4.05,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1801-done.jpg?v=1592607949",
"inventory_quantity": 10000,
"body_html_safe": " Eggplant \n A smooth-skinned vegetable, eggplants are a great alternative for animal protein foods in terms of taste and texture. Eggplants can be baked, roasted, or grilled and are a source of potassium, magnesium and Vitamin E. ",
"grams": 450,
"weight": "0.45kg",
"option2": "Australia"
},
{
"title": "Eggplant Imperfect Each",
"variant_title": "65 / Australia / Default",
"price": 2.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/imperfect_eggplant1.jpg?v=1476808099",
"inventory_quantity": 9994,
"body_html_safe": " WARPED EGGPLANTS \n A smooth-skinned vegetable, eggplants are a great alternative for animal protein foods in terms of taste and texture. Eggplants can be baked, roasted, or grilled and are a source of potassium, magnesium and Vitamin E. \n Without a little bit of warping over here and little bit of weird over there, the world would be a very boring place. Be a part of the movement with these lovely, warped wonders. Perfect for grilling and baking. ",
"grams": 400,
"weight": "0.4kg",
"option2": "Australia"
},
{
"title": "Eschalots Each",
"variant_title": "65 / Australia / Default",
"price": 0.32,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Shallots_French_da9f16f3-6958-45a3-9010-9e14fba2a28c.jpeg?v=1568676598",
"inventory_quantity": 9994,
"body_html_safe": " Eschalots \n Also known as French Shallots. Eschalots have a slightly more delicate, smoother, more mellow flavour than a standard onion but are similarly used in cooking. Eschalots are a source of fibre, Vitamin A and Vitamin C. ",
"grams": 25,
"weight": "0.025kg",
"option2": "Australia"
},
{
"title": "Fennel Each",
"variant_title": "65 / Australia / Default",
"price": 1.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/PLU_-Fennel-Each-Square-_1200x1200px_1.jpg?v=1653515003",
"inventory_quantity": 9999,
"body_html_safe": " Fennel ",
"grams": 420,
"weight": "0.42kg",
"option2": "Australia"
},
{
"title": "Fresh Herb Arugula bunch",
"variant_title": "65 / Australia / Default",
"price": 2.49,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Arugula_52652fee-d618-4978-af43-b5375dad13ed.jpeg?v=1594510871",
"inventory_quantity": 10000,
"body_html_safe": " Arugula \n Fresh arugula leaves have a distinctive spicy kick that will turn up the flavors in your salads, pastas, sandwiches, and sauces. The flavor can be bright, tart, peppery, and slightly bitter, depending on its maturity. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herb Galangal min 150g",
"variant_title": "65 / Australia / Default",
"price": 3.75,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/1891-done_56d8d6d1-d4e4-4320-9330-197111b2f7e7.jpg?v=1611531347",
"inventory_quantity": 10000,
"body_html_safe": " Galangal \n A relative of ginger and turmeric, galangal is a root vegetable. Galangal is use similarly to ginger and turmeric, in curries, pastes, sauces and tea. Galangal is a source of Vitamin A, Vitamin C and antoxidants. ",
"grams": 150,
"weight": "0.15kg",
"option2": "Australia"
},
{
"title": "Fresh Herb Ginger min 150g",
"variant_title": "65 / Australia / Default",
"price": 6.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/ginger_602065f3-a2b3-4699-b980-6faf0233a450.jpeg?v=1655274219",
"inventory_quantity": 9998,
"body_html_safe": " Ginger ",
"grams": 150,
"weight": "0.15kg",
"option2": "Australia"
},
{
"title": "Fresh Herb Ginger Organic min 150g",
"variant_title": "65 / Australia / Default",
"price": 6.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/71862-done.jpg?v=1622512946",
"inventory_quantity": 10000,
"body_html_safe": " Ginger Organic \n Ginger is a fragrant and flavourful root, that can be eaten raw in salads and stir fries, boiled to make tea or added into cooked dishes like curries and pastes. Ginger is a source of antioxidants, fibre and magnesium. \n It utilises organic farming to ensure production involves much more than not using chemical pesticides and fertilisers. This helps to minimise any negative impacts on the environment, maintaining biodiversity of the ecosystem whilst also delivering a nutritious product. ",
"grams": 150,
"weight": "0.15kg",
"option2": "Australia"
},
{
"title": "Fresh Herb Turmeric min 200g",
"variant_title": "65 / Australia / Default",
"price": 7.0,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/turmeric_715c8aa2-85d7-49fb-9e85-4958ef865d2b.jpeg?v=1610072886",
"inventory_quantity": 10000,
"body_html_safe": " Turmeric \n ",
"grams": 200,
"weight": "0.2kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Basil Bunch",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/basil_1_c41f466c-338f-45f2-95e7-5cb92c81baa6.jpeg?v=1568670410",
"inventory_quantity": 9995,
"body_html_safe": " Fresh Herb Basil \n Basil is year-round herb from the mint family, grown for its flavoursome and aromatic leaves. Basil is best added at the end of your cooking, roughly chopped and pairs perfectly with beef, capsicum, chicken, chilli, eggs, green leaf salads, olive oil, onions, pasta, tomatoes & zucchini. It's a great source of vitamin C and dietary fibre. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Basil Pot Each",
"variant_title": "65 / Australia / Default",
"price": 3.75,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/3987_--Basil-Herbs-Pot--Square-_1200x1200px.jpg?v=1666230780",
"inventory_quantity": 10000,
"body_html_safe": " Basil Herb Pot \n Basil is a source of iron, beta carotene vitamins A and K. \n Basil leaves are a source of several health benefiting essential oils such as eugenol, citronellol, linalool, citral, limonene and these compounds are known to have anti inflammatory and anti bacterial properties. Slightly spicy with a touch of sweetness. \n For maximum flavour, add shredded leaves at the end of cooking, this preserves the colour. Goes with Tomatoes, cheese, pasta, eggs, capsicum, eggplant, garlic, mushrooms, strawberries, mango, chicken, beef, veal, watermelon, lemon, lime, oranges. \n Having a few pots of fresh living herbs on your kitchen bench or windowsill will guarantee you have a healthy flavour booster readily on hand to enrich your weekly meals. Snip herbs as needed to add a super boost of ultra freshness, increase the antioxidant levels and boost the nutritional value of meals. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Basil Thai Bunch",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Basil-thai_2efde2ae-f750-4b8f-8eb8-234269362294.jpeg?v=1594511468",
"inventory_quantity": 9999,
"body_html_safe": " Basil Thai \n Thai Basil has a distinctly different flavour, it is sweet flavoured and has a liquorice taste. Basil is best added at the end of your cooking, roughly chopped and pairs perfectly with beef, capsicum, chicken, chilli, eggs, green leaf salads, olive oil, onions, pasta, tomatoes & zucchini. It's a great source of vitamin C and dietary fibre. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Bay Leaves Punnet",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/bay-leaf_a86626d4-ba4a-4ced-8120-6a970e67e783.jpeg?v=1568676563",
"inventory_quantity": 10000,
"body_html_safe": " Bay Leaves \n The Bay Leaf is an aromatic leaf commonly used in cooking to add a subtle bitterness. They can be used in a variety of dishes ranging from soups to confit duck. Bay leaves are a rich source of vitamin A, vitamin C, iron, potassium, calcium, and magnesium. ",
"grams": 10,
"weight": "0.01kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Chives Green Bunch",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Chives_ffacb294-dc1d-4924-afbc-32e1ef9406cd.jpeg?v=1568676406",
"inventory_quantity": 9999,
"body_html_safe": " Chives Green \n Chives are an herb, related to onions and garlic, with long green stems and a mild, not-too-pungent flavour. They have a mild, onion-like flavour, with a hint of garlic. Chives are ideal for sprinkling into potatoes, soups or scrambled eggs and are perfect stirred through sour cream or soft cheese. It's delicate, onion-like flavour pairs perfectly with basil, parsley, chilli, garlic, dill and oregano. A good source of vitamins K, C and A; some niacin and dietary fibre. ",
"grams": 130,
"weight": "0.13kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Coriander Bunch",
"variant_title": "65 / Australia / Default",
"price": 2.49,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/3322_-Coriander-Bunch-1-Square-_1200x1200px.jpg?v=1665359061",
"inventory_quantity": 9995,
"body_html_safe": " Coriander \n Coriander is a herb often used in international dishes and the leaves should taste refreshing, tart, and citrusy. Coriander refreshes in cooking, unlocking intense flavours. Simply sprinkle and season to taste. Coriander is best added at the end of your cooking and is ideal in Mexican and Indian dishes. Think salads, tacos, rice and salsas. Coriander is known to be rich in vitamins like Vitamin K, C, and A. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Coriander Pot Each",
"variant_title": "65 / Australia / Default",
"price": 3.75,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/3984_--Coriander-Herbs-Pot--Square-_1200x1200px.jpg?v=1666230698",
"inventory_quantity": 10000,
"body_html_safe": " Coriander Herb Pot \n Coriander has high concentrations of carotenoids, which are a good source of vitamin A. A distinct lively flavour with a robust citrus undertone. Use stems and leaves. \n For maximum flavour use fresh or add to a finished dish. Chicken, fish, curries, beef, pork, stir fry vegetables, mango, pineapple, dates, oranges, noodles, mussel, tofu, avocado, Asian style salads. \n Having a few pots of fresh living herbs on your kitchen bench or windowsill will guarantee you have a healthy flavour booster readily on hand to enrich your weekly meals. Snip herbs as needed to add a super boost of ultra freshness, increase the antioxidant levels and boost the nutritional value of meals. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Curry Leaves Packet",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/leaf-curry_425db808-f72c-4bd5-98e8-cbad19e234cb.jpeg?v=1568676595",
"inventory_quantity": 10000,
"body_html_safe": " Curry Leaves \n A small, aromatic leaf, curry leaves are a great addition into not only curries but homemade spice mixes, sauces and marinades. A source of antioxidants, these leaves add robust flavour into your cooking. ",
"grams": 10,
"weight": "0.01kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Dill Bunch",
"variant_title": "65 / Australia / Default",
"price": 4.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/dill_herb_resized_d8dcac31-d998-468e-a586-036881e393e6.jpeg?v=1568670414",
"inventory_quantity": 9999,
"body_html_safe": " Dill \n Dill has a sweet flavour and a grassy like texture. It is a great addition into salads, sandwiches and cooking sauces and curries. Dill is a source of Vitamin C, Manganese and Folate. ",
"grams": 1,
"weight": "0.001kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Garlic Chives Bunch",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/garlic-chives_b07922f0-bac3-470f-8253-8f367b8f7345.jpeg?v=1485599633",
"inventory_quantity": 10000,
"body_html_safe": " ",
"grams": 40,
"weight": "0.04kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Lemon Thyme Punnet",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/PB_unknown_1848.jpg?v=1568676599",
"inventory_quantity": 10000,
"body_html_safe": " Thyme Lemon \n Lemon Thyme looks and grows like Thyme abut that is where the similarity stops. Lemon thyme is a compact, upright shrub. The leaves are tiny and heart shaped, ringed with a splash of yellow. Lemon thyme has a bit of a citrus tang, but is milder than most other thyme. This makes it a natural choice for seasoning seafood dishes and even sweets. The citrus flavour also helps to lighten fatty dishes. The natural, volatile oils also work as a digestive aid. ",
"grams": 10,
"weight": "0.01kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Lime Leaves Punnet",
"variant_title": "65 / Australia / Default",
"price": 2.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/Lime-leaf_f7398c31-67c8-4c4e-b66b-c7d01979435a.jpeg?v=1568676596",
"inventory_quantity": 9999,
"body_html_safe": " Lime Leaves \n Kaffir lime leaves are integral in South East Asian cooking. Lime leaves provide a citrus fragrance and taste when used in cooking. Before cooking, the leaves can be deveined, shredded, or, torn and placed straight into soups and curries. ",
"grams": 40,
"weight": "0.04kg",
"option2": "Australia"
},
{
"title": "Fresh Herbs Marjoram Bunch",
"variant_title": "65 / Australia / Default",
"price": 3.99,
"product_image": "https://cdn.shopify.com/s/files/1/0206/9470/products/marjoram_7c8dcf1d-8d43-4199-afcc-1079d203d31d.jpeg?v=1568676596",
"inventory_quantity": 10000,
"body_html_safe": " Marjoram \n Marjoram has a slightly mintly, citrusy taste. Marjoram leaves are best used fresh, as their flavor is sweeter and milder. Hence, it is also best to add them at the last moment when you use them for cooking to enhance salad dressings, seafood sauces, soups, and poultry. It's predominatnly used in French and English recipes. ",
"grams": 10,
"weight": "0.01kg",
"option2": "Australia"