-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.php
More file actions
972 lines (969 loc) · 31.5 KB
/
Copy pathMenu.php
File metadata and controls
972 lines (969 loc) · 31.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/nav.css"/>
<link rel="stylesheet" href="css/transition.css"/>
<!-- <link rel="stylesheet" href="css/menu.css"/> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"/>
<link rel="icon" type="image/x-icon" href="css/images/CoffeeScape2.ico"/>
<script src="https://kit.fontawesome.com/8ef5e4d9da.js"></script>
<script src="https://code.jquery.com/jquery-3.6.1.js"></script>
<title>CoffeeScape | Menu Page</title>
<!--
CSS
-->
<style>
*{
font-family: Garamond, serif;
padding: 0;
margin: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body{
background-color: #221717;
overflow-x: hidden;
}
.arrow-thingy{
width: 0;
height: 0;
bottom: 0;
left: 50px;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-bottom: 25px solid #221717;
position: absolute;
}
.arrow-container .open-cart{
height: 40px;
width: 30px;
font-size: 20px;
color: #221717;
position: fixed;
top: 50%;
right: 0;
background: #E1C9A9;
border-radius: 10px 0 0 10px;
padding: 10px 0 0 10px;
z-index: 996;
transition: 0.2s;
}
.arrow-container .open-cart:hover{
width: 40px;
transition: 0.2s;
}
.cart-container{
position: fixed;
z-index: 996;
}
.cart{
position: fixed;
top: 0;
right: -100%;
height: 100%;
width: 360px;
padding: 20px;
background: #E1C9A9;
box-shadow: 2px 0 4px hsl(0 4% 15% / 10%);
transition: 0.6s;
}
.cart .close-cart{
height: 40px;
width: 40px;
font-size: 20px;
color: #221717;
position: relative;
top: 50%;
left: -55px;
background: #E1C9A9;
border-radius: 10px 0 0 10px;
padding: 10px 0 0 10px;
z-index: 999;
transition: 0.5s;
}
.cart .close-cart:hover{
left: -45px;
transition: 0.5s;
}
.cart-active{
right: 0;
}
.cart-title{
margin-top: 100px;
margin-bottom: 50px;
text-align: center;
font-size: 2.5rem;
font-weight: 600;
}
.cart-box{
display: grid;
grid-template-columns: 32% 50% 18%;
align-items: center;
gap: 1rem;
}
.cart img{
height: 100px;
width: 100px;
object-fit: contain;
padding: 10px;
}
.detail-box{
display: grid;
row-gap: 0.5rem;
}
.cart-product-title{
font-size: 1rem;
text-transform: uppercase;
}
.cart-price{
font-weight: bold;
}
.cart-quantity{
border: solid #221717 1px;
outline-color: #fff;
width: 2.4rem;
text-align: center;
font-size: 1rem;
}
.cart-remove{
font-size: 24px;
color: #221717;
cursor: pointer;
transition: 0.5s;
}
.cart-remove:hover{
font-size: 28px;
transition: 0.5s;
}
.total{
display: flex;
justify-content: flex-end;
margin-top: 1.5rem;
border-top: solid #221717 1px
}
.total-title{
font-size: 1rem;
font-weight: 600;
}
.total-price{
margin-left: 0.5rem;
}
.btn-buy{
display: flex;
margin: 1.5rem auto 0 auto;
padding: 12px 20px;
border: solid #221717 1px;
background: #221717;
color: #E1C9A9;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: 0.5s;
}
.btn-buy:hover{
background: #E1C9A9;
color: #221717;
transition: 0.5s;
}
.search-section{
height: 100px;
width: 100%;
margin-top: 100px;
display: flex;
text-align: center;
justify-content: center;
}
.search-section form{
width: 40%;
display: flex;
position: absolute;
flex-direction: row;
align-items: center;
}
.search-section .search-sign{
color: black;
position: absolute;
padding: 15px;
font-size: 25px;
}
.search-section .remove-sign{
color: black;
font-size: 25px;
position: absolute;
right: 15px;
cursor: pointer;
}
.search-section input{
height: 60px;
width: 100%;
border: none;
box-shadow: none;
font-size: 30px;
border-radius: 20px;
padding: 10px 50px 10px 50px;
}
.wrapper-section{
width: 100%;
margin-top: 50px;
font-size: 40px;
color: #fff;
display: block;
text-align: center;
}
.wrapper-section p{
font-size: 25px;
}
.pro-container{
width: 100%;
display: flex;
justify-content: space-evenly;
padding: 20px 40px;
flex-wrap: wrap;
}
.pro{
width: 23%;
min-width: 250px;
padding: 10px 12px;
cursor: pointer;
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.02);
margin: 50px 0;
border-radius: 25px;
position: relative;
background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("css/images/Background1.png");
background-position: 0% 25%;
border: solid #E1C9A9 1px;
background-size: auto;
transition: 0.5s ease;
}
.pro:hover{
transform: scale(1.05);
animation: moving 30s ease-in infinite;
}
@keyframes moving {
0% {
background-position: 0% 25%;
}
25%{
background-position: 25% 50%;
}
50% {
background-position: 50% 100%;
}
75%{
background-position: 100% 50%;
}
100% {
background-position: 25% 0%;
}
}
.pro img{
height: 350px;
width: 100%;
border-radius: 20px;
border: solid #E1C9A9 1px;
}
.pro .des{
text-align: start;
padding: 10px 0;
}
.pro .des h5{
padding-top: 7px;
font-size: 20px;
color: #fff;
}
.pro .des h4{
font-size: 30px;
color: #fff;
}
.pro i{
font-size: 25px;
color: #fff;
}
.pro .shopping{
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50px;
background-color: #E1C9A9;
color: #221717;
border: solid #E1C9A9 1px;
position: absolute;
bottom: 20px;
right: 20px;
transition: 0.3s ease;
}
.pro .shopping:hover{
background-color: #221717;
color: #E1C9A9;
transition: 0.4s ease;
}
.payment-container{
height: 900px;
width: 100%;
top: 0;
position: sticky;
display: none;
background: rgba(0, 0, 0, 0.8);
z-index: 997;
}
.payment-container form{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.payment-wrapper{
height: 60%;
width: 50%;
border-radius: 15px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
background: #E1C9A9;
padding-top: 100px;
}
.payment-information{
width: 45%;
display: flex;
flex-wrap: wrap;
padding: 20px;
}
.payment-information ul{
list-style-type: none;
}
.payment-information span{
font-size: 20px;
color: #221717;
font-weight: bold;
}
.payment-information input{
height: 30px;
width: 140%;
font-size: 18px;
margin: 10px 0 10px 0;
border-radius: 15px;
border: solid white;
outline: none;
padding: 10px;
}
.payment-information button{
height: 30px;
width: 50%;
font-size: 18px;
margin: 10px 0 10px 0;
border-radius: 15px;
border: solid white;
background: white;
outline: none;
cursor: pointer;
}
.payment-information button:hover{
border: solid #221717;
background: #221717;
color: white;
outline: none;
}
.payment-method{
width: 45%;
padding: 10px;
display: grid;
}
.method-btn{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.method-btn button{
height: 50px;
width: 100px;
background: #E1C9A9;
color: #221717;
border: solid #221717 1px;
border-radius: 15px;
font-size: 25px;
margin: 10px;
font-weight: bold;
cursor: pointer;
}
.method-btn button:hover{
background: #221717;
color: white;
}
.method-btn .image-container{
display: none;
height: 200px;
width: 150px;
margin: 0 150px 100px 0;
border-radius: 15px;
}
.method-btn #display-image{
height: 200px;
width: 150px;
margin: 0 150px 100px 0;
border-radius: 15px;
border: solid #221717;
}
.payment-method input{
height: 50px;
}
.COD{
display: none;
}
.COD span{
font-size: 20px;
}
.COD input{
height: 50px;
font-size: 15px;
margin-top: 15px;
}
.COD img{
height: 180px;
width: 150px;
border-radius: 15px;
border: solid #221717;
}
.GCash{
display: none;
}
.GCash span{
font-size: 20px;
}
.GCash input{
height: 50px;
font-size: 15px;
margin-top: 15px;
}
.GCash img{
height: 180px;
width: 150px;
border-radius: 15px;
border: solid #221717;
}
.payment-title{
top: 0;
position: absolute;
border: solid #fff;
display: flex;
}
.cd{
position: absolute;
top: 170px;
padding-top: 50px;
left: 400px;
font-size: 30px;
border-bottom: solid #221717 1px;
}
.pm{
position: absolute;
top: 170px;
padding-top: 50px;
right: 440px;
font-size: 30px;
border-bottom: solid #221717 1px;
}
.exit-payment{
position: absolute;
top: 175px;
right: 400px;
font-size: 25px;
padding-top: 15px;
cursor: pointer;
}
.proceedBtn{
height: 50px;
width: 100px;
position: absolute;
bottom: 200px;
right: 400px;
border-radius: 25px;
border: solid #221717;
background: #E1C9A9;
color: #221717;
font-size: 20px;
cursor: pointer;
}
.proceedBtn:hover{
background: #221717;
color: #fff;
}
</style>
</head>
<body>
<div class="full-page" id="full-page-section">
<nav id="nav-menu">
<div class="logo-border">
<div class="logo">
<a href="Home.php"><img id="nav-logo" src="css/images/Logo1.png"></img></a>
</div>
</div>
<ul class="ul-left" id="nav-bar-left">
<li class="menu" id="menu-title"><a href="Menu.php">Menu</a>
<div class="sub-menu">
<ul>
<li><a href="Menu.php#appertizers-section">Appetizers</a></li>
<li><a href="Menu.php#pas-section">Pasta & Sandwiches</a></li>
<li><a href="Menu.php#mains-section">Mains</a></li>
<li><a href="Menu.php#desserts-section">Desserts</a></li>
<li><a href="Menu.php#coffee-section">Coffee</a></li>
<li><a href="Menu.php#non-coffee-section">Tea</a></li>
</ul>
</div>
</li>
<li class="order" id="order-title"><a href="Order.php">Order</a></li>
<li class="history" id="history-title"><a href="History.php">History</a></li>
</ul>
<ul class="ul-right" id="nav-bar-right">
<li class="login" id="login-title"><a href="login.php">Login</a></li>
<li class="username-title" id="username-title"><a href="#">Username</a></li>
<li class="creators" id="creators-title"><a href="Creators.html">Creators</a></li>
</ul>
<div class="arrow-thingy"></div>
<div class="animation start-menu"></div>
<div class="nav-bar-toggle" id="menu-bar">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<button onclick="topFunction()" id="myBtn" title="Scroll to top"><i class="fa-solid fa-arrow-up"></i></button>
</nav>
<div class="arrow-container">
<a><i class="fa-solid fa-arrow-left open-cart" id="open-cart"></i></a>
</div>
<div class="cart-container" id="cart-container">
<div class="cart">
<a><i class="fa-solid fa-arrow-right close-cart" id="close-cart"></i></a>
<h2 class="cart-title">Your Order/s</h2>
<div class="cart-content">
</div>
<div class="total">
<div class="total-title">Total</div>
<div class="total-price" id="total-price" name="total-price">P0.00</div>
</div>
<button type="button" class="btn-buy" onclick="showP()">Add Payment</button>
</div>
</div>
<div class="payment-container" id="payment-container">
<?php if (isset($_GET['error'])): ?>
<p><?php echo $_GET['error']; ?><p>
<?php endif ?>
<form action="upload.php" method="POST" enctype="multipart/form-data">
<div class="payment-wrapper">
<a class="cd">Customer Details</a>
<a class="pm">Payment Method</a>
<i class="fa-solid fa-x exit-payment" onclick="exitP()"></i>
<button type="submit" class="proceedBtn" id="proceedBtn" name="proceedBtn" onclick="confirmOrder()">Proceed</button>
<div class="payment-information">
<ul>
<li><span>Full Name:</span></li>
<li><input type="text" id="fullname" name="fullname" placeholder="Ex. Juan Karlo S. Rizal" required></li>
<li><span>Email:</span></li>
<li><input type="text" id="email" name="email" placeholder="Ex. bh0xc$k@r1o69@gmail.com" required></li>
<li><span>Contact No.:</span></li>
<li><input type="text" id="contact" name="contact" placeholder="Ex. 09087451863" onkeypress="if ( isNaN( String.fromCharCode(event.keyCode) )) return false;" required></li>
<li><span>Delivering Address:</span></li>
<li><input type="text" id="address" name="address" placeholder="Ex. St. Brgy. City, Province..." required></li>
</ul>
</div>
<div class="payment-method">
<div class="method-btn">
<button type="button" class="COD-Btn" id="COD-Btn" onclick="showCOD()">COD</button>
<button type="button" class="GCash-Btn" id="GCash-Btn" onclick="showGCash()">GCash</button>
<div class="COD" id="COD">
<span>Send any form of Valid/Semi-Valid ID (Semi-Valid ID Ex. Brgy. ID, Student ID, etc.).</span>
<input type="file" id="import-id" name="import-id" accept="image/*"></input>
</div>
<div class="GCash" id="GCash">
<span>Send your payment to this GCash No. (09084651577) and upload the transaction receipt.</span>
<input type="file" id="import-transaction" name="import-transaction" accept="image/*"></input>
</div>
<div class="image-container" id="image-container">
<img id="display-image"></img>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="transition transition-2 is-active"></div>
<section class="search-section">
<form>
<i class="fa-solid fa-magnifying-glass search-sign"></i>
<input type="text" name="" id="search-item" placeholder="Search products" onkeyup="search()">
<i class="fa-solid fa-x remove-sign" title="" onclick="clearsb(), search()"></i>
</form>
</section>
<!--FIRST SECTION (APPETIZERS)-->
<div class="first-section">
<section class="wrapper-section" id="appertizers-section">
<h2 class="pro-title">Appetizers</h2>
<p class="pro-description">Just a few bites!</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Appetizers/Cheesy Bacon Chips.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Cheesy Bacon Chips</h5>
<h4 class="product-price">P139</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Appetizers/Chicken Goujons.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Chicken Goujons</h5>
<h4 class="product-price">P139</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Appetizers/Onion Rings.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Onion Rings</h5>
<h4 class="product-price">P95</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Appetizers/Soy Garlic Chicken Wings.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Soy Garlic Chicken Wings</h5>
<h4 class="product-price">P139</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--SECOND SECTION (PASTA AND SANDWICHES)-->
<div class="second-section">
<section class="wrapper-section" id="pas-section">
<h2 class="pro-title">Pasta & Sandwiches</h2>
<p class="pro-description">Affordable sandwiches and delicious pasta.</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Aglio Olio.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Aglio Olio</h5>
<h4 class="product-price">P135</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Clubhouse Sandwich.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Clubhouse Sandwich</h5>
<h4 class="product-price">P79</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Kimchi Burger.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Kimchi Burger</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Pasta Pesto.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Pasta Pesto</h5>
<h4 class="product-price">P159</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Pasta Puttanesca.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Pasta Puttanesca</h5>
<h4 class="product-price">P159</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Seafood Fettuccine.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Seafood Fettuccine</h5>
<h4 class="product-price">P169</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Spaghetti ala Carbonara.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Spaghetti ala Carbonara</h5>
<h4 class="product-price">P159</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Sriracha Chicken Burger.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Sriracha Chicken Burger</h5>
<h4 class="product-price">P99</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Texas BBQ Burger.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Texas BBQ Burger</h5>
<h4 class="product-price">P99</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Pasta&Sandwiches/Three Cheese Flatbread.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Three Cheese Flatbread</h5>
<h4 class="product-price">P199</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--THIRD SECTION (MAINS)-->
<div class="third-section">
<section class="wrapper-section" id="mains-section">
<h2 class="pro-title">Mains</h2>
<p class="pro-description">Be satisfied with our meals!</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Mains/BBQ Pork Ribs.jpg" class="product-image">
<div class="des">
<h5 class="product-name">BBQ Pork Ribs</h5>
<h4 class="product-price">P245</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Burger Steak.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Burger Steak</h5>
<h4 class="product-price">P135</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Hungarian Sausage Rice.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Hungarian Sausage Rice</h5>
<h4 class="product-price">P169</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Korean Pork Belly.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Korean Pork Belly</h5>
<h4 class="product-price">P179</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Korean Spam Rice.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Korean Spam Rice</h5>
<h4 class="product-price">P179</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro" id="Pork Silog">
<img src="css/images/Menu/Mains/Pork Silog.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Pork Silog</h5>
<h4 class="product-price">P179</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Shanghai Rice.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Shanghai Rice</h5>
<h4 class="product-price">P159</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Mains/Skinless Longganisa.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Skinless Longganisa</h5>
<h4 class="product-price">P179</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--FOURTH SECTION (DESSERTS)-->
<div class="fourth-section">
<section class="wrapper-section" id="desserts-section">
<h2 class="pro-title">Desserts</h2>
<p class="pro-description">Keep calm and eat dessert!</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Desserts/Belgian Waffles.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Belgian Waffles</h5>
<h4 class="product-price">P135</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro" id="Brownie ala Mode">
<img src="css/images/Menu/Desserts/Brownie ala Mode.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Brownie ala Mode</h5>
<h4 class="product-price">P105</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Desserts/Choco-Peanutbutter Waffles.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Choco-Peanutbutter Waffles</h5>
<h4 class="product-price">P150</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Desserts/Nutella Waffles.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Nutella Waffles</h5>
<h4 class="product-price">P135</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Desserts/Tripple Chocolate Waffles.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Tripple Chocolate Waffles</h5>
<h4 class="product-price">P145</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Desserts/Waffles & Ice Cream.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Waffles & Ice Cream</h5>
<h4 class="product-price">P135</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--FIFTH SECTION (COFFEE)-->
<div class="fifth-section">
<section class="wrapper-section" id="coffee-section">
<h2 class="pro-title">Coffee</h2>
<p class="pro-description">Coffee first. Scheme later.</p>
<div class="pro-container">
<div class="pro" id="Caramel Mocchiato">
<img src="css/images/Menu/Coffee/Caramel Mocchiato.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Caramel Mocchiato</h5>
<h4 class="product-price">P79</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro" id="Mocha">
<img src="css/images/Menu/Coffee/Mocha.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Mocha</h5>
<h4 class="product-price">P69</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Coffee/Spanish Latte.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Spanish Latte</h5>
<h4 class="product-price">P69</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Coffee/Cafe Latte.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Cafe Latte</h5>
<h4 class="product-price">P59</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--SIXTH SECTION (NON-COFFEE)-->
<div class="sixth-section">
<section class="wrapper-section" id="non-coffee-section">
<h2 class="pro-title">Non-Coffee</h2>
<p class="pro-description">Drink our cool beverages in peace.</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Non-Coffee/Mango Smoothie.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Mango Smoothie</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Non-Coffee/Milo Dinosaur.jpg" class="product-image">
<div class="des">
<h5 class="product-name" id="Milo Dinosaur">Milo Dinosaur</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro" id="Mix Berry Smoothie">
<img src="css/images/Menu/Non-Coffee/Mix Berry Smoothie.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Mix Berry Smoothie</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Non-Coffee/Strawberry Smoothie.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Strawberry Smoothie</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
<div class="pro">
<img src="css/images/Menu/Non-Coffee/Vanilla Classic Milkshake.jpg" class="product-image">
<div class="des">
<h5 class="product-name">Vanilla Classic Milkshake</h5>
<h4 class="product-price">P89</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
<!--SEVENTH SECTION (TEA)-->
<div class="seventh-section">
<section class="wrapper-section" id="tea-section">
<h2 class="pro-title">Tea</h2>
<p class="pro-description">Storm in a tea cup.</p>
<div class="pro-container">
<div class="pro">
<img src="css/images/Menu/Tea/Thirst Quencher.png" class="product-image">
<div class="des">
<h5 class="product-name">Thirst Quencher</h5>
<h4 class="product-price">P59</h4>
</div>
<a><i class="fa-solid fa-basket-shopping shopping"></i></a>
</div>
</div>
</section>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>