-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1959 lines (1938 loc) · 79.7 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>
<meta charset="utf-8" />
<title>Minimarket J&C - Vegetable Website Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@600;800&display=swap"
rel="stylesheet"
/>
<!-- Icon Font Stylesheet -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Spinner Start -->
<div
id="spinner"
class="show w-100 vh-100 bg-white position-fixed translate-middle top-50 start-50 d-flex align-items-center justify-content-center"
>
<div class="spinner-grow text-primary" role="status"></div>
</div>
<!-- Spinner End -->
<!-- Navbar start -->
<div class="container-fluid fixed-top">
<div
class="container topbar d-none d-lg-block"
style="background-color: rgb(255, 123, 0)"
>
<div class="d-flex justify-content-between">
<div class="top-info ps-2">
<small class="me-3"
><i class="fas fa-map-marker-alt me-2 text-secondary"></i>
<a id="mapLink" target="_blank" class="text-white"
>Jr Huancayo 209</a
></small
>
<small class="me-3"
><i class="fas fa-envelope me-2 text-secondary"></i
><a id="gmailLink" target="_blank" class="text-white">
info@tiendaeyj.com</a
></small
>
</div>
<div class="top-link pe-2">
<a href="#" class="text-white"
><small class="text-white mx-2">Politicas de privacidad</small
>/</a
>
<a href="#" class="text-white"
><small class="text-white mx-2">Terminos de uso</small>/</a
>
<a href="#" class="text-white"
><small class="text-white ms-2">Ventas y Rembolsos</small></a
>
</div>
</div>
</div>
<div class="container px-0">
<nav
class="navbar navbar-light bg-white navbar-expand-xl"
style="background-color: red"
>
<a href="index.html" class="navbar-brand"
><h1 class="text-primary display-6" style="color: red">
E&J Minimarket
</h1></a
>
<button
class="navbar-toggler py-2 px-3"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
>
<span class="fa fa-bars text-primary"></span>
</button>
<div class="collapse navbar-collapse bg-white" id="navbarCollapse">
<div class="navbar-nav mx-auto">
<a href="index.html" class="nav-item nav-link active">Menú</a>
<a href="shop.html" class="nav-item nav-link">Tienda</a>
<a href="shop-detail.html" class="nav-item nav-link"
>Detalles de Tienda</a
>
<div class="nav-item dropdown">
<a
href="#"
class="nav-link dropdown-toggle"
data-bs-toggle="dropdown"
>Paginas</a
>
<div class="dropdown-menu m-0 bg-secondary rounded-0">
<a href="cart.html" class="dropdown-item">Carrito</a>
<a href="chackout.html" class="dropdown-item">Verificación</a>
<a href="testimonial.html" class="dropdown-item"
>Testimonios</a
>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contacto</a>
</div>
<div class="d-flex m-3 me-0">
<button
class="btn-search btn border border-secondary btn-md-square rounded-circle bg-white me-4"
data-bs-toggle="modal"
data-bs-target="#searchModal"
>
<i class="fas fa-search text-primary"></i>
</button>
<a href="cart.html" class="position-relative me-4 my-auto">
<i class="fa fa-shopping-bag fa-2x"></i>
<span
id="cart-count"
class="position-absolute bg-secondary rounded-circle d-flex align-items-center justify-content-center text-dark px-1"
style="top: -5px; left: 15px; height: 20px; min-width: 20px"
>3</span
>
</a>
<a href="login.html" class="my-auto">
<i class="fas fa-user fa-2x"></i>
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- Navbar End -->
<!-- Modal Search Start -->
<div
class="modal fade"
id="searchModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-fullscreen">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
Buscar por palabra clave
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body d-flex align-items-center">
<div class="input-group w-75 mx-auto d-flex">
<input
type="search"
class="form-control p-3"
placeholder="keywords"
aria-describedby="search-icon-1"
/>
<span id="search-icon-1" class="input-group-text p-3"
><i class="fa fa-search"></i
></span>
</div>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="searchModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-fullscreen">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Iniciar Sesión</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body d-flex align-items-center">
<div class="input-group w-75 mx-auto d-flex justify-content-center">
<a href="login.html">
<i class="fas fa-user fa-2x" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Search End -->
<!-- Hero Start -->
<div class="container-fluid py-5 mb-5 hero-header">
<div class="container py-5">
<div class="row g-5 align-items-center">
<div class="col-md-12 col-lg-7">
<h4 class="mb-3 text-secondary">Productos de calidad</h4>
<h1 class="mb-5 display-3 text-primary">
Viveres y Frutas Frescas
</h1>
<!-- <div class="position-relative mx-auto">
<input
class="form-control border-2 border-secondary w-75 py-3 px-4 rounded-pill"
type="number"
placeholder="Search"
/>
<button
type="submit"
class="btn btn-primary border-2 border-secondary py-3 px-4 position-absolute rounded-pill text-white h-100"
style="top: 0; right: 25%"
>
Submit Now
</button>
</div>
-->
</div>
<div class="col-md-12 col-lg-5">
<div
id="carouselId"
class="carousel slide position-relative"
data-bs-ride="carousel"
>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active rounded">
<img
src="img/hero-img-1.png"
class="img-fluid w-100 h-100 bg-secondary rounded"
alt="First slide"
/>
<a
href="#"
class="btn px-4 py-2 text-white rounded"
style="color: red"
>Viveres</a
>
</div>
<div class="carousel-item rounded">
<img
src="img/hero-img-2.jpg"
class="img-fluid w-100 h-100 rounded"
alt="Second slide"
/>
<a href="#" class="btn px-4 py-2 text-white rounded"
>Snacks</a
>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselId"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Anterior</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselId"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Próximo</span>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Hero End -->
<!-- Featurs Section Start -->
<div class="container-fluid featurs py-5">
<div class="container py-5">
<div class="row g-4">
<div class="col-md-6 col-lg-3">
<div class="featurs-item text-center rounded bg-light p-4">
<div
class="featurs-icon btn-square rounded-circle bg-secondary mb-5 mx-auto"
>
<i class="fas fa-car-side fa-3x text-white"></i>
</div>
<div class="featurs-content text-center">
<h5>Oferta envío gratis</h5>
<p class="mb-0">Envío gratis a partir de S/100</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="featurs-item text-center rounded bg-light p-4">
<div
class="featurs-icon btn-square rounded-circle bg-secondary mb-5 mx-auto"
>
<i class="fas fa-user-shield fa-3x text-white"></i>
</div>
<div class="featurs-content text-center">
<h5>Seguridad</h5>
<p class="mb-0">Pagos 100% seguros</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="featurs-item text-center rounded bg-light p-4">
<div
class="featurs-icon btn-square rounded-circle bg-secondary mb-5 mx-auto"
>
<i class="fas fa-exchange-alt fa-3x text-white"></i>
</div>
<div class="featurs-content text-center">
<h5>30 días de retorno</h5>
<p class="mb-0">Garantía de 30 días de devolución</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="featurs-item text-center rounded bg-light p-4">
<div
class="featurs-icon btn-square rounded-circle bg-secondary mb-5 mx-auto"
>
<i class="fa fa-phone-alt fa-3x text-white"></i>
</div>
<div class="featurs-content text-center">
<h5>Contacto 24/7</h5>
<p class="mb-0">Soporte todo el día</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Featurs Section End -->
<!-- Fruits Shop Start-->
<div class="container-fluid fruite py-5">
<div class="container py-5">
<div class="tab-class text-center">
<div class="row g-4">
<div class="col-lg-4 text-start">
<h1>Productos recomendados</h1>
</div>
<div class="col-lg-8 text-end">
<ul class="nav nav-pills d-inline-flex text-center mb-5">
<li class="nav-item">
<a
class="d-flex m-2 py-2 bg-light rounded-pill active"
data-bs-toggle="pill"
href="#tab-1"
>
<span class="text-dark" style="width: 130px"
>Todos los productos</span
>
</a>
</li>
<li class="nav-item">
<a
class="d-flex py-2 m-2 bg-light rounded-pill"
data-bs-toggle="pill"
href="#tab-2"
>
<span class="text-dark" style="width: 130px"
>Frutas y vegetales</span
>
</a>
</li>
<li class="nav-item">
<a
class="d-flex m-2 py-2 bg-light rounded-pill"
data-bs-toggle="pill"
href="#tab-3"
>
<span class="text-dark" style="width: 130px">Harinas</span>
</a>
</li>
<li class="nav-item">
<a
class="d-flex m-2 py-2 bg-light rounded-pill"
data-bs-toggle="pill"
href="#tab-4"
>
<span class="text-dark" style="width: 130px">Piqueos</span>
</a>
</li>
<li class="nav-item">
<a
class="d-flex m-2 py-2 bg-light rounded-pill"
data-bs-toggle="pill"
href="#tab-5"
>
<span class="text-dark" style="width: 130px">Víveres</span>
</a>
</li>
</ul>
</div>
</div>
<div class="tab-content">
<div id="tab-1" class="tab-pane fade show p-0 active">
<div class="row g-4">
<div class="col-lg-12">
<div class="row g-4">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-5.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Galletas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Galletas</h4>
<p>
Galletas soda Field ideal para la preparación de las
Papas a la Huancaina
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/4.50</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i
>Añadir al Carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-51.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Galletas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Galletas Oreo Original</h4>
<p>
Galleta Sandwich Sabor a Chocolate Con Relleno
Cremoso Sabor a Vainilla
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/1.50</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i
>Añadir al Carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-21.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Condimentos
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Aji amarillo en pasta</h4>
<p>
Ají Amarillo en Pasta Arezzo 195g variedad muy
utilizada en la cocina peruana.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/9.50</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i
>Añadir al Carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-4.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Gaseosas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Inca Kola Gordita</h4>
<p>
Inca Kola en envase de 625ml de la gaseosa, una
botella ideal para compartir.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/4.50</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i
>Añadir al Carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-3.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Condimentos
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Amarillín Sibarita Ají Amarillo SIN PICANTE</h4>
<p>
Amarillin Sibarita es una salsa de Ají Amarillo
molida lista para usar. Es el condimento ideal para
conseguir un color y un delicioso sabor SIN PICANTE
en las comidas peruanas.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/3.90</p>
<a
href="#"
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carro</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-1.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Harinas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Huanarpo Macho Puro en Polvo Tulki</h4>
<p>
El Huanarpo Macho, en la medicina tradicional del
Perú, es un polvo utilizado como energizante y como
antiasmático, antidiabético, antitusivo y
antiulceroso.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/18.90</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-2.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Aderezos
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Aderezo Adobo 2 Banderas 300G</h4>
<p>
Aderezo Adobo 2 Banderas / Receta de Arequipa / Perú
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/12.90</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item13.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Bebidas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Chicha Morada Selva 900ml</h4>
<p>
La Chicha Morada de Selva es una deliciosa y
refrescante bebida peruana cuyo intenso color
violeta proviene del maíz morado nativo de los Andes
y su sabor afrutado de una deliciosa combinación de
frutas y especias.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/5.00</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-2" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-12">
<div class="row g-4">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-9.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Frutas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Sandia</h4>
<p>
sandía fresca. Esta fruta refrescante es perfecta
para los días calurosos, proporcionando una
hidratación deliciosa y natural.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/1.29 kg</p>
<a
href="#"
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carro</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-12.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Verduras
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Brocoli</h4>
<p>
brócoli, cuidadosamente seleccionado para ofrecerte
lo mejor de la naturaleza.
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/2.00 kg</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-3" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-12">
<div class="row g-4">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-1.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Harinas
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Huanarpo Macho Puro en Polvo Tulki</h4>
<p>
El Huanarpo Macho, en la medicina tradicional del
Perú, es un polvo utilizado como energizante y como
antiasmático, antidiabético, antitusivo y
antiulceroso
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/18.90</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/fruite-item-6.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Harina
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Harina para Tamal La Latina</h4>
<p>
Harina para Tamal ( de Maíz Mote) La Latina / Perú
500g
</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/9.90</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-4" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-12">
<div class="row g-4">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/karinto.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Piqueos
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Karinto Maní salado 200g</h4>
<p>Piqueos Karinto maní engalletado 200g</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/6.50</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="rounded position-relative fruite-item">
<div class="fruite-img">
<img
src="img/cheetos.jpg"
class="img-fluid w-100 rounded-top"
alt=""
/>
</div>
<div
class="text-white bg-secondary px-3 py-1 rounded position-absolute"
style="top: 10px; left: 10px"
>
Piqueos
</div>
<div
class="p-4 border border-secondary border-top-0 rounded-bottom"
>
<h4>Piqueos Cheetos boliqueso</h4>
<p>Piqueos Cheetos boliqueso 130g</p>
<div
class="d-flex justify-content-between flex-lg-wrap"
>
<p class="text-dark fs-5 fw-bold mb-0">S/5.30</p>
<a
class="btn border border-secondary rounded-pill px-3 text-primary add-to-cart"
><i
class="fa fa-shopping-bag me-2 text-primary"
></i>
Añadir al carrito</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-5" class="tab-pane fade show p-0">