-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1096 lines (1007 loc) · 83.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QJCYVVK2Q0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QJCYVVK2Q0');
</script>
<meta property="og:title" content="Private Chef Service in Hua Hin - Kinthai" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kinthai.in.th/" />
<meta property="og:image" content="https://kinthai.in.th/img/private-chef-huahin-beach.jpg" />
<meta property="og:description" content="Explore premier Private Chef Services in Hua Hin by Kinthai. Enjoy customized Asian and Western dining experiences tailored to your preferences." />
<meta property="og:site_name" content="Kinthai" />
<meta property="og:locale" content="en_US" />
<meta name="p:domain_verify" content="0491c2f86de1a054d26f05bdb083b297"/>
<meta name="yandex-verification" content="c04db52dbef767f7" />
<title>Private Chef Service in Hua Hin - Kinthai</title>
<meta name="description" content="Explore premier Private Chef Services in Hua Hin by Kinthai. Enjoy customized Asian and Western dining experiences tailored to your preferences.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kinthai.in.th/">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="./css/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/jquery.min.js"></script>
<link rel="icon" href="./img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="manifest" href="./img/site.webmanifest">
<style>
.btn.btn-sm.btn-outline-primary.my-cart-btn {display:none !important;}
.nav-item.my-cart-icon {display:none !important;}
</style>
<meta name="google-site-verification" content="OgfD5ennV1n3cgaNDYQW5DNMCKCCadIW74XLDGFOgro" />
</head>
<div id="header"></div>
<script>
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
</script>
<body>
<div class="block hero1 my-auto" style="background-image:url(./img/private-chef-huahin-beach.jpg);background-size:cover;background-position:center center;">
<div class="container-fluid text-center">
<h1 class="display-2 text-white" data-aos="fade-up" data-aos-duration="1000" data-aos-offset="0">Private Chef in Hua Hin</h1>
<h2 class=" text-white" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
Explore Gourmet Dining with Our Top-Rated Private Chef Services in Hua Hin.
</h2>
<a href="#menu" class="btn-text lead d-inline-block text-white border-top border-bottom mt-4 pt-1 pb-1"
data-aos="fade-up" data-aos-duration="1000" data-aos-delay="1000">View Chef's Table</a>
</div>
<div class="clearfix"></div>
</div>
<div class="maincontent" id="menu">
<div class="container">
<h2 class="text-center">Welcome to our showcase menu!</h2><br>
<h5 class="text-center">Please note that these dishes are examples of the exquisite culinary experiences crafted by our Private Chef. These selections are for demonstration purposes only and cannot be ordered individually. We invite you to enjoy browsing these creations as a preview of the personalized dining experiences we can tailor just for you. To discuss your personalized dining plan, please <a href="contact.html">contact us</a> directly. We look forward to creating a memorable meal for you!</h5><br>
<section>
<div class="block menu1">
<div class="buttons-container">
<a href="#" class="button" data-target="Breakfast">BREAKFAST</a>
<a href="#" class="button" data-target="Salad">SALAD/APPETIZER</a>
<a href="#" class="button" data-target="Soup">SOUP</a>
<a href="#" class="button" data-target="Curry">CURRY</a>
<a href="#" class="button" data-target="Meat">MEAT</a>
<a href="#" class="button" data-target="Pasta">PASTA</a>
<a href="#" class="button" data-target="Pizza">PIZZA</a>
<a href="#" class="button" data-target="Vegetarian">VEGETARIAN</a>
<a href="#" class="button" data-target="Seafood">SEAFOOD/FISH</a>
<a href="#" class="button" data-target="Dessert">DESSERT</a>
<a href="#" class="button" data-target="coffeeMenu">DRINKS</a>
<a href="#" class="button" data-target="Rice">RICE</a>
<a href="#" class="button" data-target="FarmStand">FarmStand</a>
<!-- <a target="_blank" href="https://kinthai.in.th/" class="btn btn-lg btn-primary">Download Menu</a> -->
</div>
<!-- Start Breakfast Menu -->
<div class="menu" id="Breakfast">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Poached Eggs with Hollandaise on Croissant.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Poached Eggs with Hollandaise on Croissant</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Perfectly poached eggs served on a buttery, flaky croissant, topped with rich, creamy hollandaise sauce. Accompanied by fresh avocado and garnished with herbs, this breakfast dish offers a delightful combination of textures and flavors, from the crisp croissant to the velvety eggs and sauce.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Poached Eggs with Hollandaise on Croissant" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Eggs Benedict.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Eggs Benedict.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Eggs Benedict</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A classic breakfast dish featuring perfectly poached eggs served on toasted English muffins, topped with savory Canadian bacon and smothered in a rich, creamy hollandaise sauce. Accompanied by a side of scrambled eggs, this dish is a delightful way to start your day with a satisfying blend of flavors and textures.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Homemade Pizza" data-price="250" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Eggs Benedict.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Classic Omelette.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Classic Omelette</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A fluffy omelette made with farm-fresh eggs, filled with a savory mix of tomatoes, bell peppers, onions, and diced ham. Lightly seasoned and cooked to perfection, making it a satisfying choice for breakfast.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Classic Omelette" data-price="250" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Classic Omelette.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Fresh Fruit Platter.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Fresh Fruit Platter</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A refreshing assortment of fresh seasonal fruits, including juicy orange slices, crisp apple chunks, sweet melon, and succulent grapes. Perfect for a light and healthy start to your day.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Fresh Fruit Platter" data-price="250" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Fresh Fruit Platter.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Breakfast Menu -->
<!-- Start Salad Menu -->
<div class="menu menu--is-visible" id="Salad">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Thai salad Labb pa tod green Apple-2.jpeg" alt="Private Chef Service in Hua Hin - Spring Roll" title="Private Chef Service in Hua Hin - Spring Roll">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Thai Salad Laab Pa Tod with Green Apple</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Crispy fried fish (Pa Tod) tossed with fresh green apple slices, roasted ground rice, red onions, herbs, and a zesty dressing. This inventive dish combines the bold flavors of Laab with the refreshing crunch of green apples, garnished with mint leaves and edible flowers for a perfect balance of taste and texture.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="5" data-name="Thai Salad Laab Pa Tod with Green Apple" data-price="240" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Pomelo Salad.jpeg" alt="Private Chef Service in Hua Hin - Spring Roll" title="Private Chef Service in Hua Hin - Spring Roll">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Pomelo Salad (Yam Som-O)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A refreshing and zesty Thai salad made with juicy pomelo, toasted coconut, peanuts, shallots, and garlic. The salad is tossed with a fragrant dressing of fish sauce, lime juice, chili, and palm sugar, topped with crispy fried shallots and herbs. This dish offers a perfect balance of sweet, sour, and savory flavors, making it a delightful and light option for any meal.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="5" data-name="Pomelo Salad (Yam Som-O)" data-price="240" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708841899g-roll.jpg" alt="Private Chef Service in Hua Hin - Spring Roll" title="Private Chef Service in Hua Hin - Spring Roll">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Crispy Spring Rolls</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A classic appetizer featuring golden-brown, crispy rolls filled with a savory mixture of vegetables and glass noodles, served with a tangy sweet chili sauce.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="5" data-name="Thai Spring Rolls" data-price="140" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708841899g-roll.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708839183rn-salad.jpg" alt="Private Chef Service in Hua Hin - Western Salad" title="Private Chef Service in Hua Hin - Western Salad">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Grilled Chicken Rainbow Salad</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A vibrant salad featuring grilled chicken, mixed greens, cherry tomatoes, carrots, red kidney beans, corn, and kiwi, offering a colorful and nutritious blend of flavors and textures.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="6" data-name="Western Salad" data-price="140" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708839183rn-salad.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Chicken Satay Peanut Sauce (Satay Gai)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Grilled chicken skewers marinated in Thai spices and coconut milk, served with a creamy peanut dipping sauce.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Chicken Satay Peanut Sauce" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Cobb Salad.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Cobb Salad</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Mixed greens topped with grilled chicken, crispy bacon, cherry tomatoes, avocado, boiled eggs, and crumbled cheese, served with a house dressing.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Chicken Satay Peanut Sauce" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Potato Salad.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Potato Salad</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Creamy blend of boiled potatoes, mayonnaise, and a hint of black pepper, garnished with fresh herbs.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Chicken Satay Peanut Sauce" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Papaya Salad (Som Tum).jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Papaya Salad (Som Tum)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Shredded green papaya, carrots, cherry tomatoes, and peanuts tossed in a tangy lime dressing with a hint of chili.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Chicken Satay Peanut Sauce" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Feta cheese Salad tomatoes.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Tomato Feta Cheese Salad</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Freshly sliced tomatoes topped with crumbled feta cheese, drizzled with olive oil, and garnished with parsley. A simple yet flavorful combination of tangy feta and juicy tomatoes, perfect for a light, refreshing salad.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Tomato Feta Cheese Salad" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838144en-satay-peanut-sauce.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Salad Menu -->
<!-- Start Soup Menu -->
<div class="menu" id="Soup">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Thai spicy and sour soup with shrimp (Tom Yum Goong).jpg" alt="Private Chef Service - Kinthai" title="Private Chef Service - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Thai spicy and sour soup with shrimp (Tom Yum Goong)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A bold and tangy Thai soup featuring succulent shrimp in a flavorful broth of lemongrass, kaffir lime leaves, galangal, and chili, balanced with fresh lime juice and fish sauce for a perfect mix of spicy, sour, and savory notes.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="7" data-name="Tom Yam Goong" data-price="170" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708838007am-goong.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Chicken Coconut Soup (Tom Kha Gai).jpg" alt="Private Chef Service - Kinthai" title="Private Chef Service - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Chicken Coconut Soup (Tom Kha Gai)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A rich and aromatic Thai soup made with tender chicken simmered in a creamy coconut milk base, infused with lemongrass, galangal, kaffir lime leaves, and a hint of lime juice. Perfectly balanced with a touch of heat and sweetness.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="8" data-name="Tom Kha Kai" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/item_20.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Soup Menu -->
<!-- Start Curry Menu -->
<div class="menu" id="Curry">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Duck Curry 2.jpeg" alt="Private Chef Service - Kinthai" title="Private Chef Service - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Duck Curry (Kaeng Ped Pet Yang)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">This rich and flavorful red curry features tender slices of roasted duck simmered in a coconut milk-based curry sauce. The curry is complemented with lychees, tomatoes, pineapple, and Thai basil, creating a perfect balance of sweet, spicy, and tangy flavors. A traditional and indulgent Thai dish, ideal for those who enjoy a hearty and aromatic meal.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="9" data-name="Duck Curry (Kaeng Ped Pet Yang)" data-price="280" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Chicken Massaman Curry (Kaeng Matsaman Gai).jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Chicken Massaman Curry (Kaeng Matsaman Gai).jpg" alt="Private Chef Service - Kinthai" title="Private Chef Service - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Chicken Massaman Curry (Kaeng Matsaman Gai)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Slow-cooked chicken with potatoes, carrots, onions, and peanuts in a rich, mildly spiced Massaman curry with coconut milk.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="9" data-name="Chicken Massaman Curry" data-price="130" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Chicken Massaman Curry (Kaeng Matsaman Gai).jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708837704ng-curry-chicken_.jpg" alt="Private Chef Service - Kinthai" title="Private Chef Service - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Panang Chicken Curry (Panang Gai)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Tender chicken pieces simmered in a rich and creamy Panang curry sauce, with coconut milk, kaffir lime leaves, red chili, and a hint of ground peanuts.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="9" data-name="Panang Curry Chicken" data-price="130" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708837704ng-curry-chicken_.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Yellow-Curry-Sea-Food-500px.JPG" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Aram Thale Pad Pong Ka-Ree (Yellow Curry)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">The dish takes Shrimp, Crab and Squid with indian yellow curry, chicken eggs, garlic, spring onions, white onions, red pepper, light soya sauce, chinese celery and organic sugar.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="10" data-name="Aram Thale Pad Pong Ka-Ree (Yellow Curry)" data-price="170" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Yellow-Curry-Sea-Food-500px.JPG">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Stir-Fried Crab with Yellow Curry (Phoo Pad Phong Karee).jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Stir-Fried Crab with Yellow Curry (Phoo Pad Phong Karee)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Fresh crab stir-fried with Indian yellow curry, chicken eggs, garlic, spring onions, white onions, red pepper, light soya sauce, Chinese celery, and organic sugar.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="10" data-name="Aram Thale Pad Pong Ka-Ree (Yellow Curry)" data-price="170" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Yellow-Curry-Sea-Food-500px.JPG">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1348857914urry.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Kûng/plāh̄mụk/plāh̄mụk yạks̄ʹ̒ Pad Pong Ka-Ree (Yellow Curry)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Stir-Fried Shrimps, Squid or Octopus with Indian yellow curry powder, oyster sauce, chili paste, chicken eggs, garlic, spring onions, onions, light soya sauce, chinese celery or equivalent and organic crystal sugar.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="16" data-name="Kûng/plāh̄mụk/plāh̄mụk yạks̄ʹ̒ Pad Pong Ka-Ree (Yellow Curry)" data-price="190" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1348857914urry.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Green Curry with Chicken (Gaeng Keow Wan Gai).jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Green Curry with Chicken (Gaeng Keow Wan Gai)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Tender chicken cooked in a fragrant green curry sauce with coconut milk, zucchini, and Thai basil.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="16" data-name="ʹ̒ Pad Pong Ka-Ree (Yellow Curry)" data-price="190" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Green Curry with Chicken (Gaeng Keow Wan Gai).jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Curry Menu -->
<!-- Start Meat Menu -->
<div class="menu" id="Meat">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708840974ed-beef--thai-style--with-sauce-Jim-jeaw.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Thai Grilled Beef with Jaew Sauce</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Tender slices of grilled Thai beef served with a tangy and spicy Jaew dipping sauce, garnished with fresh herbs and chili.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="11" data-name="Thai Beef Grilled" data-price="190" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708840974ed-beef--thai-style--with-sauce-Jim-jeaw.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Grilled Duck Skewers with Grape and Honey.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Grilled Duck Skewers with Grape and Honey</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Tender slices of grilled duck skewered and served with fresh grapes, radish slices, and a drizzle of honey for a delightful balance of savory and sweet.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="11" data-name="Grilled Duck Skewers with Grape and Honey" data-price="190" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Grilled Duck Skewers with Grape and Honey.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Swedish Meatballs.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Swedish Meatballs</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Savory meatballs made from a blend of pork and beef, seasoned to perfection and smothered in a creamy brown gravy. Served with buttery mashed potatoes, crisp asparagus, and a side of sweet lingonberry jam for a delightful balance of flavors. A classic Swedish comfort dish that brings a rich, hearty taste with every bite.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="11" data-name="Swedish Meatballs" data-price="190" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Swedish Meatballs.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Meat Menu -->
<!-- Start Pasta Menu -->
<div class="menu" id="Pasta">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708841292ns-spaghetti-bacon-dried-chilli.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Tagliatelle Bacon with Chili</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Fresh tagliatelle pasta tossed with crispy bacon, dried chili peppers, garlic, and a sprinkle of Parmesan cheese.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="11" data-name="Talharim Bacon with Chili" data-price="160" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708841292ns-spaghetti-bacon-dried-chilli.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Pad-Thai-1.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Royal Pad Thai Koong</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Classic well known stir fried rice noodles with bean sprouts, prawns, spring onions, ground peanuts, chicken eggs, garlic, tofu, sweet turnips, dried shrimp powder, fish sauce, pad thai sauce and tamarind juice. Served with fresh lime & dried chillies.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Royal Pad Thai Koong" data-price="120" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Pad-Thai-1.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Beef-lasagna.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Beef Lasagna</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Layers of pasta with seasoned ground beef, rich tomato sauce, béchamel, and melted cheese, baked to golden perfection.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="12" data-name="Beef Lasagna" data-price="220" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Beef-lasagna.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Pasta Menu -->
<!-- Start Pizza Menu -->
<div class="menu" id="Pizza">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Homemade Pizza.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Homemade Pizza</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Our freshly baked pizza features a crispy crust, topped with a rich tomato sauce, melted mozzarella cheese, fresh basil, and your choice of additional toppings. We are happy to customize your pizza with any ingredients or flavors you desire. Just let us know your preferences, and we'll create a delicious pizza tailored just for you!</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Homemade Pizza" data-price="250" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Homemade Pizza.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Pizza Menu -->
<!-- Start Vegetarian Menu -->
<div class="menu" id="Vegetarian">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Pad-Woon-Sen.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Yum Woon Sen Jay</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Vegetarian Vermicelli Noodle Salad with raisins and peanuts, celery, shallot, spring onion, lemon juice, light soya sauce, green salad leaves (lettuce), carrot, cashew nuts, capsicum and garlic.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="13" data-name="Yum Woon Sen Jay" data-price="90" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Pad-Woon-Sen.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Pad-Thai-Jay.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Pad Thai Jay</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Classic well known stir fried rice noodles with bean sprouts, spring onions, ground peanuts, garlic, tofu, sweet turnips, pad thai sauce and tamarind juice. Served with fresh lime.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="14" data-name="Pad Thai Jay" data-price="90" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Pad-Thai-Jay.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Vegetarian Menu -->
<!-- Start SeaFood/Fish Menu -->
<div class="menu" id="Seafood">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/lobster-grilled-2.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Grilled Lobster</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Succulent, char-grilled lobster brushed with garlic butter, served with zesty lemon wedges and a side of crisp greens. A luxurious seafood treat bursting with flavor.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Grilled Lobster" data-price="1800" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/crab-grilled-1.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Grilled Crab</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Tender, flame-grilled crab infused with smoky spices, paired with a tangy dipping sauce and a side of fresh slaw. A rich, savory dish for seafood lovers.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Grilled Crab" data-price="220" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/steamed-crab-1.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Steamed Crab</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Delicately steamed crab served in its shell, showcasing its natural sweetness and tenderness. Accompanied by a light citrus dipping sauce for an elegant seafood delight.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Steamed Crab" data-price="220" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Calamari.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Fried Calamari</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Crispy, golden-battered rings of calamari, served with a side of creamy tartar sauce and fresh greens. Perfectly seasoned and fried to perfection for a satisfying seafood dish.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Fried Calamari" data-price="220" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Thai shrimp cake-3.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Thai Shrimp Cake (Tod Mun Goong)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">These Thai Shrimp Cakes, known as Tod Mun Goong, are crispy on the outside, tender on the inside, and packed with shrimp flavor. Paired with a traditional sweet and spicy Thai dipping sauce, they offer a unique contrast to similar dishes from other regions, making them a heartier, more flavorful option.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Thai Shrimp Cake (Tod Mun Goong)" data-price="260" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1377913310neung_manao.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1377913310neung_manao.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Steamed White Fish with Lime (Pla Neung Manao)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Steamed white fish with chilli and lime dressing, this dish takes lemon grass, galangal, kaffir lime leaves, garlic, red chilli, fish sauce, coriander and palm sugar.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Steamed White Fish with Lime (Pla Neung Manao)" data-price="160" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1377913310neung_manao.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/steamed-seabass-with-thai-herbs.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Steamed Seabass with Herbs</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Fresh whole seabass steamed with lemongrass, kaffir lime leaves, galangal, and cabbage, infused with aromatic Thai herbs.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="15" data-name="Steamed Seabass with Herbs" data-price="360" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/steamed-seabass-with-thai-herbs.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End SeaFood/Fishes Menu -->
<!-- Start Desserts Menu -->
<div class="menu" id="Dessert">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/cranberry cheesecake 1.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Cranberry Cheesecake</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A rich and creamy cheesecake topped with a tangy cranberry compote, offering the perfect balance of sweetness and tartness. Served with a buttery graham cracker crust and garnished with whipped cream and fresh flowers for a delightful finish.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Cranberry Cheesecake" data-price="250" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708841979y-rice-mango.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708841979y-rice-mango.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Mango Sticky Rice (Khao Niew Mamuang)</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Sweet sticky rice paired with fresh mango slices, topped with creamy coconut sauce and crunchy mung beans.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Sticky Rice Mango" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708841979y-rice-mango.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Caramel Flan with Fresh Berries.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Caramel Flan with Fresh Berries</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">A rich and creamy caramel flan made from fresh milk, eggs, and sugar, gently baked to a smooth texture. Topped with a glossy caramel sauce and garnished with a mix of fresh raspberries, blueberries, and a sprig of mint, this dessert offers a perfect balance of sweetness and freshness.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Caramel Flan with Fresh Berries" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Caramel Flan with Fresh Berries.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/Pudding cream caramel cranberry.jpeg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Caramel Cream Pudding Topped with Cranberries</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Velvety caramel cream pudding topped with a vibrant cranberry garnish. A smooth and indulgent dessert with a hint of tangy sweetness.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="19" data-name="Caramel Cream Pudding Topped with Cranberries" data-price="150" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/Caramel Flan with Fresh Berries.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Desserts Menu -->
<!-- Start Drinks Menu -->
<div class="menu" id="coffeeMenu">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1708593183-mango-smoothie.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Mango Smoothie</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Mango Smoothie.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="20" data-name="Mango Smoothie" data-price="80" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1708593183-mango-smoothie.jpg">Add to cart</button>
</div>
</div>
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">
<img class="product-img" src="https://kinthai.in.th/img/menu/1348858927grass_green_tea.jpg" alt="Private Chef Service in Hua Hin - Kinthai" title="Private Chef Service in Hua Hin - Kinthai">
</div>
<div class="details col-sm-9">
<div class="item__header">
<h3 class="item__title">Green Tea with Lemon Grass</h3>
<span class="item__dots"></span>
<span class="item__price">
<a target="_blank" href="https://kinthai.in.th/contact.html" class="btn btn-sm btn-primary">Inquiry</a>
</span>
</div>
<p class="item__description">Green Tea with Lemon Grass.</p>
<button class="btn btn-sm btn-outline-primary my-cart-btn"
data-id="21" data-name="Green Tea with Lemon Grass" data-price="40" data-quantity="1"
data-image="https://kinthai.in.th/img/menu/1348858927grass_green_tea.jpg">Add to cart</button>
</div>
</div>
</div>
<!-- End Drinks Menu -->
<!-- Start Rice Menu -->
<div class="menu" id="Rice">
<div class="item row align-items-center">
<div class="col-sm-3 pr-5">