-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-single.html
1051 lines (980 loc) · 55.4 KB
/
product-single.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>
<head>
<base href="/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Title which will fit on all pages</title>
<meta itemprop="name" content="Title which will fit on all pages" />
<meta name="twitter:title" content="Title which will fit on all pages" />
<meta property="og:title" content="Title which will fit on all pages" />
<meta name="description" content="Description which will fit on all pages" />
<meta itemprop="description" content="Description which will fit on all pages" />
<meta name="twitter:description" content="Description which will fit on all pages" />
<meta property="og:description" content="Description which will fit on all pages" />
<meta itemprop="image" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta name="twitter:image:src" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta property="og:image" content="https://podhubvape.shop/img/bull.image.jpg" />
<link rel="icon" type="image/x-icon" href="img/favicon.jpg" />
<meta name="keywords" content="waw, web art work, server render, template" />
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Amatic+SC:400,700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/ionicons.min.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/icomoon.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
<style>
:root {
--primary_color: {
{
{
variables.primary_color || "#e0dc10"
}
}
}
;
}
.social-links {
display: flex;
align-items: center;
}
.social-links__wrap a svg {
width: 32px;
height: 32px;
}
.social-links__wrap a .instagram {
width: 30px;
height: 30px;
}
.social-links__wrap a .telegram {
width: 28px;
height: 28px;
}
.social-links__wrap {
margin-right: 30px;
}
.social-links__wrap a {
margin-left: 15px;
}
.nav-link__cart {
padding: 0 !important;
display: flex !important;
align-items: center;
}
.icon-shopping_cart {
font-size: 29px;
}
@media screen and (max-width: 479px) {
.social-links__wrap a svg {
width: 22px;
height: 22px;
}
.social-links__wrap a .instagram {
width: 24px;
height: 24px;
}
.social-links__wrap a .telegram {
width: 22px;
height: 22px;
}
.social-links__wrap a {
margin-left: 10px;
}
.social-links__wrap {
margin-right: 20px;
}
.icon-shopping_cart {
font-size: 20px;
}
}
</style>
</head>
<body class="goto-here">
<!--
<div class="py-1 bg-primary">
<div class="container">
</div>
</div>
-->
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="/">Podhub</a>
<div class="burger-wrap">
<div class="burger"></div>
</div>
<div class="header__navigation">
<a href="/">Головна</a>
<a href="/shop">Товари</a>
</div>
<div class="social-links">
<div class="social-links__wrap">
<a href="https://t.me/Pod_Hub_Vape_Shop">
<svg class="telegram" data-name="Layer 1" id="Layer_1" viewBox="0 0 508.33 508.36"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: #2ca3db;
fill-rule: evenodd;
}
.cls-2 {
fill: #fff;
}
</style>
</defs>
<path class="cls-1"
d="M485,29.72c11.45,15.13,16.61,40.21,19.15,70.7,3.36,45.5,4.71,100.1,6,156.52-1.67,57.47-2.35,115.43-6,156.52-2.88,31.54-9,52.66-19.22,65.47-13,12.79-37.94,23.59-73.5,26.15-43.25,3.69-96.61,3.65-155.48,5.1-65.44-1.12-109.82-.64-156.38-5.08-36.32-2.52-60.08-13.19-74.7-26.07-10.83-14.54-14-30-17-66.24-3.75-41.85-4.58-98.56-6-155.54C4,200.57,4.13,143.44,7.9,100.74,10.43,67.05,14.42,44.4,24.65,30,39,17.77,63.48,11.69,100,8.69c50-5.85,102.06-7,155.88-6.87,55.39.09,108.56,1.67,156,6.34,32,2.56,58.48,8.07,73.07,21.56Z"
transform="translate(-1.83 -1.82)"></path>
<path class="cls-2"
d="M378.92,125.44l-264.48,102c-18.05,7.24-17.94,17.31-3.29,21.8l66,20.59,25.24,77.38c3.07,8.47,1.56,11.83,10.45,11.83,6.86,0,9.91-3.13,13.73-6.86,2.43-2.38,16.86-16.41,33-32.08l68.61,50.7c12.63,7,21.74,3.36,24.89-11.73l45-212.24C402.66,128.35,391,120,378.92,125.44ZM187.46,265.11l148.68-93.8c7.42-4.5,14.23-2.08,8.64,2.88L217.48,289.05l-5,52.87Z"
id="path9" transform="translate(-1.83 -1.82)"></path>
</svg>
</a>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx">
<svg class="instagram" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style>
.cls-3 {
fill: url(#Nepojmenovaný_přechod_27);
}
.cls-4 {
fill: #fff;
}
</style>
<linearGradient gradientUnits="userSpaceOnUse" id="Nepojmenovaný_přechod_27" x1="328.27"
x2="183.73" y1="508.05" y2="3.95">
<stop offset="0" stop-color="#ffdb73"></stop>
<stop offset="0.08" stop-color="#fdad4e"></stop>
<stop offset="0.15" stop-color="#fb832e"></stop>
<stop offset="0.19" stop-color="#fa7321"></stop>
<stop offset="0.23" stop-color="#f6692f"></stop>
<stop offset="0.37" stop-color="#e84a5a"></stop>
<stop offset="0.48" stop-color="#e03675"></stop>
<stop offset="0.55" stop-color="#dd2f7f"></stop>
<stop offset="0.68" stop-color="#b43d97"></stop>
<stop offset="0.97" stop-color="#4d60d4"></stop>
<stop offset="1" stop-color="#4264db"></stop>
</linearGradient>
</defs>
<rect class="cls-3" height="465.06" rx="107.23" ry="107.23" width="465.06" x="23.47"
y="23.47"></rect>
<path class="cls-4"
d="M331,115.22a66.92,66.92,0,0,1,66.65,66.65V330.13A66.92,66.92,0,0,1,331,396.78H181a66.92,66.92,0,0,1-66.65-66.65V181.87A66.92,66.92,0,0,1,181,115.22H331m0-31H181c-53.71,0-97.66,44-97.66,97.66V330.13c0,53.71,44,97.66,97.66,97.66H331c53.71,0,97.66-44,97.66-97.66V181.87c0-53.71-43.95-97.66-97.66-97.66Z">
</path>
<path class="cls-4"
d="M256,198.13A57.87,57.87,0,1,1,198.13,256,57.94,57.94,0,0,1,256,198.13m0-31A88.87,88.87,0,1,0,344.87,256,88.87,88.87,0,0,0,256,167.13Z">
</path>
<circle class="cls-4" cx="346.81" cy="163.23" r="21.07"></circle>
</svg>
</a>
<a href="https://www.tiktok.com/@pod.hub.shop">
<svg id="Apple" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-6 {
fill: #000000;
}
.cls-7 {
fill: #fff;
}
.cls-8 {
fill: #ff004f;
}
</style>
</defs>
<rect height="427.97" rx="71.15" width="427.97" x="42.01" y="42.95" class="cls-6"></rect>
<path class="cls-6"
d="M389.39,221.92V164.85c-74.6-3.15-77-70.94-77-77.31v-.48H254.73V309.33h0a45.66,45.66,0,1,1-32.36-43.71V206.76a104.57,104.57,0,0,0-13.32-.85A103.42,103.42,0,1,0,312.47,309.33c0-1.45,0-2.89-.1-4.32V195.56C338.92,219.85,389.39,221.92,389.39,221.92Z">
</path>
<path class="cls-7"
d="M406.37,236V178.9c-74.61-3.15-77-70.94-77-77.31v-.48H271.71V323.38h0a45.66,45.66,0,1,1-32.36-43.7V220.81A104.57,104.57,0,0,0,226,220,103.42,103.42,0,1,0,329.45,323.38c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M313.82,101.11c2.78,15.14,10.9,38.81,34.57,52.66-18.09-21.07-19-48.26-19-52.18v-.48Z">
</path>
<path class="cls-8"
d="M406.37,236V178.9a106.46,106.46,0,0,1-17-2v44.95s-50.47-2.07-77-26.36V304.91c.06,1.43.1,2.87.1,4.32a103.43,103.43,0,0,1-160.72,86.1,103.41,103.41,0,0,0,177.7-71.95c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M222.37,265.53a45.69,45.69,0,0,0-33.19,84.85,45.69,45.69,0,0,1,50.17-70.7V220.81A104.57,104.57,0,0,0,226,220c-1.23,0-2.44,0-3.66.07Z">
</path>
</svg>
</a>
<a href="https://www.youtube.com/@PODHUBVapeShop">
<svg enable-background="new 0 0 32 32" id="Layer_1" version="1.0" viewBox="0 0 32 32"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path
d="M31.67,9.179c0,0-0.312-2.353-1.271-3.389c-1.217-1.358-2.58-1.366-3.205-1.443C22.717,4,16.002,4,16.002,4 h-0.015c0,0-6.715,0-11.191,0.347C4.171,4.424,2.809,4.432,1.591,5.79C0.633,6.826,0.32,9.179,0.32,9.179S0,11.94,0,14.701v2.588 c0,2.763,0.32,5.523,0.32,5.523s0.312,2.352,1.271,3.386c1.218,1.358,2.815,1.317,3.527,1.459C7.677,27.919,15.995,28,15.995,28 s6.722-0.012,11.199-0.355c0.625-0.08,1.988-0.088,3.205-1.446c0.958-1.034,1.271-3.386,1.271-3.386s0.32-2.761,0.32-5.523v-2.588 C31.99,11.94,31.67,9.179,31.67,9.179z"
fill="#E02F2F"></path>
<polygon fill="#FFFFFF" points="12,10 12,22 22,16 "></polygon>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
</a>
<a href="tel:+380930935126">
<svg viewBox="0 0 24 24" fill="#82ae46" xmlns="http://www.w3.org/2000/svg">
<path d="M20 10.999h2C22 5.869 18.127 2 12.99 2v2C17.052 4 20 6.943 20 10.999z" />
<path
d="M13 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5v2zm3.422 5.443a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391l-4.064-3.696z" />
</svg>
</a>
</div>
<div class="ml-auto ml-auto--desktop">
<a href="/checkout" class="nav-link__cart nav-link cta cta-colored"><span
class="icon-shopping_cart"></span> <span id="cartCounter">0</span></a>
</div>
</div>
</div>
</nav>
<!-- END nav -->
<div class="hero-wrap hero-bread" style="background-image: url('img/smoke.jpg')">
<div class="container">
<div class="row no-gutters slider-text align-items-center justify-content-center">
<div class="col-md-9 ftco-animate text-center fadeInUp ftco-animated">
<!-- <p class="breadcrumbs">
<span class="mr-2"><a href="index.html">Home</a></span>
<span>Розрахуватись</span>
</p> -->
<div class="mb-0 bread"><img src="img/beef.svg" width="180px"></div>
</div>
</div>
</div>
</div>
<section class="ftco-section">
<div class="container">
<div class="row" id="product">
</div>
</div>
</section>
<div id="template-product" style="display: none;">
<div class="col-md-6">
<a href="{thumb}" class="image-popup">
<img src="{thumb}" class="img-fluid" alt="Product photo"></a>
</div>
<div class="col-lg-6">
<h3>{name}</h3>
<div class="rating d-flex">
<p class="text-left mr-4">
<a href="#" class="mr-2">5.0</a>
<a href="#"><span class="ion-ios-star-outline"></span></a>
<a href="#"><span class="ion-ios-star-outline"></span></a>
<a href="#"><span class="ion-ios-star-outline"></span></a>
<a href="#"><span class="ion-ios-star-outline"></span></a>
<a href="#"><span class="ion-ios-star-outline"></span></a>
</p>
<p class="text-left mr-4">
<a href="#" class="mr-2" style="color: #000;">100 <span style="color: #bbb;">Рейтинг</span></a>
</p>
<p class="text-left">
<a href="#" class="mr-2" style="color: #000;">500 <span style="color: #bbb;">Продано</span></a>
</p>
</div>
<div>
<div class="price-product">
<div class="price-product-title">
<div class="price-product-title__icon">
<svg width="44" height="45" viewBox="0 0 44 45" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M28.8324 1.15762C28.0816 1.46889 16.6193 6.74227 16.5461 6.81552C16.482 6.8796 19.0363 8.39021 19.2011 8.39021C19.2469 8.39021 19.5856 8.25288 19.961 8.07893C24.9597 5.78098 25.4907 5.54295 25.683 5.58872C25.802 5.62534 25.9942 5.83591 26.159 6.12888C26.9464 7.52046 28.5394 8.14302 30.1141 7.66695C30.6909 7.48384 30.7916 7.48384 30.9655 7.59371C31.0937 7.6761 31.9726 9.48883 33.4649 12.7481L35.772 17.7743L37.2093 17.8017C38.3446 17.82 38.6375 17.8017 38.6009 17.7102C38.5735 17.6461 36.9438 14.0664 34.9663 9.76348C31.7529 2.74146 31.3409 1.89919 30.993 1.55129C30.3887 0.965359 29.6289 0.828031 28.8324 1.15762Z"
fill="#82AE46" />
<path
d="M10.6959 5.49696C10.467 5.56104 10.1465 5.69837 9.9909 5.81739C9.65216 6.05542 9.51483 6.2843 5.71544 12.9218C4.21399 15.5402 2.97804 17.71 2.95057 17.7466C2.93226 17.7924 3.58228 17.8198 4.40625 17.8198H5.90769L7.59225 14.881C8.73664 12.8852 9.34089 11.9147 9.47821 11.869C9.61554 11.814 9.84442 11.8598 10.2564 12.0338C11.0987 12.3816 12.179 12.3816 12.9297 12.0338C13.5797 11.7316 13.891 11.4753 14.3762 10.8619C14.6417 10.5323 14.7974 10.4041 14.9713 10.4041C15.0995 10.4041 17.8552 11.9239 21.6729 14.112L28.1456 17.8198H30.7548H33.3641L32.357 17.243C30.7548 16.3275 21.0229 10.7429 16.6193 8.21604C14.4037 6.94348 12.4079 5.80823 12.179 5.69837C11.6297 5.42372 11.2085 5.36879 10.6959 5.49696Z"
fill="#82AE46" />
<path
d="M22.8175 7.95956C21.49 8.57296 20.4371 9.0948 20.4829 9.13142C20.6111 9.26875 34.0966 16.9774 34.1333 16.9408C34.1516 16.9225 33.3276 15.0731 32.3022 12.8301C30.636 9.18635 30.4162 8.75606 30.2515 8.80184C29.3451 9.04903 28.0634 8.92085 27.1204 8.47225C26.5161 8.18844 25.6647 7.46518 25.4541 7.07151C25.3809 6.94334 25.2985 6.83347 25.271 6.84263C25.2436 6.84263 24.1358 7.34616 22.8175 7.95956Z"
fill="#82AE46" />
<path
d="M14.6965 12.1437C14.1747 12.6747 13.2317 13.1782 12.4718 13.343C11.8584 13.462 10.8239 13.4071 10.2746 13.2148L9.89006 13.0867L8.5534 15.4121C7.81183 16.6938 7.2259 17.765 7.25337 17.7833C7.27168 17.8016 11.4647 17.8107 16.5733 17.8016L25.8567 17.7741L25.4447 17.5361C25.2158 17.4079 22.8629 16.0621 20.2171 14.5423C17.5713 13.0226 15.3465 11.7592 15.2733 11.7317C15.2001 11.7042 14.962 11.869 14.6965 12.1437Z"
fill="#82AE46" />
<path
d="M1.33016 19.0558C1.1379 19.1199 0.817474 19.3396 0.625215 19.5227C-0.052268 20.1911 -0.0156473 19.3305 0.0118182 31.8822L0.0392837 43.1522L0.313939 43.5917C0.515353 43.9213 0.725922 44.1135 1.08297 44.2966L1.5682 44.553H21.7737C41.1643 44.553 41.9883 44.5438 42.3362 44.379C42.8031 44.1685 43.1876 43.7839 43.3982 43.317C43.563 42.9691 43.5721 42.4198 43.5721 31.8273C43.5721 23.9721 43.5447 20.5939 43.4714 20.3375C43.3341 19.8523 42.6383 19.1565 42.1531 19.0192C41.8876 18.946 36.129 18.9185 21.737 18.9185C4.90068 18.9276 1.63228 18.946 1.33016 19.0558ZM36.0466 22.0129C36.1565 22.1228 36.2388 22.3883 36.2755 22.7454C36.4769 24.6405 37.8502 25.9954 39.8094 26.2335C40.2122 26.2792 40.4319 26.3525 40.5143 26.4715C40.615 26.6088 40.6425 27.5976 40.6425 31.754C40.6425 37.6225 40.7157 37.1556 39.7544 37.2563C37.8685 37.4577 36.4769 38.8493 36.2755 40.7353C36.1748 41.7332 37.8959 41.6233 21.7828 41.6233C5.66972 41.6233 7.39089 41.7332 7.29018 40.7353C7.08877 38.8493 5.69718 37.4577 3.81122 37.2563C2.84992 37.1556 2.92316 37.6317 2.92316 31.7357C2.92316 26.7279 2.92316 26.6088 3.10627 26.4257C3.22528 26.3067 3.40839 26.2426 3.62811 26.2426C4.80913 26.2335 6.10001 25.4736 6.74087 24.4024C7.05215 23.8806 7.31765 23.0109 7.31765 22.5165C7.31765 22.3334 7.39089 22.1411 7.50075 22.0312C7.68386 21.8481 7.80287 21.8481 21.7828 21.8481C35.3508 21.8481 35.891 21.8573 36.0466 22.0129Z"
fill="#82AE46" />
<path
d="M8.37935 23.0567C8.36104 23.1208 8.29695 23.3771 8.24202 23.6335C7.82088 25.4645 6.32859 26.8378 4.26867 27.2864L4.02148 27.3413L4.03979 31.745L4.06726 36.1486L4.74474 36.3226C5.86167 36.6064 6.77719 37.2381 7.45468 38.1811C7.90328 38.8219 8.10469 39.2614 8.26949 39.9755L8.3885 40.479H21.7825H35.1765L35.3047 39.9388C35.7167 38.1078 37.1358 36.7071 38.9943 36.2768L39.4978 36.1578L39.5253 31.7541L39.5436 27.3413L39.2964 27.2864C37.2365 26.8378 35.7442 25.4645 35.323 23.6335C35.2681 23.3771 35.204 23.1208 35.1857 23.0567C35.1582 22.9743 32.4025 22.9468 21.7825 22.9468C11.1625 22.9468 8.40681 22.9743 8.37935 23.0567ZM23.0459 25.4645C23.4671 25.5469 24.0988 25.7758 24.6206 26.0321C25.3439 26.38 25.6185 26.5814 26.2777 27.2406C26.9369 27.8998 27.1383 28.1744 27.4862 28.8977C28.42 30.8111 28.42 32.6879 27.4954 34.5556C26.7446 36.0754 25.3897 37.2655 23.7509 37.8332C23.0917 38.0712 22.8995 38.0895 21.7825 38.0895C20.6839 38.0895 20.4733 38.062 19.8508 37.8515C17.5803 37.055 15.9324 35.1965 15.5021 32.9534C15.2274 31.5252 15.4105 30.271 16.0789 28.8977C16.4267 28.1744 16.6282 27.8998 17.2873 27.2406C17.9465 26.5814 18.2212 26.38 18.9444 26.0321C20.3269 25.3547 21.6086 25.1807 23.0459 25.4645Z"
fill="#82AE46" />
<path
d="M20.6296 26.5629C19.2014 26.8742 17.6633 28.0826 17.0316 29.3918C15.6308 32.3306 17.114 35.8371 20.181 36.7984C21.0782 37.0822 22.4881 37.0822 23.3853 36.7984C26.4523 35.8371 27.9446 32.3215 26.5255 29.3918C26.1135 28.5221 24.9966 27.396 24.1452 26.9932C23.0465 26.4622 21.8014 26.3065 20.6296 26.5629Z"
fill="#82AE46" />
</svg>
</div>
<div class="price-product-title__text">
ЦІНА:
</div>
</div>
<p>{price}грн</p>
</div>
<div class="tastes">{quantities}</div>
<div class="products-btns">
<button id="addToCart" class="products-btn">Додати до кошика</button>
<button id="buyNow" class="products-btn">Купити зараз</button>
</div>
<p class="description-text">
{description}
</p>
<button class="tugle">Показати більше</button>
<div class="product-country">
<div class="product-country-title">
<div class="product-country-title__icon">
<svg viewBox="0 0 496 512" xmlns="http://www.w3.org/2000/svg">
<path
d="M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z" />
</svg>
</div>
<div class="product-country-title__text">
Країна:
</div>
</div>
<p>{country}</p>
</div>
<div class="product-country">
<div class="product-country-title">
<div class="product-country-title__icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_53_2)">
<path
d="M11.6719 0.0547948C10.8438 0.203232 10.1367 0.57042 9.5 1.18761C8.78125 1.88292 8.33984 2.81651 8.25781 3.80479L8.23047 4.14073H7.64453H7.05859L7.08594 3.77745C7.14062 3.05089 7.33203 2.38683 7.67969 1.72276C7.79688 1.4962 7.89062 1.31261 7.89062 1.30479C7.89062 1.30089 7.73828 1.27354 7.55078 1.25011C5.80469 1.00011 4.13672 2.11729 3.66797 3.84776C3.54688 4.29308 3.54297 5.16026 3.66406 5.59776C3.76953 5.98448 4.00781 6.46886 4.25781 6.80479L4.45312 7.07042H6.69922C8.875 7.07042 8.95312 7.06651 9.10156 6.99229C9.25391 6.91417 9.41406 6.6837 9.41406 6.54308C9.41406 6.49229 9.5 6.48448 10 6.48448C10.668 6.48448 10.625 6.45714 10.543 6.84386C10.4805 7.13292 10.3008 7.47667 10.0938 7.69542C9.89062 7.91026 9.48828 8.13683 9.1875 8.19933C9.04297 8.23058 7.62891 8.24229 4.49219 8.24229H0V10.0001V11.7579H4.49219C7.64062 11.7579 9.04297 11.7696 9.1875 11.8009C9.85547 11.9415 10.3984 12.4845 10.543 13.1564C10.625 13.5431 10.668 13.5157 10 13.5157C9.5 13.5157 9.41406 13.5079 9.41406 13.4571C9.41406 13.3165 9.25391 13.086 9.10156 13.0079C8.95312 12.9337 8.875 12.9298 6.69922 12.9298H4.45312L4.25781 13.1954C4.00391 13.5392 3.77344 14.0079 3.66797 14.3946C3.54297 14.8399 3.54297 15.7032 3.66797 16.1524C4.00781 17.4103 4.97266 18.3868 6.19531 18.711C6.60938 18.8204 7.12891 18.8517 7.55078 18.7892C7.73828 18.7657 7.89062 18.7384 7.89062 18.7306C7.89062 18.7267 7.80469 18.5587 7.69922 18.3556C7.35156 17.6915 7.14062 16.9571 7.08594 16.2189L7.05859 15.8595H7.64453H8.23047L8.25781 16.1798C8.37109 17.6134 9.25781 18.922 10.5469 19.5704C11.9961 20.3009 13.9023 20.0743 15.3984 18.9962C16.0508 18.5274 16.7305 17.7071 17.0703 16.9845C17.3438 16.3946 17.5781 15.5314 17.5781 15.0939V14.9689L17.3945 15.0274C16.8047 15.2071 16.5547 15.2423 15.6172 15.2618L14.6875 15.2814V14.6954V14.1095L15.5977 14.0899C16.375 14.0743 16.5508 14.0587 16.8359 13.9845C17.5781 13.7853 18.168 13.461 18.707 12.9454C20.4141 11.3204 20.4297 8.72276 18.7383 7.08214C18.1602 6.51964 17.6484 6.23448 16.8164 6.01183C16.5508 5.94151 16.3633 5.92589 15.5977 5.91026L14.6875 5.89073V5.30479V4.71886L15.6172 4.73839C16.5547 4.75792 16.7969 4.78917 17.3945 4.97276L17.5781 5.03136V4.90636C17.5781 4.67979 17.4531 4.05089 17.3398 3.69151C16.75 1.86729 15.2109 0.484482 13.3398 0.0977635C12.9141 0.00791979 12.0547 -0.0116115 11.6719 0.0547948Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_53_2">
<rect width="20" height="20" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="product-country-title__text">
Міцність нікотину:
</div>
</div>
<p>{weight}</p>
</div>
<div class="product-country">
<div class="product-country-title">
<div class="product-country-title__icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_54_5)">
<path
d="M14.4814 1.695L12.5005 2.34024L15.2365 5.33956C16.7393 6.98308 17.9825 8.3375 17.9926 8.33611C18.0035 8.34182 18.2519 7.78319 18.5474 7.1026C18.8429 6.42202 19.2169 5.56704 19.3753 5.20122L19.6633 4.54332L18.0593 2.79582L16.4553 1.04832L14.4814 1.695Z"
fill="#82AE46" />
<path
d="M11.0636 3.31254L10.7368 3.61249L11.638 5.74532L12.536 7.88098L14.5793 8.94978L16.6225 10.0186L16.9462 9.72147L17.2699 9.42435L14.3286 6.21988L11.3873 3.01542L11.0636 3.31254Z"
fill="#82AE46" />
<path
d="M4.94048 9.3893L-0.0380859 13.959L2.78922 17.0393L5.61652 20.1196L10.5951 15.5499C13.3333 13.0365 15.5661 10.972 15.5548 10.9597C15.5435 10.9473 14.6642 10.4831 13.5967 9.92683L11.6566 8.90771L10.8033 6.8835C10.3366 5.76822 9.94544 4.84837 9.93413 4.83605C9.92659 4.82783 7.6787 6.87598 4.94048 9.3893ZM9.16301 12.324L8.71849 12.732L8.15303 12.116L7.58757 11.4999L8.03209 11.0919L8.4766 10.6839L9.04206 11.3L9.60752 11.916L9.16301 12.324Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_54_5">
<rect width="20" height="20" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="product-country-title__text">
Об'єм/Ємність:
</div>
</div>
<p>{volume}</p>
</div>
<div class="row mt-4">
<div class="col-md-6">
<div class="form-group d-flex">
<div class="select-wrap">
<div class="icon"><span class="ion-ios-arrow-down"></span></div>
<select name="" id="" class="form-control">
<option value="">Small</option>
<option value="">Medium</option>
<option value="">Large</option>
<option value="">Extra Large</option>
</select>
</div>
</div>
</div>
<div class="w-100"></div>
<div class="input-group col-md-6 d-flex mb-3">
<span class="input-group-btn mr-2">
<button type="button" class="quantity-left-minus btn" data-type="minus" data-field="">
<i class="ion-ios-remove"></i>
</button>
</span>
<input type="text" id="quantity" name="quantity" class="form-control input-number" value="1" min="1"
max="100">
<span class="input-group-btn ml-2">
<button type="button" class="quantity-right-plus btn" data-type="plus" data-field="">
<i class="ion-ios-add"></i>
</button>
</span>
</div>
<div class="w-100"></div>
<div class="col-md-12">
<p style="color: #000;">600 kg available</p>
</div>
</div>
</div>
</div>
</div>
<script type="module">
import Dom from "https://webart.work/api/wjst/dom";
document.addEventListener("DOMContentLoaded", function () {
const addToCartButton = document.getElementById('addToCart');
const buyNowButton = document.getElementById('buyNow');
let currentProduct;
const fetchProduct = async () => {
try {
const response = await fetch('https://webart.work/api/commerce/product', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
commerce: '674d9cbe7f4e98c4f2482a20',
product: window.location.hash.substring(1)
})
});
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const product = await response.json();
return product;
} catch (error) {
console.error('Error fetching products:', error);
return [];
}
};
const createOrder = async () => {
const quantityInput = Dom.element('quantity');
const quantity = parseInt(quantityInput.value, 10) || 1;
const existingOrder = JSON.parse(localStorage.getItem('order')) || {};
const product = {
id: window.location.hash.substring(1),
data: currentProduct,
quantity,
};
if (existingOrder.products) {
const productIndex = existingOrder.products.findIndex(p => p.id === product.id);
if (productIndex !== -1) {
existingOrder.products[productIndex].quantity += product.quantity;
} else {
existingOrder.products.push(product);
}
} else {
existingOrder.products = [product];
}
localStorage.setItem('order', JSON.stringify(existingOrder));
console.log('Order created/updated:', existingOrder);
};
const renderProduct = (product) => {
if (!product) {
console.warn('No product found.');
return;
}
const quantitiesHTML = product.quantity.map(qty => `
<div class="card">
<div class="card-content">
<img src="${qty.thumb || ''}" alt="${qty.name || 'Невідомо'}">
<div>
<p class="card-title">${qty.name || 'Невідомо'}</p>
<p>${qty.code || ''}</p>
<p class="card-count">Кількість: ${qty.quantity || 0}</p>
</div>
</div>
</div>
`).join('');
const productHTML = Dom.template('product', {
name: product.product.name || 'No name',
description: product.product.description || '',
price: product.product.price || 0,
country: product.product.country || '',
volume: product.product.volume || '',
weight: product.product.weight || '',
priceType: product.product.priceType || '',
thumb: product.product.thumb || '',
thumbs: product.product.thumbs || '',
id: product.product._id || 'No ID',
quantities: quantitiesHTML
});
Dom.add('product', productHTML);
};
const operateQuantity = (plus) => {
const quantityInput = Dom.element('quantity');
let currentValue = parseInt(quantityInput.value, 10);
if (plus) {
quantityInput.value = currentValue + 1;
} else if (currentValue > 1) {
quantityInput.value = currentValue - 1;
}
};
fetchProduct().then((product) => {
currentProduct = product;
renderProduct(product);
Dom.click("addToCart", () => createOrder());
Dom.click("buyNow", async () => {
await createOrder();
window.location.href = '/cart';
});
Dom.click(".quantity-right-plus", () => operateQuantity(true));
Dom.click(".quantity-left-minus", () => operateQuantity(false));
});
});
</script>
</section>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center mb-3 pb-3">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Products</span>
<h2 class="mb-4">Related Products</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"><img class="img-fluid" src="images/product-1.jpg"
alt="Colorlib Template">
<span class="status">30%</span>
<div class="overlay"></div>
</a>
<div class="text py-3 pb-4 px-3 text-center">
<h3><a href="#">Bell Pepper</a></h3>
<div class="d-flex">
<div class="pricing">
<p class="price"><span class="mr-2 price-dc">$120.00</span><span
class="price-sale">$80.00</span></p>
</div>
</div>
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex">
<a href="#"
class="add-to-cart d-flex justify-content-center align-items-center text-center">
<span><i class="ion-ios-menu"></i></span>
</a>
<a href="#" class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
<a href="#" class="heart d-flex justify-content-center align-items-center ">
<span><i class="ion-ios-heart"></i></span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"><img class="img-fluid" src="images/product-2.jpg"
alt="Colorlib Template">
<div class="overlay"></div>
</a>
<div class="text py-3 pb-4 px-3 text-center">
<h3><a href="#">Strawberry</a></h3>
<div class="d-flex">
<div class="pricing">
<p class="price"><span>$120.00</span></p>
</div>
</div>
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex">
<a href="#"
class="add-to-cart d-flex justify-content-center align-items-center text-center">
<span><i class="ion-ios-menu"></i></span>
</a>
<a href="#" class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
<a href="#" class="heart d-flex justify-content-center align-items-center ">
<span><i class="ion-ios-heart"></i></span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"><img class="img-fluid" src="images/product-3.jpg"
alt="Colorlib Template">
<div class="overlay"></div>
</a>
<div class="text py-3 pb-4 px-3 text-center">
<h3><a href="#">Green Beans</a></h3>
<div class="d-flex">
<div class="pricing">
<p class="price"><span>$120.00</span></p>
</div>
</div>
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex">
<a href="#"
class="add-to-cart d-flex justify-content-center align-items-center text-center">
<span><i class="ion-ios-menu"></i></span>
</a>
<a href="#" class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
<a href="#" class="heart d-flex justify-content-center align-items-center ">
<span><i class="ion-ios-heart"></i></span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"><img class="img-fluid" src="images/product-4.jpg"
alt="Colorlib Template">
<div class="overlay"></div>
</a>
<div class="text py-3 pb-4 px-3 text-center">
<h3><a href="#">Purple Cabbage</a></h3>
<div class="d-flex">
<div class="pricing">
<p class="price"><span>$120.00</span></p>
</div>
</div>
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex">
<a href="#"
class="add-to-cart d-flex justify-content-center align-items-center text-center">
<span><i class="ion-ios-menu"></i></span>
</a>
<a href="#" class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
<a href="#" class="heart d-flex justify-content-center align-items-center ">
<span><i class="ion-ios-heart"></i></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-no-pt ftco-no-pb py-5 bg-light">
<div class="container py-4">
<!--
<div class="row d-flex justify-content-center py-5">
<div class="col-md-6">
<h2 style="font-size: 22px;" class="mb-0">Subcribe to our Newsletter</h2>
<span>Get e-mail updates about our latest shops and special offers</span>
</div>
<div class="col-md-6 d-flex align-items-center">
<form action="#" class="subscribe-form">
<div class="form-group d-flex">
<input type="text" class="form-control" placeholder="Enter email address">
<input type="submit" value="Subscribe" class="submit px-3">
</div>
</form>
</div>
</div>-->
</div>
<footer class="ftco-footer ftco-section">
<div class="container">
<div class="row">
<div class="mouse">
<a href="#" class="mouse-icon">
<div class="mouse-wheel">
<span class="ion-ios-arrow-up"></span>
</div>
</a>
</div>
</div>
<div class="row mb-5">
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">
<strong>POD HUB</strong>
</h2>
<p>
POD HUB | Vape Shop - пропонуємо широкий вибір POD систем, комплектуючих до них, рідини
найвищої якості. <br> Оффлайн магазини з можливістю доставки по місту та доставка по
Україні.
Доступні ціни, швидка доставка, сертифікована продукція.
<br> POD HUB - улюблене місце людей, які цінують якісну консультацію та сертифіковану
продукцію.
</p>
<!-- <ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
</ul> -->
</div>
</div>
<!-- <div class="col-md">
<div class="ftco-footer-widget mb-4 ml-md-5">
<h2 class="ftco-heading-2"><strong>Меню</strong></h2>
<ul class="list-unstyled">
<li><a href="#" class="py-2 d-block">Товари</a></li>
<li><a href="#" class="py-2 d-block">About</a></li>
<li><a href="#" class="py-2 d-block">Journal</a></li>
<li><a href="#" class="py-2 d-block">Contact Us</a></li>
</ul>
</div>
</div> -->
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2"><strong>Є питання?</strong></h2>
<div class="block-23 mb-3">
<ul>
<li>
<a><span class="icon"><svg viewBox="0 0 24 24" height="20px" width="20px"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-9 {
fill: #232323;
}
</style>
</defs>
<path class="cls-9"
d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm3.707,14.707a1,1,0,0,1-1.414,0l-3-3A1,1,0,0,1,11,12V6a1,1,0,0,1,2,0v5.586l2.707,2.707A1,1,0,0,1,15.707,15.707Z" />
</svg></span><span class="text">Графік роботи: <br>з
9:00 до 21:00.</span></a>
</li>
<li>
<a href="tel:+380930935126"><span class="icon"><svg viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg" height="17px" width="17px">
<path
d="M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z" />
</svg></span><span class="text">+38 0930 9351 26</span></a>
</li>
<li>
<a href="https://t.me/Pod_Hub_Vape_Shop"><span class="icon"><svg
viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" height="22px"
width="22px">
<path
d="M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" />
</svg></span><span class="text">Telegram</span></a>
</li>
<li>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx"><span
class="icon"><svg viewBox="0 0 24 24" height="24px" width="24px"
xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M0 0h24v24H0z" fill="none" />
<path
d="M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.25a1.25 1.25 0 0 0-2.5 0 1.25 1.25 0 0 0 2.5 0zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z"
fill-rule="nonzero" />
</g>
</svg>
</span><span class="text">Instagram</span></a>
</li>
<li><a href="https://www.tiktok.com/@pod.hub.shop"><span class="icon"><svg
viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" height="18px"
width="18px">
<path
d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" />
</svg>
</span><span class="text">Tiktok</span></a></li>
<li><a href="https://www.youtube.com/@PODHUBVapeShop"><span class="icon"><svg
height="20px" width="20px"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
version="1.1" viewBox="0 0 512 512" xml:space="preserve"
xmlns="http://www.w3.org/2000/svg" xmlns:serif="http://www.serif.com/"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M501.303,132.765c-5.887,-22.03 -23.235,-39.377 -45.265,-45.265c-39.932,-10.7 -200.038,-10.7 -200.038,-10.7c0,0 -160.107,0 -200.039,10.7c-22.026,5.888 -39.377,23.235 -45.264,45.265c-10.697,39.928 -10.697,123.238 -10.697,123.238c0,0 0,83.308 10.697,123.232c5.887,22.03 23.238,39.382 45.264,45.269c39.932,10.696 200.039,10.696 200.039,10.696c0,0 160.106,0 200.038,-10.696c22.03,-5.887 39.378,-23.239 45.265,-45.269c10.696,-39.924 10.696,-123.232 10.696,-123.232c0,0 0,-83.31 -10.696,-123.238Zm-296.506,200.039l0,-153.603l133.019,76.802l-133.019,76.801Z"
style="fill-rule:nonzero;" />
</svg></span>
</span><span class="text">Youtube</span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">
<strong>Наші адреси</strong>
</h2>
<div class="block-23 mb-3">
<ul>
<li>
<a href="https://maps.app.goo.gl/CA6dnBYgmKr2t8Dz5"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Київська, 1А,
Жмеринка, Вінницька область, 23100</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/CryC4BBHLAHSXbzP7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Героїв Небесної
сотні, 1А, Кам'янець-Подільський, Хмельницька область, 32301</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/cJTyX8UBxPdv6SKd6"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Миру, 4, Кам'янець-Подільський,
Хмельницька область, 32327</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/jN5HUgvP8UK7UG2s8"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">Немирівське шосе, 94Е,
Вінниця, Вінницька область, 21006</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/Gyy69zQRHaWpAwyq7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Святого Миколая, Бар, Вінницька
область, 23000</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/JK6ERQRKBdUrknueA"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Петра Болбочана,
1, Хмельницький, Хмельницька область, 29000</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/BMNJbwduV5UFTrCY7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Житомирська,
23А, Бердичів, Житомирська область, 13300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/N7ZgfFswt7QEPHqFA"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Європейська, 99,
Бердичів, Житомирська область, 13300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/gupNLGLmGxrHHBKA7"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Незалежності, 9/8, Умань, Черкаська
область, 20300</span></a>
</li>
<li>
<a href="https://maps.app.goo.gl/ZRhnyQc9gBvbsAzA8"><span class="icon"><svg
height="26px" width="26px" viewBox="0 0 48 48"
xmlns="http://www.w3.org/2000/svg">
<path
d="M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" />
<path d="M0 0h48v48h-48z" fill="none" />
</svg></span><span class="text">вулиця Європейська, 29, Умань, Черкаська
область, 20300</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
All rights reserved | PodHub
<i class="icon-heart color-danger" aria-hidden="true"></i>
</p>
</div>
</div>
</div>
</footer>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen">
<svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />