-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1417 lines (1302 loc) · 151 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-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script>document.documentElement.className = document.documentElement.className + ' yes-js js_active js'</script>
<title>OoniBunai</title>
<meta name="robots" content="noindex, nofollow">
<link rel="alternate" type="application/rss+xml" title="OoniBunai » Feed" href="https://jeenakarmi.github.io/OoniBunai/feed/">
<link rel="alternate" type="application/rss+xml" title="OoniBunai » Comments Feed" href="https://jeenakarmi.github.io/OoniBunai/comments/feed/">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/jeenakarmi.github.io\/OoniBunai\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.3.1"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇺🇳","🇺🇳")&&!n(e,"🏴","🏴");case"emoji":return!n(e,"🫱🏻🫲🏿","🫱🏻🫲🏿")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<style>img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel="stylesheet" id="wp-block-library-css" href="https://jeenakarmi.github.io/OoniBunai/wp-includes/css/dist/block-library/style.min.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="wc-blocks-style-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-active-filters-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-add-to-cart-form-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/add-to-cart-form.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-packages-style-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/packages-style.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-all-products-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-all-reviews-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-reviews.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-attribute-filter-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-breadcrumbs-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/breadcrumbs.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-catalog-sorting-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/catalog-sorting.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-customer-account-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/customer-account.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-featured-category-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-featured-product-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-mini-cart-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-price-filter-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-add-to-cart-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-button-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-categories-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-image-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-image-gallery-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image-gallery.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-query-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-query.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-results-count-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-results-count.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-reviews-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-reviews.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-sale-badge-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sale-badge.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-search-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-search.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-sku-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sku.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-stock-indicator-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-stock-indicator.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-summary-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-summary.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-title-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-title.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-rating-filter-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/rating-filter.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-reviews-by-category-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-category.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-reviews-by-product-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-product.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-product-details-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-details.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-single-product-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-stock-filter-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-cart-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-checkout-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="wc-blocks-style-mini-cart-contents-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents.css?ver=10.6.6" media="all">
<link rel="stylesheet" id="jquery-selectBox-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/yith-woocommerce-wishlist/assets/css/jquery.selectBox.css?ver=1.2.0" media="all">
<link rel="stylesheet" id="yith-wcwl-font-awesome-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/yith-woocommerce-wishlist/assets/css/font-awesome.css?ver=4.7.0" media="all">
<link rel="stylesheet" id="woocommerce_prettyPhoto_css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/assets/css/prettyPhoto.css?ver=3.1.6" media="all">
<link rel="stylesheet" id="yith-wcwl-main-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/yith-woocommerce-wishlist/assets/css/style.css?ver=3.24.0" media="all">
<style id="yith-wcwl-main-inline-css">.yith-wcwl-share li a{color: rgb(0,0,0);}.yith-wcwl-share li a:hover{color: rgb(31,19,19);}.yith-wcwl-share a.facebook{background: #39599E; background-color: #39599E;}.yith-wcwl-share a.facebook:hover{background: #595A5A; background-color: #595A5A;}.yith-wcwl-share a.twitter{background: #45AFE2; background-color: #45AFE2;}.yith-wcwl-share a.twitter:hover{background: #595A5A; background-color: #595A5A;}.yith-wcwl-share a.pinterest{background: #AB2E31; background-color: #AB2E31;}.yith-wcwl-share a.pinterest:hover{background: #595A5A; background-color: #595A5A;}.yith-wcwl-share a.email{background: #FBB102; background-color: #FBB102;}.yith-wcwl-share a.email:hover{background: #595A5A; background-color: #595A5A;}.yith-wcwl-share a.whatsapp{background: #00A901; background-color: #00A901;}.yith-wcwl-share a.whatsapp:hover{background: #595A5A; background-color: #595A5A;}</style>
<link rel="stylesheet" id="woolentor-block-common-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/woolentor-blocks/src/assets/css/common-style.css?ver=2.6.9" media="all">
<link rel="stylesheet" id="woolentor-block-default-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/woolentor-blocks/src/assets/css/style-index.css?ver=2.6.9" media="all">
<style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<style id="global-styles-inline-css">body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="woocommerce-layout-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=8.0.3" media="all">
<link rel="stylesheet" id="woocommerce-smallscreen-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=8.0.3" media="only screen and (max-width: 768px)">
<link rel="stylesheet" id="woocommerce-general-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=8.0.3" media="all">
<style id="woocommerce-inline-inline-css">.woocommerce form .form-row .required { visibility: visible; }</style>
<link rel="stylesheet" id="hfe-style-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.6.15" media="all">
<link rel="stylesheet" id="elementor-icons-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.21.0" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.15.0" media="all">
<link rel="stylesheet" id="swiper-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5" media="all">
<link rel="stylesheet" id="elementor-post-8-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/elementor/css/post-8.css?ver=1690886601" media="all">
<link rel="stylesheet" id="font-awesome-5-all-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.15.0" media="all">
<link rel="stylesheet" id="font-awesome-4-shim-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.15.0" media="all">
<link rel="stylesheet" id="elementor-global-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/elementor/css/global.css?ver=1690886601" media="all">
<link rel="stylesheet" id="elementor-post-353-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/elementor/css/post-353.css?ver=1693390806" media="all">
<link rel="stylesheet" id="hfe-widgets-style-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/header-footer-elementor/inc/widgets-css/frontend.css?ver=1.6.15" media="all">
<link rel="stylesheet" id="elementor-post-551-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/elementor/css/post-551.css?ver=1694668033" media="all">
<link rel="stylesheet" id="font-awesome-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0" media="all">
<style id="font-awesome-inline-css">[data-font="FontAwesome"]:before {font-family: 'FontAwesome' !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}</style>
<link rel="stylesheet" id="simple-line-icons-wl-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/assets/css/simple-line-icons.css?ver=2.6.9" media="all">
<link rel="stylesheet" id="htflexboxgrid-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/assets/css/htflexboxgrid.css?ver=2.6.9" media="all">
<link rel="stylesheet" id="slick-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/assets/css/slick.css?ver=2.6.9" media="all">
<link rel="stylesheet" id="woolentor-widgets-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/woolentor-addons/assets/css/woolentor-widgets.css?ver=2.6.9" media="all">
<link rel="stylesheet" id="dashicons-css" href="https://jeenakarmi.github.io/OoniBunai/wp-includes/css/dashicons.min.css?ver=6.3.1" media="all">
<style id="dashicons-inline-css">[data-font="Dashicons"]:before {font-family: 'Dashicons' !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}</style>
<link rel="stylesheet" id="bootstrap-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/bootstrap.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="animate-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/animate.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-header-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/header.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="magnific-popup-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/magnific-popup.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="owl-carousel-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/owl.carousel.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="owl-theme-default-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/owl.theme.default.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="font-awesome-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/font-awesome.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-responsive-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/responsive.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-skin-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/skin-2.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="select-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/select2.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-homestyle-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/home7style.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-front-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/front-style.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-custom-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/bizz-ecommerce-custom.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-woocommerce-css-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/css/bizz-ecommerce-woocommerce.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="bizz-ecommerce-style-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/style.css?ver=1.0.2" media="all">
<style id="bizz-ecommerce-style-inline-css">.top-header,body.bizz-ecommerce-dark .top-header{border-bottom-color:#fff}.top-footer,body.bizz-ecommerce-dark .top-footer{border-bottom-color:#fff}.below-footer,body.bizz-ecommerce-dark .below-footer{border-top-color:}.single_add_to_cart_button.button.alt, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit, .woocommerce button.button, .woocommerce input.button,.cat-list a:after,.tagcloud a:hover, .texture-tags-wrapper a:hover,.ribbon-btn,.btn-main-header,.page-contact .leadform-show-form input[type='submit'],.woocommerce .widget_price_filter .bizz-ecommerce-widget-content .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .bizz-ecommerce-widget-content .ui-slider .ui-slider-handle,.entry-content form.post-password-form input[type='submit'],#bizzecommerce-mobile-bar a,#bizzecommerce-mobile-bar,.post-slide-widget .owl-carousel .owl-nav button:hover,.woocommerce div.product form.cart .button,#search-button,#search-button:hover, .woocommerce ul.products li.product .button:hover,.slider-content-caption a.slide-btn,.page-template-frontpage .owl-carousel button.owl-dot, .woocommerce #alm-quick-view-modal .alm-qv-image-slider .flex-control-paging li a,.button.return.wc-backward,.button.return.wc-backward:hover,.woocommerce .texture-product-hover a.add_to_cart_button:hover,
.woocommerce .texture-product-hover .texture-wishlist a.add_to_wishlist:hover,
.texture-wishlist .yith-wcwl-wishlistaddedbrowse:hover,
.texture-wishlist .yith-wcwl-wishlistexistsbrowse:hover,
.texture-quickview a:hover, .texture-compare .compare-button a.compare.button:hover,
.texture-woo-product-list .texture-quickview a:hover,.woocommerce .texture-product-hover a.th-button:hover,#alm-quick-view-modal .alm-qv-image-slider .flex-control-paging li a.flex-active,.menu-close-btn:hover:before, .menu-close-btn:hover:after,.cart-close-btn:hover:after,.cart-close-btn:hover:before,.cart-contents .count-item,[type='submit']:hover,.comment-list .reply a,.nav-links .page-numbers.current, .nav-links .page-numbers:hover,.woocommerce .texture-product-image-tab-section .texture-product-hover a.add_to_cart_button:hover,.woocommerce .texture-product-slide-section .texture-product-hover a.add_to_cart_button:hover,.woocommerce .texture-compare .compare-button a.compare.button:hover,.texture-product .woosw-btn:hover,.texture-product .wooscp-btn:hover,.woosw-copy-btn input{background:#e99c2e}
.open-cart p.buttons a:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,.texture-slide .owl-nav button.owl-prev:hover, .texture-slide .owl-nav button.owl-next:hover, .bizz-ecommerce-slide-post .owl-nav button.owl-prev:hover, .bizz-ecommerce-slide-post .owl-nav button.owl-next:hover,/*.texture-list-grid-switcher a.selected,*/ .texture-list-grid-switcher a:hover,.woocommerce .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover, .woocommerce .woocommerce-message .button:hover,#searchform [type='submit']:hover,article.texture-post-article .texture-readmore.button:hover,.bizz-ecommerce-load-more button:hover,.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current,.texture-top2-slide.owl-carousel .owl-nav button:hover,.product-slide-widget .owl-carousel .owl-nav button:hover, .texture-slide.texture-brand .owl-nav button:hover,.texture-heading-wrap:before,.woocommerce ul.products li.product .texture-product-hover a.add_to_cart_button:hover{background-color:#e99c2e !important;}
.texture-product-hover .th-button.add_to_cart_button, .woocommerce ul.products .texture-product-hover .add_to_cart_button, .woocommerce .texture-product-hover a.th-butto, .woocommerce ul.products li.product .product_type_variable, .woocommerce ul.products li.product a.button.product_type_grouped,.open-cart p.buttons a:hover,.texture-slide .owl-nav button.owl-prev:hover, .texture-slide .owl-nav button.owl-next:hover, .bizz-ecommerce-slide-post .owl-nav button.owl-prev:hover, .bizz-ecommerce-slide-post .owl-nav button.owl-next:hover,body .woocommerce-tabs .tabs li a::before,/*.texture-list-grid-switcher a.selected,*/ .texture-list-grid-switcher a:hover,.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button,#searchform [type='submit']:hover,article.texture-post-article .texture-readmore.button,.woocommerce .texture-product-hover a.th-button,.bizz-ecommerce-load-more button,.texture-top2-slide.owl-carousel .owl-nav button:hover,.product-slide-widget .owl-carousel .owl-nav button:hover, .texture-slide.texture-brand .owl-nav button:hover,.page-contact .leadform-show-form input[type='submit'],.woocommerce .texture-product-hover a.product_type_simple,.post-slide-widget .owl-carousel .owl-nav button:hover{border-color:#e99c2e} .loader {
border-right: 4px solid #e99c2e;
border-bottom: 4px solid #e99c2e;
border-left: 4px solid #e99c2e;}
.woocommerce .texture-product-image-cat-slide .texture-woo-product-list:hover .texture-product,.woocommerce .texture-product-image-cat-slide .texture-woo-product-list:hover .texture-product,[type='submit']{border-color:#e99c2e} .bizz-ecommerce-off-canvas-sidebar-wrapper .menu-close-btn:hover,.main-header .cart-close-btn:hover{color:#e99c2e;}body,.woocommerce-error, .woocommerce-info, .woocommerce-message {color: }.site-title span a,.sprt-tel b,.widget.woocommerce .widget-title, .open-widget-content .widget-title, .widget-title,.texture-title .title,.texture-hglt-box h6,h2.texture-post-title a, h1.texture-post-title ,#reply-title,h4.author-header,.page-head h1,.woocommerce div.product .product_title, section.related.products h2, section.upsells.products h2, .woocommerce #reviews #comments h2,.woocommerce table.shop_table thead th, .cart-subtotal, .order-total,.cross-sells h2, .cart_totals h2,.woocommerce-billing-fields h3,.page-head h1 a{color: }a,#open-above-menu.bizz-ecommerce-menu > li > a{color:} #open-above-menu.bizz-ecommerce-menu > li > a:hover,#open-above-menu.bizz-ecommerce-menu li a:hover{color:}.bizz_ecommerce_overlayloader{background-color:#9c9c9}#move-to-top{background:;color:}.texture-slider-section.slide-layout-3:before{background:#eaeaea}.texture-slider-section.slide-layout-3{background-image:url();
background-repeat:no-repeat;
background-position:center center;
background-size:auto;
background-attachment:scroll;}section.texture-ribbon-section{background-image:url(https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/img/ribbon.jpg);
background-repeat:no-repeat;
background-position:center center;
background-size:cover;}.top-header:before{background:#1f4c94}.top-header{background-image:url();
}.top-header .top-header-bar{color:#fff} .top-header .top-header-bar a{color:#fff}.main-header:before,.sticky-header:before, .search-wrapper:before{background:#2457AA}
.site-description,main-header-col1,.header-support-content,.mhdrthree .site-description p{color:#888} .mhdrthree .site-title span a,.header-support-content a, .texture-icon .count-item,.main-header a,.texture-icon .cart-icon a.cart-contents,.sticky-header .site-title a{color:#fff}.below-header:before{background:#1f4c94}
.menu-category-list .toggle-title,.toggle-icon{color:}
.below-header .cat-icon span{background:}
.header-icon a ,.header-support-icon a.whishlist ,.texture-icon .cart-icon a.cart-contents i,.cat-icon,.sticky-header .header-icon a , .sticky-header .texture-icon .cart-icon a.cart-contents,.responsive-main-header .header-support-icon a,.responsive-main-header .texture-icon .cart-icon a.cart-contents,.responsive-main-header .menu-toggle .menu-btn,.sticky-header-bar .menu-toggle .menu-btn,.header-icon a.account,.header-icon a.prd-search {background:#1f4c94;color:#fff} .cat-icon span,.menu-toggle .icon-bar{background:#fff}.bizz-ecommerce-menu > li > a,.menu-category-list .toggle-title,.toggle-icon{color:} .bizz-ecommerce-menu > li > a:hover,.bizz-ecommerce-menu .current-menu-item a{color:}.bizz-ecommerce-menu li ul.sub-menu li a{color:} .bizz-ecommerce-menu li ul.sub-menu li a:hover{color:} .bizz-ecommerce-menu ul.sub-menu{background:} .woocommerce .entry-summary .woosw-btn{
display:none;
}</style>
<link rel="stylesheet" id="open-quick-view-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/inc/woocommerce/quick-view/css/quick-view.css?ver=6.3.1" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPoppins%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7COswald%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CAboreto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.3.1" media="all">
<link rel="stylesheet" id="elementor-icons-shared-0-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="elementor-icons-fa-solid-css" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3" media="all">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<script src="https://jeenakarmi.github.io/OoniBunai/wp-includes/js/jquery/jquery.min.js?ver=3.7.0" id="jquery-core-js"></script>
<script src="https://jeenakarmi.github.io/OoniBunai/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script src="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.15.0" id="font-awesome-4-shim-js"></script>
<link rel="https://api.w.org/" href="https://jeenakarmi.github.io/OoniBunai/wp-json/">
<link rel="alternate" type="application/json" href="https://jeenakarmi.github.io/OoniBunai/wp-json/wp/v2/pages/353">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://jeenakarmi.github.io/OoniBunai/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.3.1">
<meta name="generator" content="WooCommerce 8.0.3">
<link rel="canonical" href="https://jeenakarmi.github.io/OoniBunai/">
<link rel="shortlink" href="https://jeenakarmi.github.io/OoniBunai/">
<link rel="alternate" type="application/json+oembed" href="https://jeenakarmi.github.io/OoniBunai/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjeenakarmi.github.io%2FOoniBunai%2F">
<link rel="alternate" type="text/xml+oembed" href="https://jeenakarmi.github.io/OoniBunai/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fjeenakarmi.github.io%2FOoniBunai%2F#038;format=xml">
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<meta name="generator" content="Elementor 3.15.0; features: e_dom_optimization, e_optimized_assets_loading, e_optimized_css_loading, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style type="text/css">.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}</style>
<link rel="icon" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/logo.png" sizes="32x32">
<link rel="icon" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/logo.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/logo.png">
<meta name="msapplication-TileImage" content="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/logo.png">
<style id="wp-custom-css">.single_add_to_cart_button {
padding: 6px 50px !important;
}
.single-product div.product form.cart button.minus, .single-product div.product form.cart button.plus {
border: none;
}
.single-product div.product form.cart input[type="number"]{
border-top: none;
border-bottom: none;
border-radius:0;
}
.btn-wrapper .fa {
color: #111;
}
.custom-logo {
max-height: 60px;
background-color: blue;
width: auto;
}
/****** form css ********/
.wpforms-submit {
padding: 0 !important;
background: none !important;
border: 0px !important;
font-family: poppins;
color: #000 !important;
letter-spacing: 1px !important;
font-weight: 600;
}
.wpforms-submit::after {
content: "\f30b";
font-family: "Font Awesome 5 Free";
padding-left: 3px;
}
@media screen and (max-width:1024px){
.single-product div.product form.cart input[type="number"] {
width: 45px;
height:45px;
line-height: 12px;
}
.single_add_to_cart_button {
padding: 6px 15px !important;
}
}
.yith-wcwl-add-to-wishlist i.fa {
font-family: fontAwesome !important;
}</style>
<style id="kirki-inline-styles"></style>
<style id="wpforms-css-vars-root">:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-background-color: #066aab;
--wpforms-button-text-color: #ffffff;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
}</style>
</head>
<body class="home page-template page-template-elementor_header_footer page page-id-353 wp-custom-logo theme-bizz-ecommerce woocommerce-no-js ehf-footer ehf-template-bizz-ecommerce ehf-stylesheet-bizz-ecommerce woolentor_current_theme_bizz-ecommerce has--layout woocommerce bizz-ecommerce-wishlist-activate woolentor-empty-cart elementor-default elementor-template-full-width elementor-kit-8 elementor-page elementor-page-353">
<!-- Preloader start-->
<div class="preloader">
<div class="preloader-inner">
<img src="https://jeenakarmi.github.io/OoniBunai/wp-content/themes/bizz-ecommerce/assets/img/cart-preloader.gif" alt="">
</div>
</div>
<!-- Preloader end -->
<div id="page" class="site-wrapper">
<a class="skip-link screen-reader-text" href="#primary">Skip to content</a>
<header>
<div class="top-bar">
<div class="container">
<div class="row align-item-center">
<div class="col-md-3">
<ul class="social-icon">
<li class="icon-list">
<a href="https://www.facebook.com/"><i class="fa fa-facebook"></i></a>
</li>
<li class="icon-list">
<a href="https://www.instagram.com/"><i class="fa fa-instagram"></i></a>
</li>
<li class="icon-list">
<a href="https://www.pinterest.com/"><i class="fa fa-pinterest"></i></a>
</li>
<li class="icon-list">
<a href="https://www.youtube.com/"><i class="fa fa-youtube"></i></a>
</li>
</ul>
</div>
<div class="col-md-9 d-flex justify-content-end">
<div class="content">
<div class="icon">
<i class="fa fa-phone"></i>
</div>
<div class="details">
<ul>
<li><p class="light">01-6666666</p></li>
</ul>
</div>
</div>
<div class="content">
<div class="icon">
<i class="fa fa-location-arrow"></i>
</div>
<div class="details">
<ul>
<li><p class="light">Kathmandu</p></li>
</ul>
</div>
</div>
<div class="content">
<div class="icon">
<i class="fa fa-clock-o"></i>
</div>
<div class="details">
<ul>
<li><p class="light">Sun - Fri: 8.00 A.M - 6.00 P.M</p></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-two affix ">
<div class="container">
<div class="row">
<div class="col-12">
<div class="menu-two">
<div class="logo-wrap">
<div class="logo">
<a href="https://jeenakarmi.github.io/OoniBunai/" class="custom-logo-link" rel="home" aria-current="page"><img width="348" height="108" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Final_logo.png" class="custom-logo" alt="OoniBunai" decoding="async" srcset="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Final_logo.png 1x, 2x"></a>
<h1 class="site-title"><a href="https://jeenakarmi.github.io/OoniBunai/" title="OoniBunai" rel="home">OoniBunai</a></h1>
</div>
</div>
<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="Primary Menu">
<!-- Mobile Menu -->
<div class="main-mobile-nav">
<div class="main-mobile-menu">
<div class="menu-collapse-wrap">
<div class="hamburger-menu">
<button type="button" class="menu-collapsed" aria-label="Menu Collapsed">
<div class="top-bun"></div>
<div class="meat"></div>
<div class="bottom-bun"></div>
</button>
</div>
</div>
<div class="main-mobile-wrapper">
<div id="mobile-menu-build" class="main-mobile-build">
<button type="button" class="header-close-menu close-style" aria-label="Header Close Menu"></button>
</div>
</div>
</div>
</div>
<!-- End of Mobile Menu -->
<div class="main-navbar">
<div class="menu-main-menu-container"><ul id="primary-menu" class="menu">
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-366" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home active menu-item-366 nav-item"><a title="Home" href="https://jeenakarmi.github.io/OoniBunai/" class="nav-link">Home</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-375" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-375 nav-item"><a title="Combo Set" href="https://jeenakarmi.github.io/OoniBunai/product-category/combo-set/" class="nav-link">Combo Set</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-532" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children dropdown menu-item-532 nav-item">
<a title="Top Wears" href="https://jeenakarmi.github.io/OoniBunai/product-category/upper-body-accessories/" class="nav-link">Top Wears</a>
<span class="mobile-collapsed d-lg-none"><button type="button" class="fa fa-chevron-right" aria-label="Mobile Collapsed"></button></span><ul class="dropdown-menu" role="menu">
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-371" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-371 nav-item"><a title="Headwear" href="https://jeenakarmi.github.io/OoniBunai/product-category/headwear/" class="dropdown-item">Headwear</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-372" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-372 nav-item"><a title="Headband" href="https://jeenakarmi.github.io/OoniBunai/product-category/headband/" class="dropdown-item">Headband</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-373" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-373 nav-item"><a title="Gloves" href="https://jeenakarmi.github.io/OoniBunai/product-category/gloves/" class="dropdown-item">Gloves</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-374" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-374 nav-item"><a title="Scarf" href="https://jeenakarmi.github.io/OoniBunai/product-category/scarf/" class="dropdown-item">Scarf</a></li>
</ul>
</li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-531" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-has-children dropdown menu-item-531 nav-item">
<a title="Bottom Wears" href="https://jeenakarmi.github.io/OoniBunai/product-category/lower-body-accessories/" class="nav-link">Bottom Wears</a>
<span class="mobile-collapsed d-lg-none"><button type="button" class="fa fa-chevron-right" aria-label="Mobile Collapsed"></button></span><ul class="dropdown-menu" aria-labelledby="mobile-collapsed d-lg-none'><button type='button' class='fa fa-chevron-right' aria-label='Mobile Collapsed'></button></span><ul class=" role="menu">
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-377" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-377 nav-item"><a title="Room Shoe" href="https://jeenakarmi.github.io/OoniBunai/product-category/room-shoe/" class="dropdown-item">Room Shoe</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-376" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-376 nav-item"><a title="Legwarmer" href="https://jeenakarmi.github.io/OoniBunai/product-category/legwarmer/" class="dropdown-item">Legwarmer</a></li>
</ul>
</li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-533" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-533 nav-item"><a title="Shop" href="https://jeenakarmi.github.io/OoniBunai/shop/" class="nav-link">Shop</a></li>
<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-537" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-537 nav-item"><a title="Wishlist" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="nav-link">Wishlist</a></li>
</ul></div> </div>
<div class="btn-wrapper">
<ul>
<li><a href="#" class="menu-tigger" title="search"><i class="fa fa-search"></i></a></li>
<li><a href="https://jeenakarmi.github.io/OoniBunai/my-account/" title="Sign in"><i class="fa fa-user"></i></a></li>
<li>
<a href="https://jeenakarmi.github.io/OoniBunai/cart/" title="View Your Shoping Cart">
<i class="fa fa-cart-plus"></i>
<span class="cart-quantity">0</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- offcanvas-area -->
<div class="offcanvas-menu">
<a class="skip-link-search-back-skip" href="javascript:void(0)"></a>
<button class="menu-close"><i class="fa fa-times"></i></button>
<form role="search" method="get" class="search-form" action="http://localhost/oonibunai/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s">
</label>
<input type="submit" class="search-submit" value="Search">
</form>
</div>
<a class="skip-link-search-skip" href="javascript:void(0)"></a>
<div class="offcanvas-overly"></div>
<!-- offcanvas-end -->
<div id="primary" class="site-main"> <div data-elementor-type="wp-page" data-elementor-id="353" class="elementor elementor-353">
<section class="elementor-section elementor-top-section elementor-element elementor-element-7f592a53 elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="7f592a53" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6729af7" data-id="6729af7" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-27b517f9 elementor-align-right animated-slow elementor-mobile-align-left elementor-invisible elementor-widget elementor-widget-button" data-id="27b517f9" data-element_type="widget" data-settings="{"_animation":"slideInDown","_animation_delay":200}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Welcome <br><br>To</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-25d89b9b elementor-widget__width-initial animated-slow elementor-invisible elementor-widget elementor-widget-heading" data-id="25d89b9b" data-element_type="widget" data-settings="{"_animation":"slideInUp","_animation_delay":300}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.15.0 - 31-07-2023 */
.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>
<h1 class="elementor-heading-title elementor-size-small"><a href="https://jeenakarmi.github.io/OoniBunai/shop/">Oonibunai<br>
</a></h1> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5ab49b59" data-id="5ab49b59" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-2248518 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2248518" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-73425ea" data-id="73425ea" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-114ed50 animated-slow elementor-invisible elementor-widget elementor-widget-heading" data-id="114ed50" data-element_type="widget" data-settings="{"_animation":"slideInDown","_animation_delay":400}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-xxl">Top Rated Categories </h1> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-cc24b9 elementor-section-full_width animated-slow elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="cc24b9" data-element_type="section" data-settings="{"animation":"pulse","animation_delay":500}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1780fe4d" data-id="1780fe4d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-a0cdeb4 elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default" data-id="a0cdeb4" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-627232de" data-id="627232de" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-671beadb elementor-widget elementor-widget-heading" data-id="671beadb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">
<br><br><br><br><br> <br>headband</h2> </div>
</div>
<div class="elementor-element elementor-element-5a7273ca elementor-align-right elementor-widget elementor-widget-button" data-id="5a7273ca" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text"></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-100f5729" data-id="100f5729" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7891d40f elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default" data-id="7891d40f" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-72389b61" data-id="72389b61" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-11181e4c elementor-widget elementor-widget-heading" data-id="11181e4c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-small">
<br><br>Legwarmer</h2> </div>
</div>
<div class="elementor-element elementor-element-7559995e elementor-align-right elementor-widget elementor-widget-button" data-id="7559995e" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text"></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-2a44083a elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default" data-id="2a44083a" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5a1e4611" data-id="5a1e4611" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-45a083f1 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="45a083f1" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-small">Gloves<br>
</h1> </div>
</div>
<div class="elementor-element elementor-element-165ad20d elementor-align-right elementor-widget elementor-widget-button" data-id="165ad20d" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text"></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1b08c44b" data-id="1b08c44b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-594037de elementor-section-height-min-height elementor-section-content-middle elementor-section-boxed elementor-section-height-default" data-id="594037de" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-227373d4" data-id="227373d4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-28297b88 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="28297b88" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-small">
<br>topi</h1> </div>
</div>
<div class="elementor-element elementor-element-3c2e0626 elementor-align-left elementor-widget elementor-widget-button" data-id="3c2e0626" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">(headwear) </span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-7de575ea elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7de575ea" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-49239f76" data-id="49239f76" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5332aa89 elementor-widget-divider--view-line_text animated-slow elementor-widget-divider--element-align-center elementor-invisible elementor-widget elementor-widget-divider" data-id="5332aa89" data-element_type="widget" data-settings="{"_animation":"slideInDown","_animation_delay":300}" data-widget_type="divider.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.15.0 - 31-07-2023 */
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:"";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style> <div class="elementor-divider">
<span class="elementor-divider-separator">
<span class="elementor-divider__text elementor-divider__element">
All Styles in This Winter </span>
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-16cb32b5 animated-slow elementor-invisible elementor-widget elementor-widget-heading" data-id="16cb32b5" data-element_type="widget" data-settings="{"_animation":"slideInUp","_animation_delay":300}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">sale PRODUCTS
</h2> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-f8f6232 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f8f6232" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-79ecf95d" data-id="79ecf95d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-825cb22 elementor-widget elementor-widget-woolentor-universal-product" data-id="825cb22" data-element_type="widget" data-widget_type="woolentor-universal-product.default">
<div class="elementor-widget-container">
<div class="woolentor-product-same-height ht-products woocommerce ht-row" dir="ltr" data-settings="null">
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/boys-abstract-harmony-knit-topi/">
<img fetchpriority="high" width="300" height="288" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot-2023-07-11-145218.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/headwear/">Headwear</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/boys-abstract-harmony-knit-topi/">Boys’ Abstract Harmony Knit Topi</a></h4> <div class="ht-product-price">
<span class="price"><del aria-hidden="true"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 525.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 400.00</bdi></span></ins></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="347" aria-label="Boys' Abstract Harmony Knit Topi">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-347">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="347" data-product-type="simple" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/?add-to-cart=347" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="347" data-product_sku="T-12" aria-label="Add “Boys' Abstract Harmony Knit Topi” to your cart" aria-describedby="" rel="nofollow">Add to cart</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/whimsical-tailed-knit-topi/">
<img width="286" height="300" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot_20230705_155949_Google.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/headwear/">Headwear</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/whimsical-tailed-knit-topi/">Whimsical Tailed Knit Topi</a></h4> <div class="ht-product-price">
<span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 225.00</bdi></span> – <span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 375.00</bdi></span></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="321" aria-label="Whimsical Tailed Knit Topi">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-321">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="321" data-product-type="variable" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/product/whimsical-tailed-knit-topi/" data-quantity="1" class="button product_type_variable add_to_cart_button" data-product_id="321" data-product_sku="T-4" aria-label="Select options for “Whimsical Tailed Knit Topi”" aria-describedby="This product has multiple variants. The options may be chosen on the product page" rel="nofollow">Select options</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/cosy-comfort-knit-gloves/">
<img width="300" height="208" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot_20230705_150722_Google.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/gloves/">Gloves</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/cosy-comfort-knit-gloves/">Cosy Comfort Knit Gloves</a></h4> <div class="ht-product-price">
<span class="price"><del aria-hidden="true"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 400.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 300.00</bdi></span></ins></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="251" aria-label="Cosy Comfort Knit Gloves">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-251">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="251" data-product-type="simple" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/?add-to-cart=251" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="251" data-product_sku="G-5" aria-label="Add “Cosy Comfort Knit Gloves” to your cart" aria-describedby="" rel="nofollow">Add to cart</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/cozyknit-woolen-legwarmer/">
<img loading="lazy" width="225" height="300" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot_20230705_145350_Google.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/legwarmer/">Legwarmer</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/cozyknit-woolen-legwarmer/">CozyKnit Woolen Legwarmer</a></h4> <div class="ht-product-price">
<span class="price"><del aria-hidden="true"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 600.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 450.00</bdi></span></ins></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="182" aria-label="CozyKnit Woolen Legwarmer">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-182">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="182" data-product-type="variable" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/product/cozyknit-woolen-legwarmer/" data-quantity="1" class="button product_type_variable add_to_cart_button" data-product_id="182" data-product_sku="L-3" aria-label="Select options for “CozyKnit Woolen Legwarmer”" aria-describedby="This product has multiple variants. The options may be chosen on the product page" rel="nofollow">Select options</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/winter-frost-knitscarf/">
<img loading="lazy" width="273" height="300" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot_20230705_160951_Google.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/scarf/">Scarf</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/winter-frost-knitscarf/">Winter Frost Knitscarf</a></h4> <div class="ht-product-price">
<span class="price"><del aria-hidden="true"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 1,200.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 1,000.00</bdi></span></ins></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="122" aria-label="Winter Frost Knitscarf">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-122">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="122" data-product-type="simple" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/?add-to-cart=122" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="122" data-product_sku="S-3" aria-label="Add “Winter Frost Knitscarf” to your cart" aria-describedby="" rel="nofollow">Add to cart</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
<!--Product Start-->
<div class="ht-product ht-col-lg-4 ht-col-md-6 ht-col-sm-6 ht-col-xs-12 mb-30 product ht-product-action-bottom-content ht-product-countdown-fill">
<div class="ht-product-inner">
<div class="ht-product-image-wrap">
<span class="ht-product-label ht-product-label-right">Sale!</span> <div class="ht-product-image">
<a href="https://jeenakarmi.github.io/OoniBunai/product/grey-mist-petite-knitscarf/">
<img loading="lazy" width="300" height="238" src="https://jeenakarmi.github.io/OoniBunai/wp-content/uploads/2023/07/Screenshot_20230705_160821_Google.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" decoding="async">
</a>
</div>
</div>
<div class="ht-product-content">
<div class="ht-product-content-inner">
<div class="ht-product-categories"><a href="https://jeenakarmi.github.io/OoniBunai/product-category/scarf/">Scarf</a></div>
<h4 class="ht-product-title"><a href="https://jeenakarmi.github.io/OoniBunai/product/grey-mist-petite-knitscarf/">Silver Grey Knit scarf</a></h4> <div class="ht-product-price">
<span class="price"><del aria-hidden="true"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 1,200.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">₨</span> 1,000.00</bdi></span></ins></span>
</div>
<div class="ht-product-ratting-wrap"></div>
<div class="ht-product-action">
<ul class="woolentor-action-btn-area">
<li>
<a href="#" class="woolentorquickview" data-quick-id="102" aria-label="Silver Grey Knit scarf">
<i class="sli sli-magnifier"></i>
<span class="ht-product-action-tooltip">Quick View</span>
</a>
</li>
<li><div class=" wishlist button-default yith-wcwl-add-to-wishlist add-to-wishlist-102">
<div class="yith-wcwl-add-button show">
<a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" data-product-id="102" data-product-type="simple" class="add_to_wishlist" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Add to wishlist</span></a><i class="fa fa-spinner fa-pulse ajax-loading" style="visibility:hidden"></i>
</div>
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><a class="" href="https://jeenakarmi.github.io/OoniBunai/wishlist/" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Browse wishlist</span></a></div>
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"><a href="https://jeenakarmi.github.io/OoniBunai/wishlist/" class="" aria-label="Wishlist" rel="nofollow"><i class="sli sli-heart"></i><span class="ht-product-action-tooltip">Product added!</span></a></div>
</div></li> <li class="woolentor-cart"><a href="https://jeenakarmi.github.io/OoniBunai/?add-to-cart=102" data-quantity="1" class="button product_type_simple add_to_cart_button ajax_add_to_cart" data-product_id="102" data-product_sku="S-1" aria-label="Add “Silver Grey Knit scarf” to your cart" aria-describedby="" rel="nofollow">Add to cart</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Product End-->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-3619be1 animated-slow elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="3619be1" data-element_type="section" data-settings="{"animation":"pulse","animation_delay":500}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-819ab8c" data-id="819ab8c" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-196e0362 elementor-view-framed elementor-shape-circle elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="196e0362" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<link rel="stylesheet" href="https://jeenakarmi.github.io/OoniBunai/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css"> <div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-shrink">
<i aria-hidden="true" class="fas fa-hands-wash"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Washable Woolens </span>
</h3>
<p class="elementor-icon-box-description">
Easily washable with cold water for your convenience </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-78f9583d" data-id="78f9583d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5a29a424 elementor-view-framed elementor-shape-circle elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="5a29a424" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-shrink">
<i aria-hidden="true" class="fas fa-shipping-fast"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Swift Delivery </span>
</h3>
<p class="elementor-icon-box-description">
Quick and efficient delivery </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-37f7b03" data-id="37f7b03" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-36044b44 elementor-view-framed elementor-shape-circle elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="36044b44" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-shrink">
<i aria-hidden="true" class="fas fa-hand-holding-heart"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Genuine Products </span>
</h3>
<p class="elementor-icon-box-description">
Luxurious, authentic, and durable products along skillful handiwork </p>
</div>
</div>
</div>
</div>