cloudcommerce 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/.eslintrc.cjs +1 -93
  2. package/CHANGELOG.md +30 -0
  3. package/ecomplus-stores/monocard/functions/ssr/package.json +2 -1
  4. package/ecomplus-stores/tia-sonia/functions/ssr/package.json +2 -1
  5. package/package.json +6 -6
  6. package/packages/api/package.json +1 -1
  7. package/packages/apps/correios/package.json +2 -2
  8. package/packages/apps/custom-payment/package.json +1 -1
  9. package/packages/apps/custom-shipping/package.json +1 -1
  10. package/packages/apps/datafrete/package.json +5 -5
  11. package/packages/apps/discounts/package.json +1 -1
  12. package/packages/apps/emails/package.json +2 -2
  13. package/packages/apps/fb-conversions/package.json +4 -4
  14. package/packages/apps/frenet/package.json +4 -4
  15. package/packages/apps/galaxpay/lib/galaxpay-list-payments.d.ts +2 -2
  16. package/packages/apps/galaxpay/lib/galaxpay.d.ts +2 -2
  17. package/packages/apps/galaxpay/package.json +4 -4
  18. package/packages/apps/google-analytics/package.json +4 -4
  19. package/packages/apps/infinitepay/package.json +4 -4
  20. package/packages/apps/jadlog/package.json +2 -2
  21. package/packages/apps/loyalty-points/package.json +1 -1
  22. package/packages/apps/mercadopago/package.json +4 -4
  23. package/packages/apps/pagarme/package.json +4 -4
  24. package/packages/apps/paghiper/CHANGELOG.md +1 -0
  25. package/packages/apps/paghiper/README.md +1 -0
  26. package/packages/apps/paghiper/lib/functions-lib/create-axios.d.ts +2 -0
  27. package/packages/apps/paghiper/lib/functions-lib/create-axios.js +22 -0
  28. package/packages/apps/paghiper/lib/functions-lib/create-axios.js.map +1 -0
  29. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.d.ts +3 -0
  30. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js +154 -0
  31. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js.map +1 -0
  32. package/packages/apps/paghiper/lib/index.d.ts +1 -0
  33. package/packages/apps/paghiper/lib/index.js +2 -0
  34. package/packages/apps/paghiper/lib/index.js.map +1 -0
  35. package/packages/apps/paghiper/lib/paghiper-create-transaction.d.ts +71 -0
  36. package/packages/apps/paghiper/lib/paghiper-create-transaction.js +199 -0
  37. package/packages/apps/paghiper/lib/paghiper-create-transaction.js.map +1 -0
  38. package/packages/apps/paghiper/lib/paghiper-list-payments.d.ts +7 -0
  39. package/packages/apps/paghiper/lib/paghiper-list-payments.js +97 -0
  40. package/packages/apps/paghiper/lib/paghiper-list-payments.js.map +1 -0
  41. package/packages/apps/paghiper/lib/paghiper-webhook.d.ts +5 -0
  42. package/packages/apps/paghiper/lib/paghiper-webhook.js +18 -0
  43. package/packages/apps/paghiper/lib/paghiper-webhook.js.map +1 -0
  44. package/packages/apps/paghiper/lib/paghiper.d.ts +76 -0
  45. package/packages/apps/paghiper/lib/paghiper.js +12 -0
  46. package/packages/apps/paghiper/lib/paghiper.js.map +1 -0
  47. package/packages/apps/paghiper/package.json +36 -0
  48. package/packages/apps/paghiper/src/functions-lib/create-axios.ts +21 -0
  49. package/packages/apps/paghiper/src/functions-lib/handle-webhook.ts +176 -0
  50. package/packages/apps/paghiper/src/index.ts +1 -0
  51. package/packages/apps/paghiper/src/paghiper-create-transaction.ts +242 -0
  52. package/packages/apps/paghiper/src/paghiper-list-payments.ts +127 -0
  53. package/packages/apps/paghiper/src/paghiper-webhook.ts +17 -0
  54. package/packages/apps/paghiper/src/paghiper.ts +12 -0
  55. package/packages/apps/paghiper/tsconfig.json +6 -0
  56. package/packages/apps/paghiper/types/config-app.d.ts +34 -0
  57. package/packages/apps/paghiper/webhook.js +1 -0
  58. package/packages/apps/pix/package.json +4 -4
  59. package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js.map +1 -1
  60. package/packages/apps/tiny-erp/package.json +4 -4
  61. package/packages/apps/tiny-erp/src/integration/post-tiny-erp.ts +1 -1
  62. package/packages/cli/package.json +1 -1
  63. package/packages/config/package.json +1 -1
  64. package/packages/emails/package.json +2 -2
  65. package/packages/events/lib/firebase.js +2 -0
  66. package/packages/events/lib/firebase.js.map +1 -1
  67. package/packages/events/package.json +4 -3
  68. package/packages/events/src/firebase.ts +2 -0
  69. package/packages/firebase/lib/config.d.ts +3 -0
  70. package/packages/firebase/lib/config.js +3 -0
  71. package/packages/firebase/lib/config.js.map +1 -1
  72. package/packages/firebase/package.json +3 -3
  73. package/packages/firebase/src/config.ts +3 -0
  74. package/packages/i18n/package.json +1 -1
  75. package/packages/modules/lib/firebase/call-app-module.js +12 -0
  76. package/packages/modules/lib/firebase/call-app-module.js.map +1 -1
  77. package/packages/modules/package.json +6 -5
  78. package/packages/modules/src/firebase/call-app-module.ts +12 -0
  79. package/packages/passport/package.json +3 -3
  80. package/packages/ssr/package.json +4 -4
  81. package/packages/storefront/.base.eslintrc.cjs +93 -0
  82. package/packages/storefront/.eslintrc.cjs +1 -1
  83. package/packages/storefront/astro.config.mjs +2 -0
  84. package/packages/storefront/client.d.ts +1 -1
  85. package/packages/storefront/config/storefront.cms.mjs +2 -2
  86. package/packages/storefront/dist/client/PitchBar.5ae15bda.js +1 -0
  87. package/packages/storefront/dist/client/Prices.248d1aae.js +1 -0
  88. package/packages/storefront/dist/client/ProductCard.4848304c.js +1 -0
  89. package/packages/storefront/dist/client/assets/{_...slug_.fea84512.css → _...slug_.b701cbb1.css} +1 -1
  90. package/packages/storefront/dist/client/chunks/Prices.vue_vue_type_script_setup_true_lang.2d01aaa2.js +1 -0
  91. package/packages/storefront/dist/client/chunks/ecom-utils.cd6787a7.js +1 -0
  92. package/packages/storefront/dist/client/chunks/modules-info.fcab5bba.js +1 -0
  93. package/packages/storefront/dist/client/chunks/runtime-dom.esm-bundler.923790dc.js +1 -0
  94. package/packages/storefront/dist/client/chunks/session-utm.ceebe967.js +1 -0
  95. package/packages/storefront/dist/client/client.2356f675.js +1 -0
  96. package/packages/storefront/dist/client/{hoisted.4671ed15.js → hoisted.11b849a7.js} +1 -1
  97. package/packages/storefront/dist/client/sw.js +1 -1
  98. package/packages/storefront/dist/server/entry.mjs +432 -92
  99. package/packages/storefront/package.json +3 -3
  100. package/packages/storefront/src/lib/components/Carousel.vue +1 -0
  101. package/packages/storefront/src/lib/components/CarouselControl.vue +1 -1
  102. package/packages/storefront/src/lib/components/PitchBar.vue +27 -10
  103. package/packages/storefront/src/lib/components/StickyHeader.vue +43 -0
  104. package/packages/storefront/src/lib/layouts/Base.astro +6 -0
  105. package/packages/storefront/src/lib/layouts/BaseBody.astro +0 -1
  106. package/packages/storefront/src/lib/layouts/PagesHeader.astro +24 -3
  107. package/packages/storefront/src/lib/scripts/modules-info-preset.ts +60 -0
  108. package/packages/storefront/src/lib/ssr/Picture.astro +13 -0
  109. package/packages/storefront/src/lib/ssr/image.ts +12 -2
  110. package/packages/storefront/src/lib/ssr-context.ts +18 -4
  111. package/packages/storefront/src/lib/state/modules-info.ts +44 -14
  112. package/packages/storefront/src/lib/types/cms-settings.d.ts +2 -1
  113. package/packages/storefront/storefront.config.mjs +20 -8
  114. package/packages/storefront/tailwind.config.cjs +1 -1
  115. package/packages/types/index.ts +17 -0
  116. package/packages/types/package.json +1 -1
  117. package/packages/storefront/dist/client/PitchBar.afe7ff5c.js +0 -1
  118. package/packages/storefront/dist/client/Prices.eaf8a32c.js +0 -1
  119. package/packages/storefront/dist/client/ProductCard.1106b153.js +0 -1
  120. package/packages/storefront/dist/client/chunks/Prices.vue_vue_type_script_setup_true_lang.781b6501.js +0 -1
  121. package/packages/storefront/dist/client/chunks/ecom-utils.63984324.js +0 -1
  122. package/packages/storefront/dist/client/chunks/runtime-core.esm-bundler.fa6cdb60.js +0 -1
  123. package/packages/storefront/dist/client/chunks/session-utm.2de8b604.js +0 -1
  124. package/packages/storefront/dist/client/client.367a6497.js +0 -1
@@ -0,0 +1,93 @@
1
+ module.exports = {
2
+ env: {
3
+ browser: true,
4
+ es2020: true,
5
+ node: true,
6
+ },
7
+ extends: [
8
+ 'plugin:vue/essential',
9
+ 'airbnb-base',
10
+ ],
11
+ parserOptions: {
12
+ ecmaVersion: 2020,
13
+ parser: '@typescript-eslint/parser',
14
+ sourceType: 'module',
15
+ },
16
+ plugins: [
17
+ 'vue',
18
+ '@typescript-eslint',
19
+ ],
20
+ ignorePatterns: [
21
+ '**/dist',
22
+ '**/types/*.d.ts',
23
+ ],
24
+ settings: {
25
+ 'import/resolver': {
26
+ node: {
27
+ extensions: ['.js', '.ts'],
28
+ },
29
+ },
30
+ },
31
+ rules: {
32
+ 'import/no-unresolved': [
33
+ 'error',
34
+ {
35
+ ignore: [
36
+ // https://github.com/import-js/eslint-plugin-import/issues/1810
37
+ 'firebase-functions/logger',
38
+ 'firebase-functions/v2/https',
39
+ 'firebase-functions/v1',
40
+ 'firebase-admin/app',
41
+ 'firebase-admin/firestore',
42
+ 'firebase-admin/auth',
43
+ '@astrojs/[^/]+$',
44
+ 'astro/config',
45
+ 'unocss/astro',
46
+ '@@.*',
47
+ 'content/.*',
48
+ '~/.*',
49
+ ],
50
+ },
51
+ ],
52
+ 'no-unused-vars': 'off',
53
+ '@typescript-eslint/no-unused-vars': ['error'],
54
+ 'prefer-template': 'warn',
55
+ 'no-nested-ternary': 'warn',
56
+ 'no-await-in-loop': 'warn',
57
+ 'no-shadow': 'warn',
58
+ 'no-param-reassign': 'off',
59
+ 'no-underscore-dangle': 'off',
60
+ 'no-continue': 'off',
61
+ 'lines-between-class-members': 'off',
62
+ 'arrow-body-style': 'off',
63
+ 'vue/no-multiple-template-root': 'off',
64
+ 'import/extensions': [
65
+ 'error',
66
+ 'ignorePackages',
67
+ { js: 'ignorePackages', ts: 'never' },
68
+ ],
69
+ 'padded-blocks': [
70
+ 'error',
71
+ 'never',
72
+ ],
73
+ 'padding-line-between-statements': [
74
+ 'error',
75
+ { blankLine: 'always', prev: ['directive', 'import', 'export'], next: '*' },
76
+ { blankLine: 'always', prev: '*', next: ['directive', 'export'] },
77
+ { blankLine: 'never', prev: 'directive', next: 'directive' },
78
+ { blankLine: 'never', prev: 'import', next: 'import' },
79
+ ],
80
+ 'import/order': [
81
+ 'error',
82
+ { groups: ['type', 'builtin', 'external', 'parent', 'sibling', 'index'] },
83
+ ],
84
+ 'no-plusplus': [
85
+ 'error',
86
+ { allowForLoopAfterthoughts: true },
87
+ ],
88
+ 'no-multi-spaces': [
89
+ 'error',
90
+ { ignoreEOLComments: true },
91
+ ],
92
+ },
93
+ };
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- extends: '../../.eslintrc.cjs',
2
+ extends: './.base.eslintrc.cjs',
3
3
  rules: {
4
4
  'no-console': 'off',
5
5
  semi: 'warn',
@@ -187,6 +187,8 @@ const genAstroConfig = ({
187
187
  { find: '@@sf', replacement: joinPath(__dirname, 'src/lib') },
188
188
  { find: '~', replacement: joinPath(process.cwd(), 'src') },
189
189
  { find: 'content', replacement: joinPath(process.cwd(), 'content') },
190
+ { find: '/img', replacement: joinPath(process.cwd(), 'public/img') },
191
+ { find: '/assets', replacement: joinPath(process.cwd(), 'public/assets') },
190
192
  ],
191
193
  },
192
194
  },
@@ -16,7 +16,7 @@ interface Window {
16
16
  ECOM_CURRENCY_SYMBOL: string;
17
17
  ECOM_COUNTRY_CODE: string;
18
18
  storefront?: {
19
- settings: typeof import('./content/settings.json'),
19
+ settings: import('./src/lib/types/cms-settings').default,
20
20
  context?: {
21
21
  resource: string,
22
22
  doc: Record<string, any>,
@@ -1,5 +1,5 @@
1
- import fs from 'fs';
2
- import { resolve as resolvePath } from 'path';
1
+ import fs from 'node:fs';
2
+ import { resolve as resolvePath } from 'node:path';
3
3
 
4
4
  export default () => {
5
5
  const { STOREFRONT_BASE_DIR } = process.env;
@@ -0,0 +1 @@
1
+ import{v as Oe}from"./chunks/runtime-dom.esm-bundler.923790dc.js";import{p as Te}from"./chunks/modules-info.fcab5bba.js";import{u as T,x as we,y as Se,q as p,z as V,d as q,o as _,b as x,r as I,h as U,A as ce,B as xe,C as J,D as Ie,E as Ee,F as $e,G as je,s as de,w as E,v as fe,n as ve,f as pe,j as L,c as X,H as Ce,I as Le,J as Pe,e as Be}from"./chunks/ecom-utils.cd6787a7.js";/* empty css */import"./chunks/session-utm.ceebe967.js";var R=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Ne(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var me=Ne,We=typeof R=="object"&&R&&R.Object===Object&&R,ke=We,Ae=ke,Re=typeof self=="object"&&self&&self.Object===Object&&self,Ve=Ae||Re||Function("return this")(),be=Ve,Fe=be,Ge=function(){return Fe.Date.now()},Me=Ge,He=/\s/;function Qe(e){for(var t=e.length;t--&&He.test(e.charAt(t)););return t}var Ue=Qe,De=Ue,ze=/^\s+/;function qe(e){return e&&e.slice(0,De(e)+1).replace(ze,"")}var Ke=qe,Je=be,Xe=Je.Symbol,ge=Xe,Z=ge,he=Object.prototype,Ze=he.hasOwnProperty,Ye=he.toString,C=Z?Z.toStringTag:void 0;function et(e){var t=Ze.call(e,C),n=e[C];try{e[C]=void 0;var o=!0}catch{}var l=Ye.call(e);return o&&(t?e[C]=n:delete e[C]),l}var tt=et,nt=Object.prototype,rt=nt.toString;function at(e){return rt.call(e)}var ot=at,Y=ge,st=tt,it=ot,lt="[object Null]",ut="[object Undefined]",ee=Y?Y.toStringTag:void 0;function ct(e){return e==null?e===void 0?ut:lt:ee&&ee in Object(e)?st(e):it(e)}var dt=ct;function ft(e){return e!=null&&typeof e=="object"}var vt=ft,pt=dt,mt=vt,bt="[object Symbol]";function gt(e){return typeof e=="symbol"||mt(e)&&pt(e)==bt}var ht=gt,yt=Ke,te=me,_t=ht,ne=0/0,Ot=/^[-+]0x[0-9a-f]+$/i,Tt=/^0b[01]+$/i,wt=/^0o[0-7]+$/i,St=parseInt;function xt(e){if(typeof e=="number")return e;if(_t(e))return ne;if(te(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=te(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=yt(e);var n=Tt.test(e);return n||wt.test(e)?St(e.slice(2),n?2:8):Ot.test(e)?ne:+e}var It=xt,Et=me,Q=Me,re=It,$t="Expected a function",jt=Math.max,Ct=Math.min;function Lt(e,t,n){var o,l,m,s,a,d,v=0,c=!1,f=!1,b=!0;if(typeof e!="function")throw new TypeError($t);t=re(t)||0,Et(n)&&(c=!!n.leading,f="maxWait"in n,m=f?jt(re(n.maxWait)||0,t):m,b="trailing"in n?!!n.trailing:b);function h(i){var g=o,y=l;return o=l=void 0,v=i,s=e.apply(y,g),s}function B(i){return v=i,a=setTimeout(O,t),c?h(i):s}function $(i){var g=i-d,y=i-v,W=t-g;return f?Ct(W,m-y):W}function w(i){var g=i-d,y=i-v;return d===void 0||g>=t||g<0||f&&y>=m}function O(){var i=Q();if(w(i))return N(i);a=setTimeout(O,$(i))}function N(i){return a=void 0,b&&o?h(i):(o=l=void 0,s)}function G(){a!==void 0&&clearTimeout(a),v=0,o=d=l=a=void 0}function M(){return a===void 0?s:N(Q())}function S(){var i=Q(),g=w(i);if(o=arguments,l=this,d=i,g){if(a===void 0)return B(d);if(f)return clearTimeout(a),a=setTimeout(O,t),h(d)}return a===void 0&&(a=setTimeout(O,t)),s}return S.cancel=G,S.flush=M,S}var ae=Lt,oe;const P=typeof window<"u",Pt=e=>typeof e=="string",Bt=()=>{};P&&((oe=window?.navigator)==null?void 0:oe.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function Nt(e){return typeof e=="function"?e():T(e)}function Wt(e){return e}function kt(e){return we()?(Se(e),!0):!1}function At(e){var t;const n=Nt(e);return(t=n?.$el)!=null?t:n}const Rt=P?window:void 0;P&&window.document;P&&window.navigator;P&&window.location;function se(...e){let t,n,o,l;if(Pt(e[0])||Array.isArray(e[0])?([n,o,l]=e,t=Rt):[t,n,o,l]=e,!t)return Bt;Array.isArray(n)||(n=[n]),Array.isArray(o)||(o=[o]);const m=[],s=()=>{m.forEach(c=>c()),m.length=0},a=(c,f,b)=>(c.addEventListener(f,b,l),()=>c.removeEventListener(f,b,l)),d=V(()=>At(t),c=>{s(),c&&m.push(...n.flatMap(f=>o.map(b=>a(c,f,b))))},{immediate:!0,flush:"post"}),v=()=>{d(),s()};return kt(v),v}const D=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},z="__vueuse_ssr_handlers__";D[z]=D[z]||{};D[z];function Vt(e){const t=p(!1);return se(e,"mouseenter",()=>t.value=!0),se(e,"mouseleave",()=>t.value=!1),t}var ie;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(ie||(ie={}));var Ft=Object.defineProperty,le=Object.getOwnPropertySymbols,Gt=Object.prototype.hasOwnProperty,Mt=Object.prototype.propertyIsEnumerable,ue=(e,t,n)=>t in e?Ft(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ht=(e,t)=>{for(var n in t||(t={}))Gt.call(t,n)&&ue(e,n,t[n]);if(le)for(var n of le(t))Mt.call(t,n)&&ue(e,n,t[n]);return e};const Qt={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};Ht({linear:Wt},Qt);const ye=Symbol("carousel"),Ut=["aria-label","data-carousel-control"],F=q({__name:"CarouselControl",props:{direction:{default:1}},setup(e){const{changeSlide:t}=xe(ye);return(n,o)=>(_(),x("button",{type:"button","aria-label":e.direction>0?"Pr\xF3ximo":"Anterior",onClick:o[0]||(o[0]=l=>T(t)(e.direction)),"data-carousel-control":e.direction>0?"next":"previous"},[I(n.$slots,"default",{},()=>[U("i",{class:ce(["m-0",e.direction>0?"i-chevron-right":"i-chevron-left"])},null,2)])],8,Ut))}}),Dt=q({__name:"Carousel",props:{as:{default:"ul"},modelValue:{default:1},autoplay:null},emits:["update:modelValue","bound-left","bound-right"],setup(e,{emit:t}){const n=e,o=(r,u,A)=>Math.abs(r-u)<=A,l=100,m=410,s=p(n.modelValue-1);V(J(n,"modelValue"),r=>{s.value=r-1}),V(s,(r,u)=>{r!==u&&t("update:modelValue",r+1)});const a=p(null),d=p(!0),v=p(!1),c=p([]),f=p(0),b=p(0),h=p(0),B=p(0),$=p(null),w=p(null),O=()=>{const r=o(h.value,0,5),u=o(f.value-b.value,h.value,5);r&&t("bound-left",!0),d.value=r,u&&t("bound-right",!0),v.value=u},N=()=>{f.value=a.value.scrollWidth,b.value=a.value.offsetWidth},G=()=>{const r=[...a.value.children];c.value=r.map(u=>({offsetLeft:u.offsetLeft,width:u.offsetWidth}))},M=r=>{const u=r>0?s.value:s.value+r,A=c.value[u].width||0;return A?A*r:0},S=()=>{const r=c.value.findIndex(u=>o(u.offsetLeft,h.value,5));r!==-1&&r!==-2&&(s.value=r||0)},i=()=>{h.value=a.value.scrollLeft||0},g=()=>{const r=f.value-b.value;B.value=c.value.findIndex(({offsetLeft:u})=>u>=r)},y=()=>{!a.value||(N(),G(),i(),S(),O(),g())},W=()=>{!a.value||(i(),S(),O())};let k=null;const H=()=>{n.autoplay&&(clearTimeout(k),k=setTimeout(()=>{j(1)},n.autoplay))},j=r=>{if(r<0){if(d.value){g(),s.value=B.value-1,j(1);return}}else if(v.value){s.value=1,j(-1);return}const u=M(r);u&&(a.value.scrollBy({left:u,behavior:"smooth"}),H())},K=p(null),_e=Vt(K);return V(_e,r=>{r?clearTimeout(k):H()}),Ie(()=>{y(),w.value=ae(W,l),$.value=ae(y,m),a.value.addEventListener("scroll",w.value),window.addEventListener("resize",$.value),Ee(()=>{[...a.value.children].forEach(r=>{r.setAttribute("tabindex","0")})}),H()}),$e(()=>{a.value.removeEventListener("scroll",w.value),window.removeEventListener("resize",$.value),clearTimeout(k)}),je(ye,{autoplay:J(n,"autoplay"),changeSlide:j,isBoundLeft:d,isBoundRight:v}),(r,u)=>(_(),x("div",{ref_key:"carousel",ref:K,"data-carousel":""},[(_(),de(fe(e.as),{ref_key:"wrapper",ref:a,"data-carousel-wrapper":""},{default:E(()=>[I(r.$slots,"default")]),_:3},512)),I(r.$slots,"controls",ve(pe({changeSlide:j,isBoundLeft:d.value,isBoundRight:v.value})),()=>[L(F,{direction:-1},{default:E(()=>[I(r.$slots,"previous")]),_:3}),L(F,null,{default:E(()=>[I(r.$slots,"next")]),_:3})])],512))}}),zt={"data-pitch-bar":"",class:"bg-base-100"},qt={class:"container md:w-2/3 mx-auto px-3 py-1"},Kt=["innerHTML"],Jt={class:"text-xl leading-none text-base-400"},nn=q({__name:"PitchBar",props:{slides:null},setup(e){const t=e,n=X(()=>t.slides.map(({html:l})=>Te(l).value)),o=X(()=>n.value.filter(l=>l).length);return(l,m)=>(_(),x("div",zt,[U("div",qt,[L(Dt,{autoplay:T(o)>1?7e3:null},{controls:E(()=>[Ce(U("div",Jt,[L(F,{direction:-1,class:"pr-2 bg-base-100 hover:text-base-700"}),L(F,{class:"pl-2 bg-base-100 hover:text-base-700"})],512),[[Oe,T(o)>1]])]),default:E(()=>[(_(!0),x(Le,null,Pe(e.slides,(s,a)=>(_(),x("li",{key:a},[(_(),de(fe(s.href?"ALink":"span"),{href:s.href,target:s.target,class:ce(s.href?"hover:underline":null)},{default:E(()=>[I(l.$slots,"slide",ve(pe({slide:s,i:a,parsedContents:T(n)})),()=>[T(n)[a]?(_(),x("span",{key:0,innerHTML:T(n)[a],class:"prose text-sm text-base-800"},null,8,Kt)):Be("",!0)])]),_:2},1032,["href","target","class"]))]))),128))]),_:3},8,["autoplay"])])]))}});export{nn as default};
@@ -0,0 +1 @@
1
+ import"./chunks/Prices.vue_vue_type_script_setup_true_lang.2d01aaa2.js";import{_}from"./chunks/Prices.vue_vue_type_script_setup_true_lang.2d01aaa2.js";/* empty css */import"./chunks/modules-info.fcab5bba.js";import"./chunks/session-utm.ceebe967.js";import"./chunks/ecom-utils.cd6787a7.js";export{_ as default};
@@ -0,0 +1 @@
1
+ import{_ as e}from"./chunks/Prices.vue_vue_type_script_setup_true_lang.2d01aaa2.js";/* empty css */import{d as u,q as c,s as n,w as t,v as d,o as m,j as a,i as o,t as l}from"./chunks/ecom-utils.cd6787a7.js";import"./chunks/modules-info.fcab5bba.js";import"./chunks/session-utm.ceebe967.js";const B=u({__name:"ProductCard",props:{as:{default:"div"}},setup(p){const s=c(12),r=c(!1);return setTimeout(()=>{s.value=8,r.value=!0},5e3),(_,f)=>(m(),n(d(p.as),null,{default:t(()=>[a(e,null,{default:t(({salePrice:i})=>[o(" ProductCard "+l(i),1)]),_:1}),a(e,{product:{price:s.value}},null,8,["product"]),a(e,{price:12,"base-price":17}),a(e,{price:12,"base-price":16,"is-literal":!0}),a(e,{price:12,"is-big":r.value},null,8,["is-big"]),a(e,{price:14,"base-price":18,"is-big":r.value,"is-literal":!0},null,8,["is-big"]),a(e,{price:12,"base-price":16},{"compare-value":t(({comparePrice:i})=>[o(" x"+l(i),1)]),_:1})]),_:1}))}});export{B as default};
@@ -1 +1 @@
1
- *,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:var(--font-family);font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--font-mono);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#94a3b8}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--content-max-width: 80rem;--font-size: 14.5px;--font-sans: var(--custom-font-sans, ui-sans-serif), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono: var(--custom-font-mono, ui-monospace), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--font-family: var(--font-sans);--transition: .15s ease-in-out;--transition-slow: .25s ease-in-out;--transition-slower: .45s ease-in-out;--c-on-dark: rgb(255, 255, 255);--c-on-light: rgb(0, 0, 0);--c-background: #fff;--c-on-background: #1e293b;--un-prose-body: #334155;--un-prose-headings: #0f172a;--un-prose-links: var(--c-primary);--un-prose-captions: #64748b;--un-prose-borders: #e2e8f0;--un-prose-hr: #cbd5e1;--un-prose-bg-soft: #f1f5f9;color-scheme:light;accent-color:var(--c-secondary)}@media (prefers-reduced-motion: reduce){:root{--transition: 0s;--transition-slow: 0s;--transition-slower: .15s linear}}html{font-size:var(--font-size)}@media (min-width: 640px){html{font-size:calc(var(--font-size) * 1.0345)}}@media (min-width: 768px){html{font-size:calc(var(--font-size) * 1.0689)}}@media (min-width: 1024px){html{font-size:calc(var(--font-size) * 1.1034)}}@media (min-width: 1280px){html{font-size:calc(var(--font-size) * 1.1379)}}@media (min-width: 1536px){html{font-size:calc(var(--font-size) * 1.1724)}}body>header,body>main,body>footer{margin-left:auto;margin-right:auto}body>main{max-width:var(--content-max-width)}:focus-visible{outline-color:var(--c-outline, rgba(var(--rgb-secondary), .1))}::selection{background-color:var(--c-selection-background, rgba(var(--rgb-secondary), .15))}::marker{color:var(--c-primary)}:is(::-webkit-calendar-picker-indicator,::-webkit-clear-button,::-webkit-inner-spin-button,::-webkit-outer-spin-button){color:var(--c-secondary)}body{background:var(--c-background);color:var(--c-on-background)}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--c-background);border-color:#64748b;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--un-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 0px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(1px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);border-color:var(--c-primary)}input::-moz-placeholder,textarea::-moz-placeholder{color:#64748b;opacity:1}input::placeholder,textarea::placeholder{color:#64748b;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:var(--c-primary);background-color:var(--c-background);border-color:#64748b;border-width:1px;--un-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 2px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(2px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}[data-tooltip]{position:relative;cursor:help;--background-color: var(--c-tooltip-background, rgba(44, 44, 44, .85));--color: var(--c-tooltip-foreground, var(--c-on-dark));--border-color: transparent transparent var(--background-color) transparent}[data-tooltip]:before{content:attr(data-tooltip);visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:0;top:102%;margin-top:5px;font-size:clamp(.75rem,90%,1rem);width:max-content;background-color:var(--background-color);color:var(--color);text-align:center;border-radius:.125rem;padding:.25rem .5rem;line-height:1.375}[data-tooltip]:after{content:"";visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:50%;top:102%;margin-left:-5px;margin-top:-4px;border-width:5px;border-style:solid;border-color:var(--border-color)}[data-tooltip]:hover:before,[data-tooltip]:hover:after{opacity:1;visibility:visible}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }:root{--rgb-primary-50:246,250,249;--rgb-primary-100:226,239,235;--rgb-primary-200:204,227,220;--rgb-primary-300:180,214,204;--rgb-primary-400:148,196,181;--rgb-primary-500:106,172,152;--rgb-primary-600:59,146,120;--rgb-primary-700:19,123,91;--rgb-primary-800:16,101,75;--rgb-primary-900:11,72,54;--rgb-primary-subtle:103,197,161;--c-primary-subtle:rgb(103,197,161);--c-on-primary-subtle:var(--c-on-light);--rgb-primary:19,124,92;--c-primary:rgb(19,124,92);--c-on-primary:var(--c-on-dark);--rgb-primary-bold:0,57,31;--c-primary-bold:rgb(0,57,31);--c-on-primary-bold:var(--c-on-dark);--rgb-secondary-50:246,250,249;--rgb-secondary-100:226,239,235;--rgb-secondary-200:204,227,220;--rgb-secondary-300:180,214,204;--rgb-secondary-400:148,196,181;--rgb-secondary-500:106,172,152;--rgb-secondary-600:59,146,120;--rgb-secondary-700:19,123,91;--rgb-secondary-800:16,101,75;--rgb-secondary-900:11,72,54;--rgb-secondary-subtle:103,197,161;--c-secondary-subtle:rgb(103,197,161);--c-on-secondary-subtle:var(--c-on-light);--rgb-secondary:19,124,92;--c-secondary:rgb(19,124,92);--c-on-secondary:var(--c-on-dark);--rgb-secondary-bold:0,57,31;--c-secondary-bold:rgb(0,57,31);--c-on-secondary-bold:var(--c-on-dark);--rgb-on-primary:--c-on-dark;--rgb-on-primary-subtle:--c-on-light;--rgb-on-primary-bold:--c-on-dark;--rgb-on-secondary:--c-on-dark;--rgb-on-secondary-subtle:--c-on-light;--rgb-on-secondary-bold:--c-on-dark}.prose :where(h1,h2,h3,h4,h5,h6):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-headings);font-weight:600;line-height:1.25}.prose :where(a):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links);text-decoration:underline;font-weight:500}.prose :where(a code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links)}.prose :where(p,ul,ol,pre):not(:where(.not-prose,.not-prose *)){margin:1em 0;line-height:1.75}.prose :where(blockquote):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding-left:1em;font-style:italic;border-left:.25em solid var(--un-prose-borders)}.prose :where(h1):not(:where(.not-prose,.not-prose *)){margin:1rem 0;font-size:2.25em}.prose :where(h2):not(:where(.not-prose,.not-prose *)){margin:1.75em 0 .5em;font-size:1.75em}.prose :where(h3):not(:where(.not-prose,.not-prose *)){margin:1.5em 0 .5em;font-size:1.375em}.prose :where(h4):not(:where(.not-prose,.not-prose *)){margin:1em 0;font-size:1.125em}.prose :where(img,video):not(:where(.not-prose,.not-prose *)){max-width:100%}.prose :where(figure,picture):not(:where(.not-prose,.not-prose *)){margin:1em 0}.prose :where(figcaption):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-captions);font-size:.875em}.prose :where(code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);font-size:.875em;font-weight:600;font-family:var(--un-prose-font-mono)}.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):before,.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):after{content:"`"}.prose :where(pre):not(:where(.not-prose,.not-prose *)){padding:1.25rem 1.5rem;overflow-x:auto;border-radius:.375rem}.prose :where(pre,code):not(:where(.not-prose,.not-prose *)){white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none;background:transparent}.prose :where(pre code):not(:where(.not-prose,.not-prose *)){font-weight:inherit}.prose :where(ol,ul):not(:where(.not-prose,.not-prose *)){padding-left:1.25em}.prose :where(ol):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ol[type="A"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="A" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="I"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="I" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ul):not(:where(.not-prose,.not-prose *)){list-style-type:disc}.prose :where(ol > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(ul > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(summary):not(:where(.not-prose,.not-prose *))::marker{color:var(--un-prose-lists)}.prose :where(hr):not(:where(.not-prose,.not-prose *)){margin:2em 0;border:1px solid var(--un-prose-hr)}.prose :where(table):not(:where(.not-prose,.not-prose *)){display:block;margin:1em 0;border-collapse:collapse;overflow-x:auto}.prose :where(tr):not(:where(.not-prose,.not-prose *)):nth-child(2n){background:var(--un-prose-bg-soft)}.prose :where(td,th):not(:where(.not-prose,.not-prose *)){border:1px solid var(--un-prose-borders);padding:.625em 1em}.prose :where(abbr):not(:where(.not-prose,.not-prose *)){cursor:help}.prose :where(kbd):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);border:1px solid;padding:.25rem .5rem;font-size:.875em;border-radius:.25rem}.prose :where(details):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding:1.25rem 1.5rem;background:var(--un-prose-bg-soft)}.prose :where(summary):not(:where(.not-prose,.not-prose *)){cursor:pointer;font-weight:600}.prose{color:var(--un-prose-body);max-width:65ch}.i-bars-3-bottom-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-cashback{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.25 4.5l7.5 7.5l-7.5 7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-facebook{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48c27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-instagram{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9S287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7s74.7 33.5 74.7 74.7s-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8c-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8s26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9c-26.2-26.2-58-34.4-93.9-36.2c-37-2.1-147.9-2.1-184.9 0c-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9c1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0c35.9-1.7 67.7-9.9 93.9-36.2c26.2-26.2 34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6c-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6c-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6c29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6c11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-phone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-pinterest{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 496 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M496 256c0 137-111 248-248 248c-25.6 0-50.2-3.9-73.4-11.1c10.1-16.5 25.2-43.5 30.8-65c3-11.6 15.4-59 15.4-59c8.1 15.4 31.7 28.5 56.8 28.5c74.8 0 128.7-68.8 128.7-154.3c0-81.9-66.9-143.2-152.9-143.2c-107 0-163.9 71.8-163.9 150.1c0 36.4 19.4 81.7 50.3 96.1c4.7 2.2 7.2 1.2 8.3-3.3c.8-3.4 5-20.3 6.9-28.1c.6-2.5.3-4.7-1.7-7.1c-10.1-12.5-18.3-35.3-18.3-56.6c0-54.7 41.4-107.6 112-107.6c60.9 0 103.6 41.5 103.6 100.9c0 67.1-33.9 113.6-78 113.6c-24.3 0-42.6-20.1-36.7-44.8c7-29.5 20.5-61.3 20.5-82.6c0-19-10.2-34.9-31.4-34.9c-24.9 0-44.9 25.7-44.9 60.2c0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256C0 119 111 8 248 8s248 111 248 248z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-shopping-cart{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-tiktok{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-twitter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645c0 138.72-105.583 298.558-298.558 298.558c-59.452 0-114.68-17.219-161.137-47.106c8.447.974 16.568 1.299 25.34 1.299c49.055 0 94.213-16.568 130.274-44.832c-46.132-.975-84.792-31.188-98.112-72.772c6.498.974 12.995 1.624 19.818 1.624c9.421 0 18.843-1.3 27.614-3.573c-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319c-28.264-18.843-46.781-51.005-46.781-87.391c0-19.492 5.197-37.36 14.294-52.954c51.655 63.675 129.3 105.258 216.365 109.807c-1.624-7.797-2.599-15.918-2.599-24.04c0-57.828 46.782-104.934 104.934-104.934c30.213 0 57.502 12.67 76.67 33.137c23.715-4.548 46.456-13.32 66.599-25.34c-7.798 24.366-24.366 44.833-46.132 57.827c21.117-2.273 41.584-8.122 60.426-16.243c-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-user-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-whatsapp{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222c0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4l-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2c0-101.7 82.8-184.5 184.6-184.5c49.3 0 95.6 19.2 130.4 54.1c34.8 34.9 56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18c-5.1-1.9-8.8-2.8-12.5 2.8c-3.7 5.6-14.3 18-17.6 21.8c-3.2 3.7-6.5 4.2-12 1.4c-32.6-16.3-54-29.1-75.5-66c-5.7-9.8 5.7-9.1 16.3-30.3c1.8-3.7.9-6.9-.5-9.7c-1.4-2.8-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5c-3.2-.2-6.9-.2-10.6-.2c-3.7 0-9.7 1.4-14.8 6.9c-5.1 5.6-19.4 19-19.4 46.3c0 27.3 19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8c35.2 15.2 49 16.5 66.6 13.9c10.7-1.6 32.8-13.4 37.4-26.4c4.6-13 4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-youtube{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 576 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597c-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821c11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205l-142.739 81.201z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.container{max-width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.top-0{top:0rem}.z-10{z-index:10}.z-50{z-index:50}.grid{display:grid}.auto-cols-max{grid-auto-columns:max-content}.grid-flow-col{grid-auto-flow:column}.m-0{margin:0rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-0{margin-bottom:0rem}.me{margin-inline-end:1rem}.ml-2{margin-left:.5rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.block{display:block}.inline-block{display:inline-block}.hidden{display:none}.h1{height:.25rem}.h2{height:.5rem}.h3{height:.75rem}.h4{height:1rem}.h5{height:1.25rem}.h6{height:1.5rem}.w-full{width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.grow{flex-grow:1}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.resize{resize:both}.items-center{align-items:center}.justify-between{justify-content:space-between}.overflow-x-auto{overflow-x:auto}.whitespace-nowrap{white-space:nowrap}.bg-base-100{--un-bg-opacity:1;background-color:rgba(241,245,249,var(--un-bg-opacity))}.bg-opacity-90{--un-bg-opacity:.9}.p-1{padding:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.font-brand{font-family:var(--font-brand, var(--font-sans))}.text-2xl{font-size:1.5rem;line-height:2rem}.text-5xl{font-size:3rem;line-height:1}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-none{line-height:1}.lowercase{text-transform:lowercase}.hover\:text-base-700:hover{--un-text-opacity:1;color:rgba(51,65,85,var(--un-text-opacity))}.hover\:text-primary:hover,.text-primary{--un-text-opacity:1;color:rgba(var(--rgb-primary),var(--un-text-opacity))}.text-base-400{--un-text-opacity:1;color:rgba(148,163,184,var(--un-text-opacity))}.text-base-500{--un-text-opacity:1;color:rgba(100,116,139,var(--un-text-opacity))}.text-base-600{--un-text-opacity:1;color:rgba(71,85,105,var(--un-text-opacity))}.text-base-800{--un-text-opacity:1;color:rgba(30,41,59,var(--un-text-opacity))}.text-gray-700{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.no-underline{text-decoration:none}.backdrop-blur-md{--un-backdrop-blur:blur(12px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia)}.primary{background-color:var(--c-primary, rgb(19,124,92));color:var(--c-on-primary, var(--c-on-dark))}.secondary{background-color:var(--c-secondary, rgb(19,124,92));color:var(--c-on-secondary, var(--c-on-dark))}@media (min-width: 640px){.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}}@media (min-width: 768px){.md\:block{display:block}.md\:hidden{display:none}.md\:w-2\/3{width:66.6666666667%}}@media (min-width: 1024px){.lg\:mr-3{margin-right:.75rem}.lg\:px-2{padding-left:.5rem;padding-right:.5rem}}@media (min-width: 1280px){.xl\:px-4{padding-left:1rem;padding-right:1rem}}html{scroll-behavior:smooth}body{overflow-x:hidden}a,button,button>*{transition:color var(--transition),background-color var(--transition),opacity var(--transition)}[data-carousel]{position:relative}[data-carousel-wrapper]{display:flex;overflow-x:scroll;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;list-style:none;margin:0;padding:0}[data-carousel-wrapper]::-webkit-scrollbar{display:none}[data-carousel-wrapper]>*{flex:0 0 100%;height:100%;scroll-snap-align:start;display:flex;justify-content:center;align-items:center;outline:none}[data-carousel-control]{position:absolute;top:0;bottom:0}[data-carousel-control=previous]{left:0}[data-carousel-control=next]{right:0}
1
+ *,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:var(--font-family);font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--font-mono);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#94a3b8}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--content-max-width: 80rem;--font-size: 14.5px;--font-sans: var(--custom-font-sans, ui-sans-serif), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono: var(--custom-font-mono, ui-monospace), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--font-family: var(--font-sans);--transition: .15s ease-in-out;--transition-slow: .25s ease-in-out;--transition-slower: .45s ease-in-out;--c-on-dark: rgb(255, 255, 255);--c-on-light: rgb(0, 0, 0);--c-background: #fff;--c-on-background: #1e293b;--un-prose-body: #334155;--un-prose-headings: #0f172a;--un-prose-links: var(--c-primary);--un-prose-captions: #64748b;--un-prose-borders: #e2e8f0;--un-prose-hr: #cbd5e1;--un-prose-bg-soft: #f1f5f9;color-scheme:light;accent-color:var(--c-secondary)}@media (prefers-reduced-motion: reduce){:root{--transition: 0s;--transition-slow: 0s;--transition-slower: .15s linear}}html{font-size:var(--font-size)}@media (min-width: 640px){html{font-size:calc(var(--font-size) * 1.0345)}}@media (min-width: 768px){html{font-size:calc(var(--font-size) * 1.0689)}}@media (min-width: 1024px){html{font-size:calc(var(--font-size) * 1.1034)}}@media (min-width: 1280px){html{font-size:calc(var(--font-size) * 1.1379)}}@media (min-width: 1536px){html{font-size:calc(var(--font-size) * 1.1724)}}body>header,body>main,body>footer{margin-left:auto;margin-right:auto}body>main{max-width:var(--content-max-width)}:focus-visible{outline-color:var(--c-outline, rgba(var(--rgb-secondary), .1))}::selection{background-color:var(--c-selection-background, rgba(var(--rgb-secondary), .15))}::marker{color:var(--c-primary)}:is(::-webkit-calendar-picker-indicator,::-webkit-clear-button,::-webkit-inner-spin-button,::-webkit-outer-spin-button){color:var(--c-secondary)}body{background:var(--c-background);color:var(--c-on-background)}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--c-background);border-color:#64748b;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--un-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 0px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(1px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);border-color:var(--c-primary)}input::-moz-placeholder,textarea::-moz-placeholder{color:#64748b;opacity:1}input::placeholder,textarea::placeholder{color:#64748b;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:var(--c-primary);background-color:var(--c-background);border-color:#64748b;border-width:1px;--un-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 2px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(2px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}[data-tooltip]{position:relative;cursor:help;--background-color: var(--c-tooltip-background, rgba(44, 44, 44, .85));--color: var(--c-tooltip-foreground, var(--c-on-dark));--border-color: transparent transparent var(--background-color) transparent}[data-tooltip]:before{content:attr(data-tooltip);visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:0;top:102%;margin-top:5px;font-size:clamp(.75rem,90%,1rem);width:max-content;background-color:var(--background-color);color:var(--color);text-align:center;border-radius:.125rem;padding:.25rem .5rem;line-height:1.375}[data-tooltip]:after{content:"";visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:50%;top:102%;margin-left:-5px;margin-top:-4px;border-width:5px;border-style:solid;border-color:var(--border-color)}[data-tooltip]:hover:before,[data-tooltip]:hover:after{opacity:1;visibility:visible}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }:root{--rgb-primary-50:246,250,249;--rgb-primary-100:226,239,235;--rgb-primary-200:204,227,220;--rgb-primary-300:180,214,204;--rgb-primary-400:148,196,181;--rgb-primary-500:106,172,152;--rgb-primary-600:59,146,120;--rgb-primary-700:19,123,91;--rgb-primary-800:16,101,75;--rgb-primary-900:11,72,54;--rgb-primary-subtle:103,197,161;--c-primary-subtle:rgb(103,197,161);--c-on-primary-subtle:var(--c-on-light);--rgb-primary:19,124,92;--c-primary:rgb(19,124,92);--c-on-primary:var(--c-on-dark);--rgb-primary-bold:0,68,41;--c-primary-bold:rgb(0,68,41);--c-on-primary-bold:var(--c-on-dark);--rgb-secondary-50:246,250,249;--rgb-secondary-100:226,239,235;--rgb-secondary-200:204,227,220;--rgb-secondary-300:180,214,204;--rgb-secondary-400:148,196,181;--rgb-secondary-500:106,172,152;--rgb-secondary-600:59,146,120;--rgb-secondary-700:19,123,91;--rgb-secondary-800:16,101,75;--rgb-secondary-900:11,72,54;--rgb-secondary-subtle:103,197,161;--c-secondary-subtle:rgb(103,197,161);--c-on-secondary-subtle:var(--c-on-light);--rgb-secondary:19,124,92;--c-secondary:rgb(19,124,92);--c-on-secondary:var(--c-on-dark);--rgb-secondary-bold:0,68,41;--c-secondary-bold:rgb(0,68,41);--c-on-secondary-bold:var(--c-on-dark);--rgb-on-primary:--c-on-dark;--rgb-on-primary-subtle:--c-on-light;--rgb-on-primary-bold:--c-on-dark;--rgb-on-secondary:--c-on-dark;--rgb-on-secondary-subtle:--c-on-light;--rgb-on-secondary-bold:--c-on-dark}.prose :where(h1,h2,h3,h4,h5,h6):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-headings);font-weight:600;line-height:1.25}.prose :where(a):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links);text-decoration:underline;font-weight:500}.prose :where(a code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links)}.prose :where(p,ul,ol,pre):not(:where(.not-prose,.not-prose *)){margin:1em 0;line-height:1.75}.prose :where(blockquote):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding-left:1em;font-style:italic;border-left:.25em solid var(--un-prose-borders)}.prose :where(h1):not(:where(.not-prose,.not-prose *)){margin:1rem 0;font-size:2.25em}.prose :where(h2):not(:where(.not-prose,.not-prose *)){margin:1.75em 0 .5em;font-size:1.75em}.prose :where(h3):not(:where(.not-prose,.not-prose *)){margin:1.5em 0 .5em;font-size:1.375em}.prose :where(h4):not(:where(.not-prose,.not-prose *)){margin:1em 0;font-size:1.125em}.prose :where(img,video):not(:where(.not-prose,.not-prose *)){max-width:100%}.prose :where(figure,picture):not(:where(.not-prose,.not-prose *)){margin:1em 0}.prose :where(figcaption):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-captions);font-size:.875em}.prose :where(code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);font-size:.875em;font-weight:600;font-family:var(--un-prose-font-mono)}.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):before,.prose :where(:not(pre) > code):not(:where(.not-prose,.not-prose *)):after{content:"`"}.prose :where(pre):not(:where(.not-prose,.not-prose *)){padding:1.25rem 1.5rem;overflow-x:auto;border-radius:.375rem}.prose :where(pre,code):not(:where(.not-prose,.not-prose *)){white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none;background:transparent}.prose :where(pre code):not(:where(.not-prose,.not-prose *)){font-weight:inherit}.prose :where(ol,ul):not(:where(.not-prose,.not-prose *)){padding-left:1.25em}.prose :where(ol):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ol[type="A"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="A" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type="a" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type="I"]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i"]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="I" s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type="i" s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ul):not(:where(.not-prose,.not-prose *)){list-style-type:disc}.prose :where(ol > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(ul > li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(summary):not(:where(.not-prose,.not-prose *))::marker{color:var(--un-prose-lists)}.prose :where(hr):not(:where(.not-prose,.not-prose *)){margin:2em 0;border:1px solid var(--un-prose-hr)}.prose :where(table):not(:where(.not-prose,.not-prose *)){display:block;margin:1em 0;border-collapse:collapse;overflow-x:auto}.prose :where(tr):not(:where(.not-prose,.not-prose *)):nth-child(2n){background:var(--un-prose-bg-soft)}.prose :where(td,th):not(:where(.not-prose,.not-prose *)){border:1px solid var(--un-prose-borders);padding:.625em 1em}.prose :where(abbr):not(:where(.not-prose,.not-prose *)){cursor:help}.prose :where(kbd):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);border:1px solid;padding:.25rem .5rem;font-size:.875em;border-radius:.25rem}.prose :where(details):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding:1.25rem 1.5rem;background:var(--un-prose-bg-soft)}.prose :where(summary):not(:where(.not-prose,.not-prose *)){cursor:pointer;font-weight:600}.prose{color:var(--un-prose-body);max-width:65ch}.i-bars-3-bottom-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-cashback{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.25 4.5l7.5 7.5l-7.5 7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-facebook{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48c27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-instagram{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9S287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7s74.7 33.5 74.7 74.7s-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8c-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8s26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9c-26.2-26.2-58-34.4-93.9-36.2c-37-2.1-147.9-2.1-184.9 0c-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9c1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0c35.9-1.7 67.7-9.9 93.9-36.2c26.2-26.2 34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6c-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6c-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6c29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6c11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-phone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-pinterest{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 496 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M496 256c0 137-111 248-248 248c-25.6 0-50.2-3.9-73.4-11.1c10.1-16.5 25.2-43.5 30.8-65c3-11.6 15.4-59 15.4-59c8.1 15.4 31.7 28.5 56.8 28.5c74.8 0 128.7-68.8 128.7-154.3c0-81.9-66.9-143.2-152.9-143.2c-107 0-163.9 71.8-163.9 150.1c0 36.4 19.4 81.7 50.3 96.1c4.7 2.2 7.2 1.2 8.3-3.3c.8-3.4 5-20.3 6.9-28.1c.6-2.5.3-4.7-1.7-7.1c-10.1-12.5-18.3-35.3-18.3-56.6c0-54.7 41.4-107.6 112-107.6c60.9 0 103.6 41.5 103.6 100.9c0 67.1-33.9 113.6-78 113.6c-24.3 0-42.6-20.1-36.7-44.8c7-29.5 20.5-61.3 20.5-82.6c0-19-10.2-34.9-31.4-34.9c-24.9 0-44.9 25.7-44.9 60.2c0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256C0 119 111 8 248 8s248 111 248 248z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-shopping-cart{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-tiktok{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-twitter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645c0 138.72-105.583 298.558-298.558 298.558c-59.452 0-114.68-17.219-161.137-47.106c8.447.974 16.568 1.299 25.34 1.299c49.055 0 94.213-16.568 130.274-44.832c-46.132-.975-84.792-31.188-98.112-72.772c6.498.974 12.995 1.624 19.818 1.624c9.421 0 18.843-1.3 27.614-3.573c-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319c-28.264-18.843-46.781-51.005-46.781-87.391c0-19.492 5.197-37.36 14.294-52.954c51.655 63.675 129.3 105.258 216.365 109.807c-1.624-7.797-2.599-15.918-2.599-24.04c0-57.828 46.782-104.934 104.934-104.934c30.213 0 57.502 12.67 76.67 33.137c23.715-4.548 46.456-13.32 66.599-25.34c-7.798 24.366-24.366 44.833-46.132 57.827c21.117-2.273 41.584-8.122 60.426-16.243c-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-user-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-whatsapp{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222c0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4l-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2c0-101.7 82.8-184.5 184.6-184.5c49.3 0 95.6 19.2 130.4 54.1c34.8 34.9 56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18c-5.1-1.9-8.8-2.8-12.5 2.8c-3.7 5.6-14.3 18-17.6 21.8c-3.2 3.7-6.5 4.2-12 1.4c-32.6-16.3-54-29.1-75.5-66c-5.7-9.8 5.7-9.1 16.3-30.3c1.8-3.7.9-6.9-.5-9.7c-1.4-2.8-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5c-3.2-.2-6.9-.2-10.6-.2c-3.7 0-9.7 1.4-14.8 6.9c-5.1 5.6-19.4 19-19.4 46.3c0 27.3 19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8c35.2 15.2 49 16.5 66.6 13.9c10.7-1.6 32.8-13.4 37.4-26.4c4.6-13 4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-youtube{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 576 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597c-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821c11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205l-142.739 81.201z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.container{max-width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.top-0{top:0rem}.z-10{z-index:10}.z-50{z-index:50}.grid{display:grid}.auto-cols-max{grid-auto-columns:max-content}.grid-flow-col{grid-auto-flow:column}.m-0{margin:0rem}.mx-auto{margin-left:auto;margin-right:auto}.me{margin-inline-end:1rem}.ml-2{margin-left:.5rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.block{display:block}.inline-block{display:inline-block}.hidden{display:none}.h1{height:.25rem}.h2{height:.5rem}.h3{height:.75rem}.h4{height:1rem}.h5{height:1.25rem}.h6{height:1.5rem}.w-full{width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.grow{flex-grow:1}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.resize{resize:both}.items-center{align-items:center}.justify-between{justify-content:space-between}.overflow-x-auto{overflow-x:auto}.whitespace-nowrap{white-space:nowrap}.bg-base-100{--un-bg-opacity:1;background-color:rgba(241,245,249,var(--un-bg-opacity))}.bg-opacity-90{--un-bg-opacity:.9}.p-1{padding:.25rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.font-brand{font-family:var(--font-brand, var(--font-sans))}.text-2xl{font-size:1.5rem;line-height:2rem}.text-5xl{font-size:3rem;line-height:1}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-none{line-height:1}.lowercase{text-transform:lowercase}.hover\:text-base-700:hover{--un-text-opacity:1;color:rgba(51,65,85,var(--un-text-opacity))}.hover\:text-primary:hover,.text-primary{--un-text-opacity:1;color:rgba(var(--rgb-primary),var(--un-text-opacity))}.text-base-400{--un-text-opacity:1;color:rgba(148,163,184,var(--un-text-opacity))}.text-base-500{--un-text-opacity:1;color:rgba(100,116,139,var(--un-text-opacity))}.text-base-600{--un-text-opacity:1;color:rgba(71,85,105,var(--un-text-opacity))}.text-base-800{--un-text-opacity:1;color:rgba(30,41,59,var(--un-text-opacity))}.text-gray-700{--un-text-opacity:1;color:rgba(55,65,81,var(--un-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.no-underline{text-decoration:none}.backdrop-blur-md{--un-backdrop-blur:blur(12px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia)}.primary{background-color:var(--c-primary, rgb(19,124,92));color:var(--c-on-primary, var(--c-on-dark))}.secondary{background-color:var(--c-secondary, rgb(19,124,92));color:var(--c-on-secondary, var(--c-on-dark))}@media (min-width: 640px){.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}}@media (min-width: 768px){.md\:block{display:block}.md\:hidden{display:none}.md\:w-2\/3{width:66.6666666667%}}@media (min-width: 1024px){.lg\:mr-3{margin-right:.75rem}.lg\:px-2{padding-left:.5rem;padding-right:.5rem}}@media (min-width: 1280px){.xl\:px-4{padding-left:1rem;padding-right:1rem}}html{scroll-behavior:smooth}body{overflow-x:hidden}a,button,button>*{transition:color var(--transition),background-color var(--transition),opacity var(--transition)}[data-carousel]{position:relative}[data-carousel-wrapper]{display:flex;overflow-x:scroll;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;list-style:none;margin:0;padding:0}[data-carousel-wrapper]::-webkit-scrollbar{display:none}[data-carousel-wrapper]>*{flex:0 0 100%;height:100%;scroll-snap-align:start;display:flex;justify-content:center;align-items:center;outline:none}[data-carousel-control]{position:absolute;top:0;bottom:0;z-index:1}[data-carousel-control=previous]{left:0}[data-carousel-control=next]{right:0}
@@ -0,0 +1 @@
1
+ import{m as I}from"./modules-info.fcab5bba.js";import{c as r,g as j,a as z,d as F,b as u,u as e,r as o,n as p,m as C,e as i,f as D,o as m,h as b,t as c,i as M,j as w,w as A,k as R}from"./ecom-utils.cd6787a7.js";const S=(n,l)=>{const{type:P,value:k}=l;let a;return k?(P==="percentage"?a=n*((100-k)/100):a=n-k,a>0?a:0):n},q=n=>{const l=r(()=>n.product||{price:n.price||0,base_price:n.basePrice}),P=r(()=>{const{variations:t}=l.value;if(t){const d=j(l.value);for(let g=0;g<t.length;g++)if(j({...l.value,...t[g]})>d)return!0}return!1}),k=r(()=>I.apply_discount.available_extra_discount),a=r(()=>{const t=j(l.value),d=k.value;return d&&(!d.min_amount||t>d.min_amount)?S(t,d):t}),V=r(()=>{if(z(l.value))return l.value.base_price;const t=j(l.value);return t>a.value?t:0}),h=r(()=>n.installmentsOption||I.list_payments.installments_option||{max_number:1}),v=r(()=>{if(h.value.max_number<=1)return 1;const t=h.value.min_installment||5,d=Math.round(a.value/t);return Math.min(d,h.value.max_number)}),$=r(()=>h.value.monthly_interest||0),L=r(()=>{if(v.value>=2){if(!$.value)return a.value/v.value;const t=$.value/100;return a.value*t/(1-(1+t)**-v.value)}return 0}),y=r(()=>{const t=n.discountOption||I.list_payments.discount_option;return t&&(!t.min_amount||t.min_amount<=a.value)&&(!n.isAmountTotal||t.apply_at==="total")?t:{}}),O=r(()=>{const{label:t}=y.value;return t?t.includes(" ")?t:`via ${t}`:""}),f=r(()=>S(a.value,y.value)),_=r(()=>{if(n.loyaltyPointsProgram)return n.loyaltyPointsProgram;const t=I.list_payments.loyalty_points_programs;if(t){const d=Object.keys(t);for(let g=0;g<d.length;g++){const B=t[d[g]];if(B&&B.earn_percentage>0)return B}}return{ratio:0}}),s=r(()=>_.value.min_subtotal_to_earn||0),E=r(()=>_.value.name||""),N=r(()=>_.value.earn_percentage||0),W=r(()=>N.value*_.value.ratio),T=r(()=>W.value>=1?a.value*(W.value/100):0);return{hasVariedPrices:P,salePrice:a,comparePrice:V,installmentsObject:h,installmentsNumber:v,monthlyInterest:$,installmentValue:L,discountObject:y,discountLabel:O,priceWithDiscount:f,pointsProgramObject:_,pointsMinPrice:s,pointsProgramName:E,earnPointsPercentage:N,cashbackPercentage:W,cashbackValue:T}},G=n=>r(()=>{let l="";return Object.keys(n).forEach(P=>{n[P]===!0&&(l+=` ${P.replace(/^(is|has)/,"")}`)}),l.slice(1)}),H=["data-prices"],J={"data-prices-compare":"",class:"text-base-500 mr-1"},K={key:0},Q={key:0},U={"data-prices-sale":"",class:"inline-block text-base-800"},X={key:0},Y={key:0,"data-prices-cashback":"",class:"relative z-10"},Z=["data-tooltip"],x=b("i",{class:"i-cashback mr-1"},null,-1),ee={class:"font-medium"},te=b("small",null," cashback",-1),se={key:0,"data-prices-installment":""},ae={key:0},ne={key:0},oe={key:0},re={key:0,"data-prices-discount":""},le={key:0},ie={key:0},me=F({__name:"Prices",props:{product:null,price:null,basePrice:null,isAmountTotal:{type:Boolean},installmentsOption:null,discountOption:null,isBig:{type:Boolean},isLiteral:{type:Boolean},hasCashback:{type:Boolean,default:!0},hasPriceOptions:{type:Boolean,default:!0}},setup(n){const l=n,P=q(l),{hasVariedPrices:k,salePrice:a,comparePrice:V,cashbackPercentage:h,cashbackValue:v,installmentsNumber:$,monthlyInterest:L,installmentValue:y,priceWithDiscount:O,discountLabel:f}=P,_=G(l);return(s,E)=>{const N=R("Fade");return m(),u("div",{"data-prices":e(_),class:"text-base-600"},[e(V)?o(s.$slots,"compare",p(C({key:0},{salePrice:e(a),comparePrice:e(V)})),()=>[b("span",J,[o(s.$slots,"compare-pre",{},()=>[n.isLiteral?(m(),u("small",K,c("De "))):i("",!0)]),o(s.$slots,"compare-value",p(D({salePrice:e(a),comparePrice:e(V)})),()=>[b("s",null,c(s.$money(e(V))),1)]),o(s.$slots,"compare-post",{},()=>[n.isLiteral?(m(),u("small",Q,c(" Por"))):i("",!0)])])]):i("",!0),o(s.$slots,"sale",p(D({salePrice:e(a)})),()=>[b("strong",U,[o(s.$slots,"sale-pre",{},()=>[e(k)?(m(),u("small",X,c("A partir de "))):i("",!0)]),o(s.$slots,"sale-value",p(D({salePrice:e(a)})),()=>[M(c(s.$money(e(a))),1)]),o(s.$slots,"sale-post")])]),e(v)?o(s.$slots,"cashback",p(C({key:1},{salePrice:e(a),cashbackValue:e(v),cashbackPercentage:e(h)})),()=>[w(N,{slide:"down"},{default:A(()=>[n.hasCashback?(m(),u("div",Y,[b("span",{"data-tooltip":"Receba $1 de volta".replace("$1",s.$percentage(e(h)))},[o(s.$slots,"cashback-pre",{},()=>[x]),o(s.$slots,"cashback-value",p(D({salePrice:e(a),cashbackValue:e(v),cashbackPercentage:e(h)})),()=>[b("span",ee,c(s.$money(e(v))),1)]),o(s.$slots,"cashback-post",{},()=>[te])],8,Z)])):i("",!0)]),_:3})]):i("",!0),e(y)?o(s.$slots,"installment",p(C({key:2},{salePrice:e(a),installmentValue:e(y),installmentsNumber:e($),monthlyInterest:e(L)})),()=>[w(N,{slide:"down"},{default:A(()=>[n.hasPriceOptions?(m(),u("div",se,[o(s.$slots,"installment-pre",{},()=>[n.isLiteral?(m(),u("small",ae,c("At\xE9 "))):i("",!0)]),o(s.$slots,"installment-value",p(D({salePrice:e(a),installmentValue:e(y),installmentsNumber:e($),monthlyInterest:e(L)})),()=>[M(c(e($))+"x ",1),n.isLiteral?(m(),u("small",ne,c(" De "))):i("",!0),b("span",null,c(s.$money(e(y))),1)]),o(s.$slots,"installment-post",{},()=>[!e(L)&&n.isLiteral?(m(),u("small",oe,c("Sem juros"))):i("",!0)])])):i("",!0)]),_:3})]):i("",!0),e(O)<e(a)?o(s.$slots,"discount",p(C({key:3},{salePrice:e(a),priceWithDiscount:e(O),discountLabel:e(f)})),()=>[w(N,{slide:"down"},{default:A(()=>[n.hasPriceOptions?(m(),u("div",re,[o(s.$slots,"discount-pre",{},()=>[e(f)?i("",!0):(m(),u("small",le,c("A partir de ")))]),o(s.$slots,"discount-value",p(D({salePrice:e(a),priceWithDiscount:e(O),discountLabel:e(f)})),()=>[b("span",null,c(s.$money(e(O))),1)]),o(s.$slots,"discount-post",{},()=>[e(f)?(m(),u("small",ie,c(` ${e(f)}`),1)):i("",!0)])])):i("",!0)]),_:3})]):i("",!0)],8,H)}}});export{me as _};
@@ -0,0 +1 @@
1
+ function Tn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r<s.length;r++)n[s[r]]=!0;return t?r=>!!n[r.toLowerCase()]:r=>!!n[r]}function Wt(e){if(N(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=ie(s)?Tr(s):Wt(s);if(r)for(const l in r)t[l]=r[l]}return t}else{if(ie(e))return e;if(X(e))return e}}const Cr=/;(?![^(]*\))/g,wr=/:([^]+)/,Er=/\/\*.*?\*\//gs;function Tr(e){const t={};return e.replace(Er,"").split(Cr).forEach(n=>{if(n){const s=n.split(wr);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Vt(e){let t="";if(ie(e))t=e;else if(N(e))for(let n=0;n<e.length;n++){const s=Vt(e[n]);s&&(t+=s+" ")}else if(X(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function Li(e){if(!e)return null;let{class:t,style:n}=e;return t&&!ie(t)&&(e.class=Vt(t)),n&&(e.style=Wt(n)),e}const Fr="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Ni=Tn(Fr);function Hi(e){return!!e||e===""}const Ui=e=>ie(e)?e:e==null?"":N(e)||X(e)&&(e.toString===xs||!U(e.toString))?JSON.stringify(e,_s,2):String(e),_s=(e,t)=>t&&t.__v_isRef?_s(e,t.value):tt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:bs(t)?{[`Set(${t.size})`]:[...t.values()]}:X(t)&&!N(t)&&!Cs(t)?String(t):t,Q={},et=[],Te=()=>{},Or=()=>!1,Ar=/^on[^a-z]/,Yt=e=>Ar.test(e),ms=e=>e.startsWith("onUpdate:"),he=Object.assign,Fn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Mr=Object.prototype.hasOwnProperty,$=(e,t)=>Mr.call(e,t),N=Array.isArray,tt=e=>qt(e)==="[object Map]",bs=e=>qt(e)==="[object Set]",U=e=>typeof e=="function",ie=e=>typeof e=="string",On=e=>typeof e=="symbol",X=e=>e!==null&&typeof e=="object",ys=e=>X(e)&&U(e.then)&&U(e.catch),xs=Object.prototype.toString,qt=e=>xs.call(e),Ir=e=>qt(e).slice(8,-1),Cs=e=>qt(e)==="[object Object]",An=e=>ie(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,dt=Tn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Jt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Pr=/-(\w)/g,Le=Jt(e=>e.replace(Pr,(t,n)=>n?n.toUpperCase():"")),Rr=/\B([A-Z])/g,zt=Jt(e=>e.replace(Rr,"-$1").toLowerCase()),Mn=Jt(e=>e.charAt(0).toUpperCase()+e.slice(1)),ln=Jt(e=>e?`on${Mn(e)}`:""),gt=(e,t)=>!Object.is(e,t),on=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Dt=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},ws=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let zn;const jr=()=>zn||(zn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let ge;class Lr{constructor(t=!1){this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=ge,!t&&ge&&(this.index=(ge.scopes||(ge.scopes=[])).push(this)-1)}run(t){if(this.active){const n=ge;try{return ge=this,t()}finally{ge=n}}}on(){ge=this}off(){ge=this.parent}stop(t){if(this.active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}}}function Nr(e,t=ge){t&&t.active&&t.effects.push(e)}function Di(){return ge}function ki(e){ge&&ge.cleanups.push(e)}const In=e=>{const t=new Set(e);return t.w=0,t.n=0,t},Es=e=>(e.w&$e)>0,Ts=e=>(e.n&$e)>0,Hr=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=$e},Ur=e=>{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s<t.length;s++){const r=t[s];Es(r)&&!Ts(r)?r.delete(e):t[n++]=r,r.w&=~$e,r.n&=~$e}t.length=n}},dn=new WeakMap;let at=0,$e=1;const hn=30;let we;const Ze=Symbol(""),pn=Symbol("");class Pn{constructor(t,n=null,s){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,Nr(this,s)}run(){if(!this.active)return this.fn();let t=we,n=Be;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=we,we=this,Be=!0,$e=1<<++at,at<=hn?Hr(this):Zn(this),this.fn()}finally{at<=hn&&Ur(this),$e=1<<--at,we=this.parent,Be=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){we===this?this.deferStop=!0:this.active&&(Zn(this),this.onStop&&this.onStop(),this.active=!1)}}function Zn(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let Be=!0;const Fs=[];function ft(){Fs.push(Be),Be=!1}function ct(){const e=Fs.pop();Be=e===void 0?!0:e}function me(e,t,n){if(Be&&we){let s=dn.get(e);s||dn.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=In()),Os(r)}}function Os(e,t){let n=!1;at<=hn?Ts(e)||(e.n|=$e,n=!Es(e)):n=!e.has(we),n&&(e.add(we),we.deps.push(e))}function Ne(e,t,n,s,r,l){const i=dn.get(e);if(!i)return;let f=[];if(t==="clear")f=[...i.values()];else if(n==="length"&&N(e)){const u=ws(s);i.forEach((d,g)=>{(g==="length"||g>=u)&&f.push(d)})}else switch(n!==void 0&&f.push(i.get(n)),t){case"add":N(e)?An(n)&&f.push(i.get("length")):(f.push(i.get(Ze)),tt(e)&&f.push(i.get(pn)));break;case"delete":N(e)||(f.push(i.get(Ze)),tt(e)&&f.push(i.get(pn)));break;case"set":tt(e)&&f.push(i.get(Ze));break}if(f.length===1)f[0]&&gn(f[0]);else{const u=[];for(const d of f)d&&u.push(...d);gn(In(u))}}function gn(e,t){const n=N(e)?e:[...e];for(const s of n)s.computed&&Qn(s);for(const s of n)s.computed||Qn(s)}function Qn(e,t){(e!==we||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const Dr=Tn("__proto__,__v_isRef,__isVue"),As=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(On)),kr=Rn(),Br=Rn(!1,!0),vr=Rn(!0),Xn=$r();function $r(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=W(this);for(let l=0,i=this.length;l<i;l++)me(s,"get",l+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(W)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){ft();const s=W(this)[t].apply(this,n);return ct(),s}}),e}function Rn(e=!1,t=!1){return function(s,r,l){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&l===(e?t?sl:js:t?Rs:Ps).get(s))return s;const i=N(s);if(!e&&i&&$(Xn,r))return Reflect.get(Xn,r,l);const f=Reflect.get(s,r,l);return(On(r)?As.has(r):Dr(r))||(e||me(s,"get",r),t)?f:re(f)?i&&An(r)?f:f.value:X(f)?e?Ls(f):Nn(f):f}}const Kr=Ms(),Sr=Ms(!0);function Ms(e=!1){return function(n,s,r,l){let i=n[s];if(lt(i)&&re(i)&&!re(r))return!1;if(!e&&(!kt(r)&&!lt(r)&&(i=W(i),r=W(r)),!N(n)&&re(i)&&!re(r)))return i.value=r,!0;const f=N(n)&&An(s)?Number(s)<n.length:$(n,s),u=Reflect.set(n,s,r,l);return n===W(l)&&(f?gt(r,i)&&Ne(n,"set",s,r):Ne(n,"add",s,r)),u}}function Wr(e,t){const n=$(e,t);e[t];const s=Reflect.deleteProperty(e,t);return s&&n&&Ne(e,"delete",t,void 0),s}function Vr(e,t){const n=Reflect.has(e,t);return(!On(t)||!As.has(t))&&me(e,"has",t),n}function Yr(e){return me(e,"iterate",N(e)?"length":Ze),Reflect.ownKeys(e)}const Is={get:kr,set:Kr,deleteProperty:Wr,has:Vr,ownKeys:Yr},qr={get:vr,set(e,t){return!0},deleteProperty(e,t){return!0}},Jr=he({},Is,{get:Br,set:Sr}),jn=e=>e,Zt=e=>Reflect.getPrototypeOf(e);function Et(e,t,n=!1,s=!1){e=e.__v_raw;const r=W(e),l=W(t);n||(t!==l&&me(r,"get",t),me(r,"get",l));const{has:i}=Zt(r),f=s?jn:n?Un:_t;if(i.call(r,t))return f(e.get(t));if(i.call(r,l))return f(e.get(l));e!==r&&e.get(t)}function Tt(e,t=!1){const n=this.__v_raw,s=W(n),r=W(e);return t||(e!==r&&me(s,"has",e),me(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Ft(e,t=!1){return e=e.__v_raw,!t&&me(W(e),"iterate",Ze),Reflect.get(e,"size",e)}function Gn(e){e=W(e);const t=W(this);return Zt(t).has.call(t,e)||(t.add(e),Ne(t,"add",e,e)),this}function es(e,t){t=W(t);const n=W(this),{has:s,get:r}=Zt(n);let l=s.call(n,e);l||(e=W(e),l=s.call(n,e));const i=r.call(n,e);return n.set(e,t),l?gt(t,i)&&Ne(n,"set",e,t):Ne(n,"add",e,t),this}function ts(e){const t=W(this),{has:n,get:s}=Zt(t);let r=n.call(t,e);r||(e=W(e),r=n.call(t,e)),s&&s.call(t,e);const l=t.delete(e);return r&&Ne(t,"delete",e,void 0),l}function ns(){const e=W(this),t=e.size!==0,n=e.clear();return t&&Ne(e,"clear",void 0,void 0),n}function Ot(e,t){return function(s,r){const l=this,i=l.__v_raw,f=W(i),u=t?jn:e?Un:_t;return!e&&me(f,"iterate",Ze),i.forEach((d,g)=>s.call(r,u(d),u(g),l))}}function At(e,t,n){return function(...s){const r=this.__v_raw,l=W(r),i=tt(l),f=e==="entries"||e===Symbol.iterator&&i,u=e==="keys"&&i,d=r[e](...s),g=n?jn:t?Un:_t;return!t&&me(l,"iterate",u?pn:Ze),{next(){const{value:x,done:w}=d.next();return w?{value:x,done:w}:{value:f?[g(x[0]),g(x[1])]:g(x),done:w}},[Symbol.iterator](){return this}}}}function Ue(e){return function(...t){return e==="delete"?!1:this}}function zr(){const e={get(l){return Et(this,l)},get size(){return Ft(this)},has:Tt,add:Gn,set:es,delete:ts,clear:ns,forEach:Ot(!1,!1)},t={get(l){return Et(this,l,!1,!0)},get size(){return Ft(this)},has:Tt,add:Gn,set:es,delete:ts,clear:ns,forEach:Ot(!1,!0)},n={get(l){return Et(this,l,!0)},get size(){return Ft(this,!0)},has(l){return Tt.call(this,l,!0)},add:Ue("add"),set:Ue("set"),delete:Ue("delete"),clear:Ue("clear"),forEach:Ot(!0,!1)},s={get(l){return Et(this,l,!0,!0)},get size(){return Ft(this,!0)},has(l){return Tt.call(this,l,!0)},add:Ue("add"),set:Ue("set"),delete:Ue("delete"),clear:Ue("clear"),forEach:Ot(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(l=>{e[l]=At(l,!1,!1),n[l]=At(l,!0,!1),t[l]=At(l,!1,!0),s[l]=At(l,!0,!0)}),[e,n,t,s]}const[Zr,Qr,Xr,Gr]=zr();function Ln(e,t){const n=t?e?Gr:Xr:e?Qr:Zr;return(s,r,l)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get($(n,r)&&r in s?n:s,r,l)}const el={get:Ln(!1,!1)},tl={get:Ln(!1,!0)},nl={get:Ln(!0,!1)},Ps=new WeakMap,Rs=new WeakMap,js=new WeakMap,sl=new WeakMap;function rl(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ll(e){return e.__v_skip||!Object.isExtensible(e)?0:rl(Ir(e))}function Nn(e){return lt(e)?e:Hn(e,!1,Is,el,Ps)}function il(e){return Hn(e,!1,Jr,tl,Rs)}function Ls(e){return Hn(e,!0,qr,nl,js)}function Hn(e,t,n,s,r){if(!X(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const l=r.get(e);if(l)return l;const i=ll(e);if(i===0)return e;const f=new Proxy(e,i===2?s:n);return r.set(e,f),f}function nt(e){return lt(e)?nt(e.__v_raw):!!(e&&e.__v_isReactive)}function lt(e){return!!(e&&e.__v_isReadonly)}function kt(e){return!!(e&&e.__v_isShallow)}function Ns(e){return nt(e)||lt(e)}function W(e){const t=e&&e.__v_raw;return t?W(t):e}function Hs(e){return Dt(e,"__v_skip",!0),e}const _t=e=>X(e)?Nn(e):e,Un=e=>X(e)?Ls(e):e;function Us(e){Be&&we&&(e=W(e),Os(e.dep||(e.dep=In())))}function Ds(e,t){e=W(e),e.dep&&gn(e.dep)}function re(e){return!!(e&&e.__v_isRef===!0)}function Bi(e){return ol(e,!1)}function ol(e,t){return re(e)?e:new fl(e,t)}class fl{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:W(t),this._value=n?t:_t(t)}get value(){return Us(this),this._value}set value(t){const n=this.__v_isShallow||kt(t)||lt(t);t=n?t:W(t),gt(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:_t(t),Ds(this))}}function cl(e){return re(e)?e.value:e}const ul={get:(e,t,n)=>cl(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return re(r)&&!re(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function ks(e){return nt(e)?e:new Proxy(e,ul)}class al{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}}function vi(e,t,n){const s=e[t];return re(s)?s:new al(e,t,n)}var Bs;class dl{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Bs]=!1,this._dirty=!0,this.effect=new Pn(t,()=>{this._dirty||(this._dirty=!0,Ds(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=W(this);return Us(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Bs="__v_isReadonly";function hl(e,t,n=!1){let s,r;const l=U(e);return l?(s=e,r=Te):(s=e.get,r=e.set),new dl(s,r,l||!r,n)}function ve(e,t,n,s){let r;try{r=s?e(...s):e()}catch(l){Qt(l,t,n)}return r}function Fe(e,t,n,s){if(U(e)){const l=ve(e,t,n,s);return l&&ys(l)&&l.catch(i=>{Qt(i,t,n)}),l}const r=[];for(let l=0;l<e.length;l++)r.push(Fe(e[l],t,n,s));return r}function Qt(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let l=t.parent;const i=t.proxy,f=n;for(;l;){const d=l.ec;if(d){for(let g=0;g<d.length;g++)if(d[g](e,i,f)===!1)return}l=l.parent}const u=t.appContext.config.errorHandler;if(u){ve(u,null,10,[e,i,f]);return}}pl(e,n,r,s)}function pl(e,t,n,s=!0){console.error(e)}let mt=!1,_n=!1;const fe=[];let Pe=0;const st=[];let je=null,qe=0;const vs=Promise.resolve();let Dn=null;function gl(e){const t=Dn||vs;return e?t.then(this?e.bind(this):e):t}function _l(e){let t=Pe+1,n=fe.length;for(;t<n;){const s=t+n>>>1;bt(fe[s])<e?t=s+1:n=s}return t}function kn(e){(!fe.length||!fe.includes(e,mt&&e.allowRecurse?Pe+1:Pe))&&(e.id==null?fe.push(e):fe.splice(_l(e.id),0,e),$s())}function $s(){!mt&&!_n&&(_n=!0,Dn=vs.then(Ks))}function ml(e){const t=fe.indexOf(e);t>Pe&&fe.splice(t,1)}function bl(e){N(e)?st.push(...e):(!je||!je.includes(e,e.allowRecurse?qe+1:qe))&&st.push(e),$s()}function ss(e,t=mt?Pe+1:0){for(;t<fe.length;t++){const n=fe[t];n&&n.pre&&(fe.splice(t,1),t--,n())}}function Bt(e){if(st.length){const t=[...new Set(st)];if(st.length=0,je){je.push(...t);return}for(je=t,je.sort((n,s)=>bt(n)-bt(s)),qe=0;qe<je.length;qe++)je[qe]();je=null,qe=0}}const bt=e=>e.id==null?1/0:e.id,yl=(e,t)=>{const n=bt(e)-bt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Ks(e){_n=!1,mt=!0,fe.sort(yl);const t=Te;try{for(Pe=0;Pe<fe.length;Pe++){const n=fe[Pe];n&&n.active!==!1&&ve(n,null,14)}}finally{Pe=0,fe.length=0,Bt(),mt=!1,Dn=null,(fe.length||st.length)&&Ks()}}function xl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Q;let r=n;const l=t.startsWith("update:"),i=l&&t.slice(7);if(i&&i in s){const g=`${i==="modelValue"?"model":i}Modifiers`,{number:x,trim:w}=s[g]||Q;w&&(r=n.map(R=>ie(R)?R.trim():R)),x&&(r=n.map(ws))}let f,u=s[f=ln(t)]||s[f=ln(Le(t))];!u&&l&&(u=s[f=ln(zt(t))]),u&&Fe(u,e,6,r);const d=s[f+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[f])return;e.emitted[f]=!0,Fe(d,e,6,r)}}function Ss(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const l=e.emits;let i={},f=!1;if(!U(e)){const u=d=>{const g=Ss(d,t,!0);g&&(f=!0,he(i,g))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!l&&!f?(X(e)&&s.set(e,null),null):(N(l)?l.forEach(u=>i[u]=null):he(i,l),X(e)&&s.set(e,i),i)}function Xt(e,t){return!e||!Yt(t)?!1:(t=t.slice(2).replace(/Once$/,""),$(e,t[0].toLowerCase()+t.slice(1))||$(e,zt(t))||$(e,t))}let le=null,Ws=null;function vt(e){const t=le;return le=e,Ws=e&&e.type.__scopeId||null,t}function Cl(e,t=le,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&hs(-1);const l=vt(t);let i;try{i=e(...r)}finally{vt(l),s._d&&hs(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function fn(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:l,propsOptions:[i],slots:f,attrs:u,emit:d,render:g,renderCache:x,data:w,setupState:R,ctx:K,inheritAttrs:P}=e;let G,m;const E=vt(e);try{if(n.shapeFlag&4){const H=r||s;G=Ce(g.call(H,H,x,l,R,w,K)),m=u}else{const H=t;G=Ce(H.length>1?H(l,{attrs:u,slots:f,emit:d}):H(l,null)),m=t.props?u:wl(u)}}catch(H){pt.length=0,Qt(H,e,1),G=ce(_e)}let O=G;if(m&&P!==!1){const H=Object.keys(m),{shapeFlag:B}=O;H.length&&B&7&&(i&&H.some(ms)&&(m=El(m,i)),O=Ke(O,m))}return n.dirs&&(O=Ke(O),O.dirs=O.dirs?O.dirs.concat(n.dirs):n.dirs),n.transition&&(O.transition=n.transition),G=O,vt(E),G}const wl=e=>{let t;for(const n in e)(n==="class"||n==="style"||Yt(n))&&((t||(t={}))[n]=e[n]);return t},El=(e,t)=>{const n={};for(const s in e)(!ms(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Tl(e,t,n){const{props:s,children:r,component:l}=e,{props:i,children:f,patchFlag:u}=t,d=l.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return s?rs(s,i,d):!!i;if(u&8){const g=t.dynamicProps;for(let x=0;x<g.length;x++){const w=g[x];if(i[w]!==s[w]&&!Xt(d,w))return!0}}}else return(r||f)&&(!f||!f.$stable)?!0:s===i?!1:s?i?rs(s,i,d):!0:!!i;return!1}function rs(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const l=s[r];if(t[l]!==e[l]&&!Xt(n,l))return!0}return!1}function Fl({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const Ol=e=>e.__isSuspense;function Vs(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):bl(e)}function Al(e,t){if(se){let n=se.provides;const s=se.parent&&se.parent.provides;s===n&&(n=se.provides=Object.create(s)),n[e]=t}}function Rt(e,t,n=!1){const s=se||le;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&U(t)?t.call(s.proxy):t}}function $i(e,t){return Bn(e,null,{flush:"post"})}const Mt={};function cn(e,t,n){return Bn(e,t,n)}function Bn(e,t,{immediate:n,deep:s,flush:r,onTrack:l,onTrigger:i}=Q){const f=se;let u,d=!1,g=!1;if(re(e)?(u=()=>e.value,d=kt(e)):nt(e)?(u=()=>e,s=!0):N(e)?(g=!0,d=e.some(O=>nt(O)||kt(O)),u=()=>e.map(O=>{if(re(O))return O.value;if(nt(O))return ze(O);if(U(O))return ve(O,f,2)})):U(e)?t?u=()=>ve(e,f,2):u=()=>{if(!(f&&f.isUnmounted))return x&&x(),Fe(e,f,3,[w])}:u=Te,t&&s){const O=u;u=()=>ze(O())}let x,w=O=>{x=m.onStop=()=>{ve(O,f,4)}},R;if(xt)if(w=Te,t?n&&Fe(t,f,3,[u(),g?[]:void 0,w]):u(),r==="sync"){const O=yi();R=O.__watcherHandles||(O.__watcherHandles=[])}else return Te;let K=g?new Array(e.length).fill(Mt):Mt;const P=()=>{if(!!m.active)if(t){const O=m.run();(s||d||(g?O.some((H,B)=>gt(H,K[B])):gt(O,K)))&&(x&&x(),Fe(t,f,3,[O,K===Mt?void 0:g&&K[0]===Mt?[]:K,w]),K=O)}else m.run()};P.allowRecurse=!!t;let G;r==="sync"?G=P:r==="post"?G=()=>ae(P,f&&f.suspense):(P.pre=!0,f&&(P.id=f.uid),G=()=>kn(P));const m=new Pn(u,G);t?n?P():K=m.run():r==="post"?ae(m.run.bind(m),f&&f.suspense):m.run();const E=()=>{m.stop(),f&&f.scope&&Fn(f.scope.effects,m)};return R&&R.push(E),E}function Ml(e,t,n){const s=this.proxy,r=ie(e)?e.includes(".")?Ys(s,e):()=>s[e]:e.bind(s,s);let l;U(t)?l=t:(l=t.handler,n=t);const i=se;ot(this);const f=Bn(r,l.bind(s),n);return i?ot(i):Qe(),f}function Ys(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function ze(e,t){if(!X(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),re(e))ze(e.value,t);else if(N(e))for(let n=0;n<e.length;n++)ze(e[n],t);else if(bs(e)||tt(e))e.forEach(n=>{ze(n,t)});else if(Cs(e))for(const n in e)ze(e[n],t);return e}function Il(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Zs(()=>{e.isMounted=!0}),Qs(()=>{e.isUnmounting=!0}),e}const be=[Function,Array],Pl={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:be,onEnter:be,onAfterEnter:be,onEnterCancelled:be,onBeforeLeave:be,onLeave:be,onAfterLeave:be,onLeaveCancelled:be,onBeforeAppear:be,onAppear:be,onAfterAppear:be,onAppearCancelled:be},setup(e,{slots:t}){const n=ui(),s=Il();let r;return()=>{const l=t.default&&Js(t.default(),!0);if(!l||!l.length)return;let i=l[0];if(l.length>1){for(const P of l)if(P.type!==_e){i=P;break}}const f=W(e),{mode:u}=f;if(s.isLeaving)return un(i);const d=ls(i);if(!d)return un(i);const g=mn(d,f,s,n);bn(d,g);const x=n.subTree,w=x&&ls(x);let R=!1;const{getTransitionKey:K}=d.type;if(K){const P=K();r===void 0?r=P:P!==r&&(r=P,R=!0)}if(w&&w.type!==_e&&(!Je(d,w)||R)){const P=mn(w,f,s,n);if(bn(w,P),u==="out-in")return s.isLeaving=!0,P.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},un(i);u==="in-out"&&d.type!==_e&&(P.delayLeave=(G,m,E)=>{const O=qs(s,w);O[String(w.key)]=w,G._leaveCb=()=>{m(),G._leaveCb=void 0,delete g.delayedLeave},g.delayedLeave=E})}return i}}},Ki=Pl;function qs(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function mn(e,t,n,s){const{appear:r,mode:l,persisted:i=!1,onBeforeEnter:f,onEnter:u,onAfterEnter:d,onEnterCancelled:g,onBeforeLeave:x,onLeave:w,onAfterLeave:R,onLeaveCancelled:K,onBeforeAppear:P,onAppear:G,onAfterAppear:m,onAppearCancelled:E}=t,O=String(e.key),H=qs(n,e),B=(F,v)=>{F&&Fe(F,s,9,v)},z=(F,v)=>{const D=v[1];B(F,v),N(F)?F.every(V=>V.length<=1)&&D():F.length<=1&&D()},S={mode:l,persisted:i,beforeEnter(F){let v=f;if(!n.isMounted)if(r)v=P||f;else return;F._leaveCb&&F._leaveCb(!0);const D=H[O];D&&Je(e,D)&&D.el._leaveCb&&D.el._leaveCb(),B(v,[F])},enter(F){let v=u,D=d,V=g;if(!n.isMounted)if(r)v=G||u,D=m||d,V=E||g;else return;let oe=!1;const ee=F._enterCb=j=>{oe||(oe=!0,j?B(V,[F]):B(D,[F]),S.delayedLeave&&S.delayedLeave(),F._enterCb=void 0)};v?z(v,[F,ee]):ee()},leave(F,v){const D=String(e.key);if(F._enterCb&&F._enterCb(!0),n.isUnmounting)return v();B(x,[F]);let V=!1;const oe=F._leaveCb=ee=>{V||(V=!0,v(),ee?B(K,[F]):B(R,[F]),F._leaveCb=void 0,H[D]===e&&delete H[D])};H[D]=e,w?z(w,[F,oe]):oe()},clone(F){return mn(F,t,n,s)}};return S}function un(e){if(Gt(e))return e=Ke(e),e.children=null,e}function ls(e){return Gt(e)?e.children?e.children[0]:void 0:e}function bn(e,t){e.shapeFlag&6&&e.component?bn(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Js(e,t=!1,n){let s=[],r=0;for(let l=0;l<e.length;l++){let i=e[l];const f=n==null?i.key:String(n)+String(i.key!=null?i.key:l);i.type===de?(i.patchFlag&128&&r++,s=s.concat(Js(i.children,t,f))):(t||i.type!==_e)&&s.push(f!=null?Ke(i,{key:f}):i)}if(r>1)for(let l=0;l<s.length;l++)s[l].patchFlag=-2;return s}function Si(e){return U(e)?{setup:e,name:e.name}:e}const rt=e=>!!e.type.__asyncLoader,Gt=e=>e.type.__isKeepAlive;function Rl(e,t){zs(e,"a",t)}function jl(e,t){zs(e,"da",t)}function zs(e,t,n=se){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(en(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Gt(r.parent.vnode)&&Ll(s,t,n,r),r=r.parent}}function Ll(e,t,n,s){const r=en(t,e,s,!0);Xs(()=>{Fn(s[t],r)},n)}function en(e,t,n=se,s=!1){if(n){const r=n[e]||(n[e]=[]),l=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;ft(),ot(n);const f=Fe(t,n,e,i);return Qe(),ct(),f});return s?r.unshift(l):r.push(l),l}}const He=e=>(t,n=se)=>(!xt||e==="sp")&&en(e,(...s)=>t(...s),n),Nl=He("bm"),Zs=He("m"),Hl=He("bu"),Ul=He("u"),Qs=He("bum"),Xs=He("um"),Dl=He("sp"),kl=He("rtg"),Bl=He("rtc");function vl(e,t=se){en("ec",e,t)}function Wi(e,t){const n=le;if(n===null)return e;const s=nn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let l=0;l<t.length;l++){let[i,f,u,d=Q]=t[l];i&&(U(i)&&(i={mounted:i,updated:i}),i.deep&&ze(f),r.push({dir:i,instance:s,value:f,oldValue:void 0,arg:u,modifiers:d}))}return e}function Ie(e,t,n,s){const r=e.dirs,l=t&&t.dirs;for(let i=0;i<r.length;i++){const f=r[i];l&&(f.oldValue=l[i].value);let u=f.dir[s];u&&(ft(),Fe(u,n,8,[e.el,f,e,t]),ct())}}const vn="components";function Vi(e,t){return er(vn,e,!0,t)||e}const Gs=Symbol();function Yi(e){return ie(e)?er(vn,e,!1)||e:e||Gs}function er(e,t,n=!0,s=!1){const r=le||se;if(r){const l=r.type;if(e===vn){const f=gi(l,!1);if(f&&(f===t||f===Le(t)||f===Mn(Le(t))))return l}const i=is(r[e]||l[e],t)||is(r.appContext[e],t);return!i&&s?l:i}}function is(e,t){return e&&(e[t]||e[Le(t)]||e[Mn(Le(t))])}function qi(e,t,n,s){let r;const l=n&&n[s];if(N(e)||ie(e)){r=new Array(e.length);for(let i=0,f=e.length;i<f;i++)r[i]=t(e[i],i,void 0,l&&l[i])}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,l&&l[i])}else if(X(e))if(e[Symbol.iterator])r=Array.from(e,(i,f)=>t(i,f,void 0,l&&l[f]));else{const i=Object.keys(e);r=new Array(i.length);for(let f=0,u=i.length;f<u;f++){const d=i[f];r[f]=t(e[d],d,f,l&&l[f])}}else r=[];return n&&(n[s]=r),r}function Ji(e,t,n={},s,r){if(le.isCE||le.parent&&rt(le.parent)&&le.parent.isCE)return t!=="default"&&(n.name=t),ce("slot",n,s&&s());let l=e[t];l&&l._c&&(l._d=!1),ar();const i=l&&tr(l(n)),f=hr(de,{key:n.key||i&&i.key||`_${t}`},i||(s?s():[]),i&&e._===1?64:-2);return!r&&f.scopeId&&(f.slotScopeIds=[f.scopeId+"-s"]),l&&l._c&&(l._d=!0),f}function tr(e){return e.some(t=>St(t)?!(t.type===_e||t.type===de&&!tr(t.children)):!0)?e:null}const yn=e=>e?mr(e)?nn(e)||e.proxy:yn(e.parent):null,ht=he(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>yn(e.parent),$root:e=>yn(e.root),$emit:e=>e.emit,$options:e=>$n(e),$forceUpdate:e=>e.f||(e.f=()=>kn(e.update)),$nextTick:e=>e.n||(e.n=gl.bind(e.proxy)),$watch:e=>Ml.bind(e)}),an=(e,t)=>e!==Q&&!e.__isScriptSetup&&$(e,t),$l={get({_:e},t){const{ctx:n,setupState:s,data:r,props:l,accessCache:i,type:f,appContext:u}=e;let d;if(t[0]!=="$"){const R=i[t];if(R!==void 0)switch(R){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return l[t]}else{if(an(s,t))return i[t]=1,s[t];if(r!==Q&&$(r,t))return i[t]=2,r[t];if((d=e.propsOptions[0])&&$(d,t))return i[t]=3,l[t];if(n!==Q&&$(n,t))return i[t]=4,n[t];xn&&(i[t]=0)}}const g=ht[t];let x,w;if(g)return t==="$attrs"&&me(e,"get",t),g(e);if((x=f.__cssModules)&&(x=x[t]))return x;if(n!==Q&&$(n,t))return i[t]=4,n[t];if(w=u.config.globalProperties,$(w,t))return w[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:l}=e;return an(r,t)?(r[t]=n,!0):s!==Q&&$(s,t)?(s[t]=n,!0):$(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(l[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:l}},i){let f;return!!n[i]||e!==Q&&$(e,i)||an(t,i)||(f=l[0])&&$(f,i)||$(s,i)||$(ht,i)||$(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:$(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let xn=!0;function Kl(e){const t=$n(e),n=e.proxy,s=e.ctx;xn=!1,t.beforeCreate&&os(t.beforeCreate,e,"bc");const{data:r,computed:l,methods:i,watch:f,provide:u,inject:d,created:g,beforeMount:x,mounted:w,beforeUpdate:R,updated:K,activated:P,deactivated:G,beforeDestroy:m,beforeUnmount:E,destroyed:O,unmounted:H,render:B,renderTracked:z,renderTriggered:S,errorCaptured:F,serverPrefetch:v,expose:D,inheritAttrs:V,components:oe,directives:ee,filters:j}=t;if(d&&Sl(d,s,null,e.appContext.config.unwrapInjectedRef),i)for(const te in i){const q=i[te];U(q)&&(s[te]=q.bind(n))}if(r){const te=r.call(n,n);X(te)&&(e.data=Nn(te))}if(xn=!0,l)for(const te in l){const q=l[te],Se=U(q)?q.bind(n,n):U(q.get)?q.get.bind(n,n):Te,Ct=!U(q)&&U(q.set)?q.set.bind(n):Te,We=mi({get:Se,set:Ct});Object.defineProperty(s,te,{enumerable:!0,configurable:!0,get:()=>We.value,set:Ae=>We.value=Ae})}if(f)for(const te in f)nr(f[te],s,n,te);if(u){const te=U(u)?u.call(n):u;Reflect.ownKeys(te).forEach(q=>{Al(q,te[q])})}g&&os(g,e,"c");function Z(te,q){N(q)?q.forEach(Se=>te(Se.bind(n))):q&&te(q.bind(n))}if(Z(Nl,x),Z(Zs,w),Z(Hl,R),Z(Ul,K),Z(Rl,P),Z(jl,G),Z(vl,F),Z(Bl,z),Z(kl,S),Z(Qs,E),Z(Xs,H),Z(Dl,v),N(D))if(D.length){const te=e.exposed||(e.exposed={});D.forEach(q=>{Object.defineProperty(te,q,{get:()=>n[q],set:Se=>n[q]=Se})})}else e.exposed||(e.exposed={});B&&e.render===Te&&(e.render=B),V!=null&&(e.inheritAttrs=V),oe&&(e.components=oe),ee&&(e.directives=ee)}function Sl(e,t,n=Te,s=!1){N(e)&&(e=Cn(e));for(const r in e){const l=e[r];let i;X(l)?"default"in l?i=Rt(l.from||r,l.default,!0):i=Rt(l.from||r):i=Rt(l),re(i)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:f=>i.value=f}):t[r]=i}}function os(e,t,n){Fe(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function nr(e,t,n,s){const r=s.includes(".")?Ys(n,s):()=>n[s];if(ie(e)){const l=t[e];U(l)&&cn(r,l)}else if(U(e))cn(r,e.bind(n));else if(X(e))if(N(e))e.forEach(l=>nr(l,t,n,s));else{const l=U(e.handler)?e.handler.bind(n):t[e.handler];U(l)&&cn(r,l,e)}}function $n(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:l,config:{optionMergeStrategies:i}}=e.appContext,f=l.get(t);let u;return f?u=f:!r.length&&!n&&!s?u=t:(u={},r.length&&r.forEach(d=>$t(u,d,i,!0)),$t(u,t,i)),X(t)&&l.set(t,u),u}function $t(e,t,n,s=!1){const{mixins:r,extends:l}=t;l&&$t(e,l,n,!0),r&&r.forEach(i=>$t(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const f=Wl[i]||n&&n[i];e[i]=f?f(e[i],t[i]):t[i]}return e}const Wl={data:fs,props:Ye,emits:Ye,methods:Ye,computed:Ye,beforeCreate:ue,created:ue,beforeMount:ue,mounted:ue,beforeUpdate:ue,updated:ue,beforeDestroy:ue,beforeUnmount:ue,destroyed:ue,unmounted:ue,activated:ue,deactivated:ue,errorCaptured:ue,serverPrefetch:ue,components:Ye,directives:Ye,watch:Yl,provide:fs,inject:Vl};function fs(e,t){return t?e?function(){return he(U(e)?e.call(this,this):e,U(t)?t.call(this,this):t)}:t:e}function Vl(e,t){return Ye(Cn(e),Cn(t))}function Cn(e){if(N(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ue(e,t){return e?[...new Set([].concat(e,t))]:t}function Ye(e,t){return e?he(he(Object.create(null),e),t):t}function Yl(e,t){if(!e)return t;if(!t)return e;const n=he(Object.create(null),e);for(const s in t)n[s]=ue(e[s],t[s]);return n}function ql(e,t,n,s=!1){const r={},l={};Dt(l,tn,1),e.propsDefaults=Object.create(null),sr(e,t,r,l);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:il(r):e.type.props?e.props=r:e.props=l,e.attrs=l}function Jl(e,t,n,s){const{props:r,attrs:l,vnode:{patchFlag:i}}=e,f=W(r),[u]=e.propsOptions;let d=!1;if((s||i>0)&&!(i&16)){if(i&8){const g=e.vnode.dynamicProps;for(let x=0;x<g.length;x++){let w=g[x];if(Xt(e.emitsOptions,w))continue;const R=t[w];if(u)if($(l,w))R!==l[w]&&(l[w]=R,d=!0);else{const K=Le(w);r[K]=wn(u,f,K,R,e,!1)}else R!==l[w]&&(l[w]=R,d=!0)}}}else{sr(e,t,r,l)&&(d=!0);let g;for(const x in f)(!t||!$(t,x)&&((g=zt(x))===x||!$(t,g)))&&(u?n&&(n[x]!==void 0||n[g]!==void 0)&&(r[x]=wn(u,f,x,void 0,e,!0)):delete r[x]);if(l!==f)for(const x in l)(!t||!$(t,x)&&!0)&&(delete l[x],d=!0)}d&&Ne(e,"set","$attrs")}function sr(e,t,n,s){const[r,l]=e.propsOptions;let i=!1,f;if(t)for(let u in t){if(dt(u))continue;const d=t[u];let g;r&&$(r,g=Le(u))?!l||!l.includes(g)?n[g]=d:(f||(f={}))[g]=d:Xt(e.emitsOptions,u)||(!(u in s)||d!==s[u])&&(s[u]=d,i=!0)}if(l){const u=W(n),d=f||Q;for(let g=0;g<l.length;g++){const x=l[g];n[x]=wn(r,u,x,d[x],e,!$(d,x))}}return i}function wn(e,t,n,s,r,l){const i=e[n];if(i!=null){const f=$(i,"default");if(f&&s===void 0){const u=i.default;if(i.type!==Function&&U(u)){const{propsDefaults:d}=r;n in d?s=d[n]:(ot(r),s=d[n]=u.call(null,t),Qe())}else s=u}i[0]&&(l&&!f?s=!1:i[1]&&(s===""||s===zt(n))&&(s=!0))}return s}function rr(e,t,n=!1){const s=t.propsCache,r=s.get(e);if(r)return r;const l=e.props,i={},f=[];let u=!1;if(!U(e)){const g=x=>{u=!0;const[w,R]=rr(x,t,!0);he(i,w),R&&f.push(...R)};!n&&t.mixins.length&&t.mixins.forEach(g),e.extends&&g(e.extends),e.mixins&&e.mixins.forEach(g)}if(!l&&!u)return X(e)&&s.set(e,et),et;if(N(l))for(let g=0;g<l.length;g++){const x=Le(l[g]);cs(x)&&(i[x]=Q)}else if(l)for(const g in l){const x=Le(g);if(cs(x)){const w=l[g],R=i[x]=N(w)||U(w)?{type:w}:Object.assign({},w);if(R){const K=ds(Boolean,R.type),P=ds(String,R.type);R[0]=K>-1,R[1]=P<0||K<P,(K>-1||$(R,"default"))&&f.push(x)}}}const d=[i,f];return X(e)&&s.set(e,d),d}function cs(e){return e[0]!=="$"}function us(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function as(e,t){return us(e)===us(t)}function ds(e,t){return N(t)?t.findIndex(n=>as(n,e)):U(t)&&as(t,e)?0:-1}const lr=e=>e[0]==="_"||e==="$stable",Kn=e=>N(e)?e.map(Ce):[Ce(e)],zl=(e,t,n)=>{if(t._n)return t;const s=Cl((...r)=>Kn(t(...r)),n);return s._c=!1,s},ir=(e,t,n)=>{const s=e._ctx;for(const r in e){if(lr(r))continue;const l=e[r];if(U(l))t[r]=zl(r,l,s);else if(l!=null){const i=Kn(l);t[r]=()=>i}}},or=(e,t)=>{const n=Kn(t);e.slots.default=()=>n},Zl=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=W(t),Dt(t,"_",n)):ir(t,e.slots={})}else e.slots={},t&&or(e,t);Dt(e.slots,tn,1)},Ql=(e,t,n)=>{const{vnode:s,slots:r}=e;let l=!0,i=Q;if(s.shapeFlag&32){const f=t._;f?n&&f===1?l=!1:(he(r,t),!n&&f===1&&delete r._):(l=!t.$stable,ir(t,r)),i=t}else t&&(or(e,t),i={default:1});if(l)for(const f in r)!lr(f)&&!(f in i)&&delete r[f]};function fr(){return{app:null,config:{isNativeTag:Or,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Xl=0;function Gl(e,t){return function(s,r=null){U(s)||(s=Object.assign({},s)),r!=null&&!X(r)&&(r=null);const l=fr(),i=new Set;let f=!1;const u=l.app={_uid:Xl++,_component:s,_props:r,_container:null,_context:l,_instance:null,version:xi,get config(){return l.config},set config(d){},use(d,...g){return i.has(d)||(d&&U(d.install)?(i.add(d),d.install(u,...g)):U(d)&&(i.add(d),d(u,...g))),u},mixin(d){return l.mixins.includes(d)||l.mixins.push(d),u},component(d,g){return g?(l.components[d]=g,u):l.components[d]},directive(d,g){return g?(l.directives[d]=g,u):l.directives[d]},mount(d,g,x){if(!f){const w=ce(s,r);return w.appContext=l,g&&t?t(w,d):e(w,d,x),f=!0,u._container=d,d.__vue_app__=u,nn(w.component)||w.component.proxy}},unmount(){f&&(e(null,u._container),delete u._container.__vue_app__)},provide(d,g){return l.provides[d]=g,u}};return u}}function Kt(e,t,n,s,r=!1){if(N(e)){e.forEach((w,R)=>Kt(w,t&&(N(t)?t[R]:t),n,s,r));return}if(rt(s)&&!r)return;const l=s.shapeFlag&4?nn(s.component)||s.component.proxy:s.el,i=r?null:l,{i:f,r:u}=e,d=t&&t.r,g=f.refs===Q?f.refs={}:f.refs,x=f.setupState;if(d!=null&&d!==u&&(ie(d)?(g[d]=null,$(x,d)&&(x[d]=null)):re(d)&&(d.value=null)),U(u))ve(u,f,12,[i,g]);else{const w=ie(u),R=re(u);if(w||R){const K=()=>{if(e.f){const P=w?$(x,u)?x[u]:g[u]:u.value;r?N(P)&&Fn(P,l):N(P)?P.includes(l)||P.push(l):w?(g[u]=[l],$(x,u)&&(x[u]=g[u])):(u.value=[l],e.k&&(g[e.k]=u.value))}else w?(g[u]=i,$(x,u)&&(x[u]=i)):R&&(u.value=i,e.k&&(g[e.k]=i))};i?(K.id=-1,ae(K,n)):K()}}}let De=!1;const It=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",Pt=e=>e.nodeType===8;function ei(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:l,parentNode:i,remove:f,insert:u,createComment:d}}=e,g=(m,E)=>{if(!E.hasChildNodes()){n(null,m,E),Bt(),E._vnode=m;return}De=!1,x(E.firstChild,m,null,null,null),Bt(),E._vnode=m,De&&console.error("Hydration completed but contains mismatches.")},x=(m,E,O,H,B,z=!1)=>{const S=Pt(m)&&m.data==="[",F=()=>P(m,E,O,H,B,S),{type:v,ref:D,shapeFlag:V,patchFlag:oe}=E;let ee=m.nodeType;E.el=m,oe===-2&&(z=!1,E.dynamicChildren=null);let j=null;switch(v){case it:ee!==3?E.children===""?(u(E.el=r(""),i(m),m),j=m):j=F():(m.data!==E.children&&(De=!0,m.data=E.children),j=l(m));break;case _e:ee!==8||S?j=F():j=l(m);break;case jt:if(S&&(m=l(m),ee=m.nodeType),ee===1||ee===3){j=m;const Oe=!E.children.length;for(let Z=0;Z<E.staticCount;Z++)Oe&&(E.children+=j.nodeType===1?j.outerHTML:j.data),Z===E.staticCount-1&&(E.anchor=j),j=l(j);return S?l(j):j}else F();break;case de:S?j=K(m,E,O,H,B,z):j=F();break;default:if(V&1)ee!==1||E.type.toLowerCase()!==m.tagName.toLowerCase()?j=F():j=w(m,E,O,H,B,z);else if(V&6){E.slotScopeIds=B;const Oe=i(m);if(t(E,Oe,null,O,H,It(Oe),z),j=S?G(m):l(m),j&&Pt(j)&&j.data==="teleport end"&&(j=l(j)),rt(E)){let Z;S?(Z=ce(de),Z.anchor=j?j.previousSibling:Oe.lastChild):Z=m.nodeType===3?_r(""):ce("div"),Z.el=m,E.component.subTree=Z}}else V&64?ee!==8?j=F():j=E.type.hydrate(m,E,O,H,B,z,e,R):V&128&&(j=E.type.hydrate(m,E,O,H,It(i(m)),B,z,e,x))}return D!=null&&Kt(D,null,H,E),j},w=(m,E,O,H,B,z)=>{z=z||!!E.dynamicChildren;const{type:S,props:F,patchFlag:v,shapeFlag:D,dirs:V}=E,oe=S==="input"&&V||S==="option";if(oe||v!==-1){if(V&&Ie(E,null,O,"created"),F)if(oe||!z||v&48)for(const j in F)(oe&&j.endsWith("value")||Yt(j)&&!dt(j))&&s(m,j,null,F[j],!1,void 0,O);else F.onClick&&s(m,"onClick",null,F.onClick,!1,void 0,O);let ee;if((ee=F&&F.onVnodeBeforeMount)&&ye(ee,O,E),V&&Ie(E,null,O,"beforeMount"),((ee=F&&F.onVnodeMounted)||V)&&Vs(()=>{ee&&ye(ee,O,E),V&&Ie(E,null,O,"mounted")},H),D&16&&!(F&&(F.innerHTML||F.textContent))){let j=R(m.firstChild,E,m,O,H,B,z);for(;j;){De=!0;const Oe=j;j=j.nextSibling,f(Oe)}}else D&8&&m.textContent!==E.children&&(De=!0,m.textContent=E.children)}return m.nextSibling},R=(m,E,O,H,B,z,S)=>{S=S||!!E.dynamicChildren;const F=E.children,v=F.length;for(let D=0;D<v;D++){const V=S?F[D]:F[D]=Ce(F[D]);if(m)m=x(m,V,H,B,z,S);else{if(V.type===it&&!V.children)continue;De=!0,n(null,V,O,null,H,B,It(O),z)}}return m},K=(m,E,O,H,B,z)=>{const{slotScopeIds:S}=E;S&&(B=B?B.concat(S):S);const F=i(m),v=R(l(m),E,F,O,H,B,z);return v&&Pt(v)&&v.data==="]"?l(E.anchor=v):(De=!0,u(E.anchor=d("]"),F,v),v)},P=(m,E,O,H,B,z)=>{if(De=!0,E.el=null,z){const v=G(m);for(;;){const D=l(m);if(D&&D!==v)f(D);else break}}const S=l(m),F=i(m);return f(m),n(null,E,F,S,O,H,It(F),B),S},G=m=>{let E=0;for(;m;)if(m=l(m),m&&Pt(m)&&(m.data==="["&&E++,m.data==="]")){if(E===0)return l(m);E--}return m};return[g,x]}const ae=Vs;function zi(e){return cr(e)}function Zi(e){return cr(e,ei)}function cr(e,t){const n=jr();n.__VUE__=!0;const{insert:s,remove:r,patchProp:l,createElement:i,createText:f,createComment:u,setText:d,setElementText:g,parentNode:x,nextSibling:w,setScopeId:R=Te,insertStaticContent:K}=e,P=(o,c,a,p=null,h=null,y=null,T=!1,b=null,C=!!c.dynamicChildren)=>{if(o===c)return;o&&!Je(o,c)&&(p=wt(o),Ae(o,h,y,!0),o=null),c.patchFlag===-2&&(C=!1,c.dynamicChildren=null);const{type:_,ref:M,shapeFlag:A}=c;switch(_){case it:G(o,c,a,p);break;case _e:m(o,c,a,p);break;case jt:o==null&&E(c,a,p,T);break;case de:oe(o,c,a,p,h,y,T,b,C);break;default:A&1?B(o,c,a,p,h,y,T,b,C):A&6?ee(o,c,a,p,h,y,T,b,C):(A&64||A&128)&&_.process(o,c,a,p,h,y,T,b,C,Xe)}M!=null&&h&&Kt(M,o&&o.ref,y,c||o,!c)},G=(o,c,a,p)=>{if(o==null)s(c.el=f(c.children),a,p);else{const h=c.el=o.el;c.children!==o.children&&d(h,c.children)}},m=(o,c,a,p)=>{o==null?s(c.el=u(c.children||""),a,p):c.el=o.el},E=(o,c,a,p)=>{[o.el,o.anchor]=K(o.children,c,a,p,o.el,o.anchor)},O=({el:o,anchor:c},a,p)=>{let h;for(;o&&o!==c;)h=w(o),s(o,a,p),o=h;s(c,a,p)},H=({el:o,anchor:c})=>{let a;for(;o&&o!==c;)a=w(o),r(o),o=a;r(c)},B=(o,c,a,p,h,y,T,b,C)=>{T=T||c.type==="svg",o==null?z(c,a,p,h,y,T,b,C):v(o,c,h,y,T,b,C)},z=(o,c,a,p,h,y,T,b)=>{let C,_;const{type:M,props:A,shapeFlag:I,transition:L,dirs:k}=o;if(C=o.el=i(o.type,y,A&&A.is,A),I&8?g(C,o.children):I&16&&F(o.children,C,null,p,h,y&&M!=="foreignObject",T,b),k&&Ie(o,null,p,"created"),A){for(const Y in A)Y!=="value"&&!dt(Y)&&l(C,Y,null,A[Y],y,o.children,p,h,Re);"value"in A&&l(C,"value",null,A.value),(_=A.onVnodeBeforeMount)&&ye(_,p,o)}S(C,o,o.scopeId,T,p),k&&Ie(o,null,p,"beforeMount");const J=(!h||h&&!h.pendingBranch)&&L&&!L.persisted;J&&L.beforeEnter(C),s(C,c,a),((_=A&&A.onVnodeMounted)||J||k)&&ae(()=>{_&&ye(_,p,o),J&&L.enter(C),k&&Ie(o,null,p,"mounted")},h)},S=(o,c,a,p,h)=>{if(a&&R(o,a),p)for(let y=0;y<p.length;y++)R(o,p[y]);if(h){let y=h.subTree;if(c===y){const T=h.vnode;S(o,T,T.scopeId,T.slotScopeIds,h.parent)}}},F=(o,c,a,p,h,y,T,b,C=0)=>{for(let _=C;_<o.length;_++){const M=o[_]=b?ke(o[_]):Ce(o[_]);P(null,M,c,a,p,h,y,T,b)}},v=(o,c,a,p,h,y,T)=>{const b=c.el=o.el;let{patchFlag:C,dynamicChildren:_,dirs:M}=c;C|=o.patchFlag&16;const A=o.props||Q,I=c.props||Q;let L;a&&Ve(a,!1),(L=I.onVnodeBeforeUpdate)&&ye(L,a,c,o),M&&Ie(c,o,a,"beforeUpdate"),a&&Ve(a,!0);const k=h&&c.type!=="foreignObject";if(_?D(o.dynamicChildren,_,b,a,p,k,y):T||q(o,c,b,null,a,p,k,y,!1),C>0){if(C&16)V(b,c,A,I,a,p,h);else if(C&2&&A.class!==I.class&&l(b,"class",null,I.class,h),C&4&&l(b,"style",A.style,I.style,h),C&8){const J=c.dynamicProps;for(let Y=0;Y<J.length;Y++){const ne=J[Y],xe=A[ne],Ge=I[ne];(Ge!==xe||ne==="value")&&l(b,ne,xe,Ge,h,o.children,a,p,Re)}}C&1&&o.children!==c.children&&g(b,c.children)}else!T&&_==null&&V(b,c,A,I,a,p,h);((L=I.onVnodeUpdated)||M)&&ae(()=>{L&&ye(L,a,c,o),M&&Ie(c,o,a,"updated")},p)},D=(o,c,a,p,h,y,T)=>{for(let b=0;b<c.length;b++){const C=o[b],_=c[b],M=C.el&&(C.type===de||!Je(C,_)||C.shapeFlag&70)?x(C.el):a;P(C,_,M,null,p,h,y,T,!0)}},V=(o,c,a,p,h,y,T)=>{if(a!==p){if(a!==Q)for(const b in a)!dt(b)&&!(b in p)&&l(o,b,a[b],null,T,c.children,h,y,Re);for(const b in p){if(dt(b))continue;const C=p[b],_=a[b];C!==_&&b!=="value"&&l(o,b,_,C,T,c.children,h,y,Re)}"value"in p&&l(o,"value",a.value,p.value)}},oe=(o,c,a,p,h,y,T,b,C)=>{const _=c.el=o?o.el:f(""),M=c.anchor=o?o.anchor:f("");let{patchFlag:A,dynamicChildren:I,slotScopeIds:L}=c;L&&(b=b?b.concat(L):L),o==null?(s(_,a,p),s(M,a,p),F(c.children,a,M,h,y,T,b,C)):A>0&&A&64&&I&&o.dynamicChildren?(D(o.dynamicChildren,I,a,h,y,T,b),(c.key!=null||h&&c===h.subTree)&&ur(o,c,!0)):q(o,c,a,M,h,y,T,b,C)},ee=(o,c,a,p,h,y,T,b,C)=>{c.slotScopeIds=b,o==null?c.shapeFlag&512?h.ctx.activate(c,a,p,T,C):j(c,a,p,h,y,T,C):Oe(o,c,C)},j=(o,c,a,p,h,y,T)=>{const b=o.component=ci(o,p,h);if(Gt(o)&&(b.ctx.renderer=Xe),ai(b),b.asyncDep){if(h&&h.registerDep(b,Z),!o.el){const C=b.subTree=ce(_e);m(null,C,c,a)}return}Z(b,o,c,a,h,y,T)},Oe=(o,c,a)=>{const p=c.component=o.component;if(Tl(o,c,a))if(p.asyncDep&&!p.asyncResolved){te(p,c,a);return}else p.next=c,ml(p.update),p.update();else c.el=o.el,p.vnode=c},Z=(o,c,a,p,h,y,T)=>{const b=()=>{if(o.isMounted){let{next:M,bu:A,u:I,parent:L,vnode:k}=o,J=M,Y;Ve(o,!1),M?(M.el=k.el,te(o,M,T)):M=k,A&&on(A),(Y=M.props&&M.props.onVnodeBeforeUpdate)&&ye(Y,L,M,k),Ve(o,!0);const ne=fn(o),xe=o.subTree;o.subTree=ne,P(xe,ne,x(xe.el),wt(xe),o,h,y),M.el=ne.el,J===null&&Fl(o,ne.el),I&&ae(I,h),(Y=M.props&&M.props.onVnodeUpdated)&&ae(()=>ye(Y,L,M,k),h)}else{let M;const{el:A,props:I}=c,{bm:L,m:k,parent:J}=o,Y=rt(c);if(Ve(o,!1),L&&on(L),!Y&&(M=I&&I.onVnodeBeforeMount)&&ye(M,J,c),Ve(o,!0),A&&rn){const ne=()=>{o.subTree=fn(o),rn(A,o.subTree,o,h,null)};Y?c.type.__asyncLoader().then(()=>!o.isUnmounted&&ne()):ne()}else{const ne=o.subTree=fn(o);P(null,ne,a,p,o,h,y),c.el=ne.el}if(k&&ae(k,h),!Y&&(M=I&&I.onVnodeMounted)){const ne=c;ae(()=>ye(M,J,ne),h)}(c.shapeFlag&256||J&&rt(J.vnode)&&J.vnode.shapeFlag&256)&&o.a&&ae(o.a,h),o.isMounted=!0,c=a=p=null}},C=o.effect=new Pn(b,()=>kn(_),o.scope),_=o.update=()=>C.run();_.id=o.uid,Ve(o,!0),_()},te=(o,c,a)=>{c.component=o;const p=o.vnode.props;o.vnode=c,o.next=null,Jl(o,c.props,p,a),Ql(o,c.children,a),ft(),ss(),ct()},q=(o,c,a,p,h,y,T,b,C=!1)=>{const _=o&&o.children,M=o?o.shapeFlag:0,A=c.children,{patchFlag:I,shapeFlag:L}=c;if(I>0){if(I&128){Ct(_,A,a,p,h,y,T,b,C);return}else if(I&256){Se(_,A,a,p,h,y,T,b,C);return}}L&8?(M&16&&Re(_,h,y),A!==_&&g(a,A)):M&16?L&16?Ct(_,A,a,p,h,y,T,b,C):Re(_,h,y,!0):(M&8&&g(a,""),L&16&&F(A,a,p,h,y,T,b,C))},Se=(o,c,a,p,h,y,T,b,C)=>{o=o||et,c=c||et;const _=o.length,M=c.length,A=Math.min(_,M);let I;for(I=0;I<A;I++){const L=c[I]=C?ke(c[I]):Ce(c[I]);P(o[I],L,a,null,h,y,T,b,C)}_>M?Re(o,h,y,!0,!1,A):F(c,a,p,h,y,T,b,C,A)},Ct=(o,c,a,p,h,y,T,b,C)=>{let _=0;const M=c.length;let A=o.length-1,I=M-1;for(;_<=A&&_<=I;){const L=o[_],k=c[_]=C?ke(c[_]):Ce(c[_]);if(Je(L,k))P(L,k,a,null,h,y,T,b,C);else break;_++}for(;_<=A&&_<=I;){const L=o[A],k=c[I]=C?ke(c[I]):Ce(c[I]);if(Je(L,k))P(L,k,a,null,h,y,T,b,C);else break;A--,I--}if(_>A){if(_<=I){const L=I+1,k=L<M?c[L].el:p;for(;_<=I;)P(null,c[_]=C?ke(c[_]):Ce(c[_]),a,k,h,y,T,b,C),_++}}else if(_>I)for(;_<=A;)Ae(o[_],h,y,!0),_++;else{const L=_,k=_,J=new Map;for(_=k;_<=I;_++){const pe=c[_]=C?ke(c[_]):Ce(c[_]);pe.key!=null&&J.set(pe.key,_)}let Y,ne=0;const xe=I-k+1;let Ge=!1,Yn=0;const ut=new Array(xe);for(_=0;_<xe;_++)ut[_]=0;for(_=L;_<=A;_++){const pe=o[_];if(ne>=xe){Ae(pe,h,y,!0);continue}let Me;if(pe.key!=null)Me=J.get(pe.key);else for(Y=k;Y<=I;Y++)if(ut[Y-k]===0&&Je(pe,c[Y])){Me=Y;break}Me===void 0?Ae(pe,h,y,!0):(ut[Me-k]=_+1,Me>=Yn?Yn=Me:Ge=!0,P(pe,c[Me],a,null,h,y,T,b,C),ne++)}const qn=Ge?ti(ut):et;for(Y=qn.length-1,_=xe-1;_>=0;_--){const pe=k+_,Me=c[pe],Jn=pe+1<M?c[pe+1].el:p;ut[_]===0?P(null,Me,a,Jn,h,y,T,b,C):Ge&&(Y<0||_!==qn[Y]?We(Me,a,Jn,2):Y--)}}},We=(o,c,a,p,h=null)=>{const{el:y,type:T,transition:b,children:C,shapeFlag:_}=o;if(_&6){We(o.component.subTree,c,a,p);return}if(_&128){o.suspense.move(c,a,p);return}if(_&64){T.move(o,c,a,Xe);return}if(T===de){s(y,c,a);for(let A=0;A<C.length;A++)We(C[A],c,a,p);s(o.anchor,c,a);return}if(T===jt){O(o,c,a);return}if(p!==2&&_&1&&b)if(p===0)b.beforeEnter(y),s(y,c,a),ae(()=>b.enter(y),h);else{const{leave:A,delayLeave:I,afterLeave:L}=b,k=()=>s(y,c,a),J=()=>{A(y,()=>{k(),L&&L()})};I?I(y,k,J):J()}else s(y,c,a)},Ae=(o,c,a,p=!1,h=!1)=>{const{type:y,props:T,ref:b,children:C,dynamicChildren:_,shapeFlag:M,patchFlag:A,dirs:I}=o;if(b!=null&&Kt(b,null,a,o,!0),M&256){c.ctx.deactivate(o);return}const L=M&1&&I,k=!rt(o);let J;if(k&&(J=T&&T.onVnodeBeforeUnmount)&&ye(J,c,o),M&6)xr(o.component,a,p);else{if(M&128){o.suspense.unmount(a,p);return}L&&Ie(o,null,c,"beforeUnmount"),M&64?o.type.remove(o,c,a,h,Xe,p):_&&(y!==de||A>0&&A&64)?Re(_,c,a,!1,!0):(y===de&&A&384||!h&&M&16)&&Re(C,c,a),p&&Wn(o)}(k&&(J=T&&T.onVnodeUnmounted)||L)&&ae(()=>{J&&ye(J,c,o),L&&Ie(o,null,c,"unmounted")},a)},Wn=o=>{const{type:c,el:a,anchor:p,transition:h}=o;if(c===de){yr(a,p);return}if(c===jt){H(o);return}const y=()=>{r(a),h&&!h.persisted&&h.afterLeave&&h.afterLeave()};if(o.shapeFlag&1&&h&&!h.persisted){const{leave:T,delayLeave:b}=h,C=()=>T(a,y);b?b(o.el,y,C):C()}else y()},yr=(o,c)=>{let a;for(;o!==c;)a=w(o),r(o),o=a;r(c)},xr=(o,c,a)=>{const{bum:p,scope:h,update:y,subTree:T,um:b}=o;p&&on(p),h.stop(),y&&(y.active=!1,Ae(T,o,c,a)),b&&ae(b,c),ae(()=>{o.isUnmounted=!0},c),c&&c.pendingBranch&&!c.isUnmounted&&o.asyncDep&&!o.asyncResolved&&o.suspenseId===c.pendingId&&(c.deps--,c.deps===0&&c.resolve())},Re=(o,c,a,p=!1,h=!1,y=0)=>{for(let T=y;T<o.length;T++)Ae(o[T],c,a,p,h)},wt=o=>o.shapeFlag&6?wt(o.component.subTree):o.shapeFlag&128?o.suspense.next():w(o.anchor||o.el),Vn=(o,c,a)=>{o==null?c._vnode&&Ae(c._vnode,null,null,!0):P(c._vnode||null,o,c,null,null,null,a),ss(),Bt(),c._vnode=o},Xe={p:P,um:Ae,m:We,r:Wn,mt:j,mc:F,pc:q,pbc:D,n:wt,o:e};let sn,rn;return t&&([sn,rn]=t(Xe)),{render:Vn,hydrate:sn,createApp:Gl(Vn,sn)}}function Ve({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function ur(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let l=0;l<s.length;l++){const i=s[l];let f=r[l];f.shapeFlag&1&&!f.dynamicChildren&&((f.patchFlag<=0||f.patchFlag===32)&&(f=r[l]=ke(r[l]),f.el=i.el),n||ur(i,f)),f.type===it&&(f.el=i.el)}}function ti(e){const t=e.slice(),n=[0];let s,r,l,i,f;const u=e.length;for(s=0;s<u;s++){const d=e[s];if(d!==0){if(r=n[n.length-1],e[r]<d){t[s]=r,n.push(s);continue}for(l=0,i=n.length-1;l<i;)f=l+i>>1,e[n[f]]<d?l=f+1:i=f;d<e[n[l]]&&(l>0&&(t[s]=n[l-1]),n[l]=s)}}for(l=n.length,i=n[l-1];l-- >0;)n[l]=i,i=t[i];return n}const ni=e=>e.__isTeleport,de=Symbol(void 0),it=Symbol(void 0),_e=Symbol(void 0),jt=Symbol(void 0),pt=[];let Ee=null;function ar(e=!1){pt.push(Ee=e?null:[])}function si(){pt.pop(),Ee=pt[pt.length-1]||null}let yt=1;function hs(e){yt+=e}function dr(e){return e.dynamicChildren=yt>0?Ee||et:null,si(),yt>0&&Ee&&Ee.push(e),e}function Qi(e,t,n,s,r,l){return dr(gr(e,t,n,s,r,l,!0))}function hr(e,t,n,s,r){return dr(ce(e,t,n,s,r,!0))}function St(e){return e?e.__v_isVNode===!0:!1}function Je(e,t){return e.type===t.type&&e.key===t.key}const tn="__vInternal",pr=({key:e})=>e??null,Lt=({ref:e,ref_key:t,ref_for:n})=>e!=null?ie(e)||re(e)||U(e)?{i:le,r:e,k:t,f:!!n}:e:null;function gr(e,t=null,n=null,s=0,r=null,l=e===de?0:1,i=!1,f=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&pr(t),ref:t&&Lt(t),scopeId:Ws,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:l,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:le};return f?(Sn(u,n),l&128&&e.normalize(u)):n&&(u.shapeFlag|=ie(n)?8:16),yt>0&&!i&&Ee&&(u.patchFlag>0||l&6)&&u.patchFlag!==32&&Ee.push(u),u}const ce=ri;function ri(e,t=null,n=null,s=0,r=null,l=!1){if((!e||e===Gs)&&(e=_e),St(e)){const f=Ke(e,t,!0);return n&&Sn(f,n),yt>0&&!l&&Ee&&(f.shapeFlag&6?Ee[Ee.indexOf(e)]=f:Ee.push(f)),f.patchFlag|=-2,f}if(_i(e)&&(e=e.__vccOpts),t){t=li(t);let{class:f,style:u}=t;f&&!ie(f)&&(t.class=Vt(f)),X(u)&&(Ns(u)&&!N(u)&&(u=he({},u)),t.style=Wt(u))}const i=ie(e)?1:Ol(e)?128:ni(e)?64:X(e)?4:U(e)?2:0;return gr(e,t,n,s,r,i,l,!0)}function li(e){return e?Ns(e)||tn in e?he({},e):e:null}function Ke(e,t,n=!1){const{props:s,ref:r,patchFlag:l,children:i}=e,f=t?ii(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&pr(f),ref:t&&t.ref?n&&r?N(r)?r.concat(Lt(t)):[r,Lt(t)]:Lt(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==de?l===-1?16:l|16:l,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ke(e.ssContent),ssFallback:e.ssFallback&&Ke(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function _r(e=" ",t=0){return ce(it,null,e,t)}function Xi(e="",t=!1){return t?(ar(),hr(_e,null,e)):ce(_e,null,e)}function Ce(e){return e==null||typeof e=="boolean"?ce(_e):N(e)?ce(de,null,e.slice()):typeof e=="object"?ke(e):ce(it,null,String(e))}function ke(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ke(e)}function Sn(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Sn(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(tn in t)?t._ctx=le:r===3&&le&&(le.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else U(t)?(t={default:t,_ctx:le},n=32):(t=String(t),s&64?(n=16,t=[_r(t)]):n=8);e.children=t,e.shapeFlag|=n}function ii(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=Vt([t.class,s.class]));else if(r==="style")t.style=Wt([t.style,s.style]);else if(Yt(r)){const l=t[r],i=s[r];i&&l!==i&&!(N(l)&&l.includes(i))&&(t[r]=l?[].concat(l,i):i)}else r!==""&&(t[r]=s[r])}return t}function ye(e,t,n,s=null){Fe(e,t,7,[n,s])}const oi=fr();let fi=0;function ci(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||oi,l={uid:fi++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Lr(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:rr(s,r),emitsOptions:Ss(s,r),emit:null,emitted:null,propsDefaults:Q,inheritAttrs:s.inheritAttrs,ctx:Q,data:Q,props:Q,attrs:Q,slots:Q,refs:Q,setupState:Q,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return l.ctx={_:l},l.root=t?t.root:l,l.emit=xl.bind(null,l),e.ce&&e.ce(l),l}let se=null;const ui=()=>se||le,ot=e=>{se=e,e.scope.on()},Qe=()=>{se&&se.scope.off(),se=null};function mr(e){return e.vnode.shapeFlag&4}let xt=!1;function ai(e,t=!1){xt=t;const{props:n,children:s}=e.vnode,r=mr(e);ql(e,n,r,t),Zl(e,s);const l=r?di(e,t):void 0;return xt=!1,l}function di(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Hs(new Proxy(e.ctx,$l));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?pi(e):null;ot(e),ft();const l=ve(s,e,0,[e.props,r]);if(ct(),Qe(),ys(l)){if(l.then(Qe,Qe),t)return l.then(i=>{ps(e,i,t)}).catch(i=>{Qt(i,e,0)});e.asyncDep=l}else ps(e,l,t)}else br(e,t)}function ps(e,t,n){U(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:X(t)&&(e.setupState=ks(t)),br(e,n)}let gs;function br(e,t,n){const s=e.type;if(!e.render){if(!t&&gs&&!s.render){const r=s.template||$n(e).template;if(r){const{isCustomElement:l,compilerOptions:i}=e.appContext.config,{delimiters:f,compilerOptions:u}=s,d=he(he({isCustomElement:l,delimiters:f},i),u);s.render=gs(r,d)}}e.render=s.render||Te}ot(e),ft(),Kl(e),ct(),Qe()}function hi(e){return new Proxy(e.attrs,{get(t,n){return me(e,"get","$attrs"),t[n]}})}function pi(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=hi(e))},slots:e.slots,emit:e.emit,expose:t}}function nn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(ks(Hs(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in ht)return ht[n](e)},has(t,n){return n in t||n in ht}}))}function gi(e,t=!0){return U(e)?e.displayName||e.name:e.name||t&&e.__name}function _i(e){return U(e)&&"__vccOpts"in e}const mi=(e,t)=>hl(e,t,xt);function Gi(e,t,n){const s=arguments.length;return s===2?X(t)&&!N(t)?St(t)?ce(e,null,[t]):ce(e,t):ce(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&St(n)&&(n=[n]),ce(e,t,n))}const bi=Symbol(""),yi=()=>Rt(bi),xi="3.2.45";let Nt,Ht;typeof window=="object"&&window?Ht=Nt=window:typeof process=="object"&&process.env?(Ht=global,Nt=process.env):Ht=Nt=typeof self=="object"&&self||{};const Ci="en_us",wi="USD",Ei="$",Ti="US",Fi=1011,Oi="5b1abe30a4d4531b8fe40725",Ai=e=>{if(typeof document=="object"&&document){const t=document.getElementsByTagName("meta");for(let n=0;n<t.length;n++)if(t[n].getAttribute("name")===e.replace(/_/g,"-")){const s=t[n].getAttribute("content");return e==="ecom_store_id"?parseInt(s,10):s}}return Nt[e.toUpperCase()]},En={};["lang","currency","currency_symbol","country_code","store_id","store_object_id"].forEach(e=>{En[e]=Ai("ecom_"+e)});const Ut={get(e){const t=En[e];if(t!=null&&t!=="")return t;switch(e){case"lang":return Ci;case"currency":return wi;case"currency_symbol":return Ei;case"country_code":return Ti;case"store_id":return Fi;case"store_object_id":return Oi}return null},set(e,t){En[e]=t}},Mi=e=>{if(typeof e!="object"||e===null)return console.error(new Error("`product` must be an object")),!1;let t=e.price_effective_date;if(t){let n=new Date;if(t.start&&new Date(t.start)>n||t.end&&new Date(t.end)<n)return!1}return e.base_price>e.price},Ii=Mi,Pi=e=>Ii(e)?e.price:e?typeof e.final_price=="number"?e.final_price:Math.max(e.base_price||0,e.price||0):0,Ri=Pi,ji=(e,t=Ut.get("currency"),n=Ut.get("lang"))=>{if(typeof e=="object"?e!==null&&(e=Ri(e)):typeof e=="string"&&(e=parseFloat(e)),t)try{return e.toLocaleString(n.replace("_","-"),{style:"currency",currency:t})}catch(r){console.error(r)}const s=(t||Ut.get("currency_symbol"))+" ";return typeof e=="number"?s+e:""},eo=ji;Ht.$ecomConfig;export{Le as $,Vt as A,Rt as B,vi as C,Zs as D,gl as E,Qs as F,Al as G,Wi as H,de as I,qi as J,U as K,ie as L,Gi as M,Ki as N,he as O,X as P,zi as Q,Zi as R,N as S,ws as T,$i as U,Xs as V,ui as W,jt as X,Yt as Y,ms as Z,zt as _,Ii as a,Mn as a0,Ni as a1,Hi as a2,Fe as a3,Ci as a4,Ut as a5,Qi as b,mi as c,Si as d,Xi as e,li as f,Ri as g,gr as h,_r as i,ce as j,Vi as k,Nn as l,ii as m,Li as n,ar as o,eo as p,Bi as q,Ji as r,hr as s,Ui as t,cl as u,Yi as v,Cl as w,Di as x,ki as y,cn as z};
@@ -0,0 +1 @@
1
+ import{l as h,u as y}from"./session-utm.ceebe967.js";import{l as g,c as b,p as d}from"./ecom-utils.cd6787a7.js";const v=(o,a,i=1e4)=>{let n,r;i&&(n=new AbortController,r=setTimeout(()=>{n.abort()},i)),a?.body&&typeof a.body=="object"&&(a.body=JSON.stringify(a.body),a.headers={...a.headers,"Content-Type":"application/json","Content-Length":a.body.length.toString()});const l=fetch(o,{...a,signal:n?.signal});return l.finally(()=>{r&&clearTimeout(r)}),l},I={list_payments:{},calculate_shipping:{},apply_discount:{}},p=g(I);h.then(o=>{Object.assign(p,o)});{const o="MODULES_INFO",a=sessionStorage.getItem(o);if(a)try{const n=JSON.parse(a);n.__timestamp>=Date.now()-1e3*60*5?(delete n.__timestamp,Object.assign(p,n)):sessionStorage.removeItem(o)}catch{sessionStorage.removeItem(o)}const i=()=>{const n=[];["list_payments","calculate_shipping"].forEach(r=>{Object.keys(p[r]).length||n.push({modName:r})}),Object.keys(y).length&&n.push({modName:"apply_discount",reqOptions:{method:"post",body:{utm:y}}}),n.forEach(({modName:r,reqOptions:l})=>{v(`/api/modules/${r}`,l).then(async f=>{if(f.ok){const s={};p[r]=s;const{result:u}=await f.json();Array.isArray(u)&&u.forEach(({error:_,response:c})=>{if(!_){let e,t;switch(r){case"calculate_shipping":e="free_shipping_from_value",t=c[e],typeof t=="number"&&(s[e]===void 0||t<s[e])&&(s[e]=t);break;case"list_payments":e="installments_option",t=c[e],t&&(!s[e]||t.monthly_interest<s[e].monthly_interest||t.max_number>s[e].max_number)&&(s[e]=t),e="discount_option",t=c[e],t&&(!s[e]||t.value>s[e].value)&&c.payment_gateways.forEach(({discount:m})=>{m&&m.apply_at!=="freight"&&m.value===t.value&&(s[e]={apply_at:m.apply_at,...t})}),e="loyalty_points_programs",t=c[e],t&&(s[e]={...s[e],...t});break;default:e="available_extra_discount",t=c[e],t&&(!s[e]||t.value>s[e].value)&&(s[e]=t)}}}),sessionStorage.setItem(o,JSON.stringify({...p,__timestamp:Date.now()}))}}).catch(console.error)})};typeof window.requestIdleCallback=="function"?window.requestIdleCallback(i):setTimeout(i,300)}const O=(o,a,i,n=d)=>b(()=>{const r=`{{${i}}}`,l=o.indexOf(r);if(l>-1){const f=p[a][i];if(f){const s=n(f);return o.substring(0,l)+s+o.substring(l+r.length)}return""}return o}),j=o=>O(o,"calculate_shipping","free_shipping_from_value");export{p as m,j as p};
@@ -0,0 +1 @@
1
+ import{K as nt,L as _,M as ht,N as st,O as R,P as Ct,Q as St,R as bt,S as w,T as vt,U as Et,D as Tt,V as At,W as Nt,I as Lt,X as _t,Y as wt,Z as It,_ as rt,$ as Ot,a0 as Pt,a1 as Dt,a2 as it,a3 as Mt}from"./ecom-utils.cd6787a7.js";const $t="http://www.w3.org/2000/svg",v=typeof document<"u"?document:null,j=v&&v.createElement("template"),Bt={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,s)=>{const r=e?v.createElementNS($t,t):v.createElement(t,n?{is:n}:void 0);return t==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:t=>v.createTextNode(t),createComment:t=>v.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>v.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,s,r,o){const a=n?n.previousSibling:e.lastChild;if(r&&(r===o||r.nextSibling))for(;e.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{j.innerHTML=s?`<svg>${t}</svg>`:t;const f=j.content;if(s){const c=f.firstChild;for(;c.firstChild;)f.appendChild(c.firstChild);f.removeChild(c)}e.insertBefore(f,n)}return[a?a.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Rt(t,e,n){const s=t._vtc;s&&(e=(e?[e,...s]:[...s]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function xt(t,e,n){const s=t.style,r=_(n);if(n&&!r){for(const o in n)M(s,o,n[o]);if(e&&!_(e))for(const o in e)n[o]==null&&M(s,o,"")}else{const o=s.display;r?e!==n&&(s.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(s.display=o)}}const X=/\s*!important$/;function M(t,e,n){if(w(n))n.forEach(s=>M(t,e,s));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const s=yt(t,e);X.test(n)?t.setProperty(rt(s),n.replace(X,""),"important"):t[s]=n}}const K=["Webkit","Moz","ms"],O={};function yt(t,e){const n=O[e];if(n)return n;let s=Ot(e);if(s!=="filter"&&s in t)return O[e]=s;s=Pt(s);for(let r=0;r<K.length;r++){const o=K[r]+s;if(o in t)return O[e]=o}return e}const Q="http://www.w3.org/1999/xlink";function Ft(t,e,n,s,r){if(s&&e.startsWith("xlink:"))n==null?t.removeAttributeNS(Q,e.slice(6,e.length)):t.setAttributeNS(Q,e,n);else{const o=Dt(e);n==null||o&&!it(n)?t.removeAttribute(e):t.setAttribute(e,o?"":n)}}function Ht(t,e,n,s,r,o,a){if(e==="innerHTML"||e==="textContent"){s&&a(s,r,o),t[e]=n??"";return}if(e==="value"&&t.tagName!=="PROGRESS"&&!t.tagName.includes("-")){t._value=n;const c=n??"";(t.value!==c||t.tagName==="OPTION")&&(t.value=c),n==null&&t.removeAttribute(e);return}let f=!1;if(n===""||n==null){const c=typeof t[e];c==="boolean"?n=it(n):n==null&&c==="string"?(n="",f=!0):c==="number"&&(n=0,f=!0)}try{t[e]=n}catch{}f&&t.removeAttribute(e)}function zt(t,e,n,s){t.addEventListener(e,n,s)}function qt(t,e,n,s){t.removeEventListener(e,n,s)}function Wt(t,e,n,s,r=null){const o=t._vei||(t._vei={}),a=o[e];if(s&&a)a.value=s;else{const[f,c]=Ut(e);if(s){const p=o[e]=Kt(s,r);zt(t,f,p,c)}else a&&(qt(t,f,a,c),o[e]=void 0)}}const Y=/(?:Once|Passive|Capture)$/;function Ut(t){let e;if(Y.test(t)){e={};let s;for(;s=t.match(Y);)t=t.slice(0,t.length-s[0].length),e[s[0].toLowerCase()]=!0}return[t[2]===":"?t.slice(3):rt(t.slice(2)),e]}let P=0;const jt=Promise.resolve(),Xt=()=>P||(jt.then(()=>P=0),P=Date.now());function Kt(t,e){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Mt(Qt(s,n.value),e,5,[s])};return n.value=t,n.attached=Xt(),n}function Qt(t,e){if(w(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(s=>r=>!r._stopped&&s&&s(r))}else return e}const Z=/^on[a-z]/,Yt=(t,e,n,s,r=!1,o,a,f,c)=>{e==="class"?Rt(t,s,r):e==="style"?xt(t,n,s):wt(e)?It(e)||Wt(t,e,n,s,a):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Zt(t,e,s,r))?Ht(t,e,s,o,a,f,c):(e==="true-value"?t._trueValue=s:e==="false-value"&&(t._falseValue=s),Ft(t,e,s,r))};function Zt(t,e,n,s){return s?!!(e==="innerHTML"||e==="textContent"||e in t&&Z.test(e)&&nt(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Z.test(e)&&_(n)?!1:e in t}function re(t){const e=Nt();if(!e)return;const n=e.ut=(r=t(e.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${e.uid}"]`)).forEach(o=>B(o,r))},s=()=>{const r=t(e.proxy);$(e.subTree,r),n(r)};Et(s),Tt(()=>{const r=new MutationObserver(s);r.observe(e.subTree.el.parentNode,{childList:!0}),At(()=>r.disconnect())})}function $(t,e){if(t.shapeFlag&128){const n=t.suspense;t=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{$(n.activeBranch,e)})}for(;t.component;)t=t.component.subTree;if(t.shapeFlag&1&&t.el)B(t.el,e);else if(t.type===Lt)t.children.forEach(n=>$(n,e));else if(t.type===_t){let{el:n,anchor:s}=t;for(;n&&(B(n,e),n!==s);)n=n.nextSibling}}function B(t,e){if(t.nodeType===1){const n=t.style;for(const s in e)n.setProperty(`--${s}`,e[s])}}const g="transition",A="animation",ot=(t,{slots:e})=>ht(st,Gt(t),e);ot.displayName="Transition";const at={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};ot.props=R({},st.props,at);const S=(t,e=[])=>{w(t)?t.forEach(n=>n(...e)):t&&t(...e)},G=t=>t?w(t)?t.some(e=>e.length>1):t.length>1:!1;function Gt(t){const e={};for(const i in t)i in at||(e[i]=t[i]);if(t.css===!1)return e;const{name:n="v",type:s,duration:r,enterFromClass:o=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:f=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:p=a,appearToClass:l=f,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:E=`${n}-leave-to`}=t,T=Jt(r),lt=T&&T[0],ut=T&&T[1],{onBeforeEnter:x,onEnter:y,onEnterCancelled:F,onLeave:H,onLeaveCancelled:pt,onBeforeAppear:dt=x,onAppear:mt=y,onAppearCancelled:gt=F}=e,I=(i,u,C)=>{b(i,u?l:f),b(i,u?p:a),C&&C()},z=(i,u)=>{i._isLeaving=!1,b(i,d),b(i,E),b(i,m),u&&u()},q=i=>(u,C)=>{const W=i?mt:y,U=()=>I(u,i,C);S(W,[u,U]),J(()=>{b(u,i?c:o),h(u,i?l:f),G(W)||V(u,s,lt,U)})};return R(e,{onBeforeEnter(i){S(x,[i]),h(i,o),h(i,a)},onBeforeAppear(i){S(dt,[i]),h(i,c),h(i,p)},onEnter:q(!1),onAppear:q(!0),onLeave(i,u){i._isLeaving=!0;const C=()=>z(i,u);h(i,d),te(),h(i,m),J(()=>{!i._isLeaving||(b(i,d),h(i,E),G(H)||V(i,s,ut,C))}),S(H,[i,C])},onEnterCancelled(i){I(i,!1),S(F,[i])},onAppearCancelled(i){I(i,!0),S(gt,[i])},onLeaveCancelled(i){z(i),S(pt,[i])}})}function Jt(t){if(t==null)return null;if(Ct(t))return[D(t.enter),D(t.leave)];{const e=D(t);return[e,e]}}function D(t){return vt(t)}function h(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function b(t,e){e.split(/\s+/).forEach(s=>s&&t.classList.remove(s));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function J(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Vt=0;function V(t,e,n,s){const r=t._endId=++Vt,o=()=>{r===t._endId&&s()};if(n)return setTimeout(o,n);const{type:a,timeout:f,propCount:c}=kt(t,e);if(!a)return s();const p=a+"end";let l=0;const d=()=>{t.removeEventListener(p,m),o()},m=E=>{E.target===t&&++l>=c&&d()};setTimeout(()=>{l<c&&d()},f+1),t.addEventListener(p,m)}function kt(t,e){const n=window.getComputedStyle(t),s=T=>(n[T]||"").split(", "),r=s(`${g}Delay`),o=s(`${g}Duration`),a=k(r,o),f=s(`${A}Delay`),c=s(`${A}Duration`),p=k(f,c);let l=null,d=0,m=0;e===g?a>0&&(l=g,d=a,m=o.length):e===A?p>0&&(l=A,d=p,m=c.length):(d=Math.max(a,p),l=d>0?a>p?g:A:null,m=l?l===g?o.length:c.length:0);const E=l===g&&/\b(transform|all)(,|$)/.test(s(`${g}Property`).toString());return{type:l,timeout:d,propCount:m,hasTransform:E}}function k(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max(...e.map((n,s)=>tt(n)+tt(t[s])))}function tt(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function te(){return document.body.offsetHeight}const ie={beforeMount(t,{value:e},{transition:n}){t._vod=t.style.display==="none"?"":t.style.display,n&&e?n.beforeEnter(t):N(t,e)},mounted(t,{value:e},{transition:n}){n&&e&&n.enter(t)},updated(t,{value:e,oldValue:n},{transition:s}){!e!=!n&&(s?e?(s.beforeEnter(t),N(t,!0),s.enter(t)):s.leave(t,()=>{N(t,!1)}):N(t,e))},beforeUnmount(t,{value:e}){N(t,e)}};function N(t,e){t.style.display=e?t._vod:"none"}const ct=R({patchProp:Yt},Bt);let L,et=!1;function ee(){return L||(L=St(ct))}function ne(){return L=et?L:bt(ct),et=!0,L}const oe=(...t)=>{const e=ee().createApp(...t),{mount:n}=e;return e.mount=s=>{const r=ft(s);if(!r)return;const o=e._component;!nt(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const a=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),a},e},ae=(...t)=>{const e=ne().createApp(...t),{mount:n}=e;return e.mount=s=>{const r=ft(s);if(r)return n(r,!0,r instanceof SVGElement)},e};function ft(t){return _(t)?document.querySelector(t):t}export{ot as T,ae as a,oe as c,re as u,ie as v};
@@ -0,0 +1 @@
1
+ const c=s=>Object.values(s).filter(t=>t).length,p=(s=globalThis.storefront.settings.modules)=>{const t={};if(s){const e=s.list_payments;if(e){const o=e.discount_option;o&&c(o)&&(t.list_payments={discount_option:o});const a=e.installments_option;a?.max_number&&(t.list_payments||(t.list_payments={}),t.list_payments.installments_option=a);const r=e.loyalty_points_programs||{};if(!Object.keys(r).length){const i={...e.loyalty_points_program};if(i?.id&&i.ratio){const{id:m}=i;delete i.id,r[m]=i}}Object.keys(r).length&&(t.list_payments||(t.list_payments={}),t.list_payments.loyalty_points_programs=r)}const n=s.calculate_shipping;n&&n.free_shipping_from_value&&(t.calculate_shipping=n)}return t},g=new Promise(s=>{window.storefront.modulesInfoPreset=p(),s(window.storefront.modulesInfoPreset)});let l={};{const s="ecomUtm";l=JSON.parse(sessionStorage.getItem(s))||{};let t;const e=new URLSearchParams(window.location.search);["source","medium","campaign","term","content"].forEach(n=>{const o=e.get(`utm_${n}`);typeof o=="string"&&(l[n]=o,t=!0)}),t&&sessionStorage.setItem(s,JSON.stringify(l))}const f=l;export{g as l,f as u};
@@ -0,0 +1 @@
1
+ import{T as x,u as B,c as H,a as O}from"./chunks/runtime-dom.esm-bundler.923790dc.js";import{a4 as P,a5 as W,d as v,c as o,s as j,w as z,o as b,r as w,u as i,b as M,p as q,M as h}from"./chunks/ecom-utils.cd6787a7.js";/* empty css */const _=(t,e=W.get("lang"))=>{if(typeof t=="object"&&t!==null){const s=Object.keys(t)[0];if(/^[a-z]{2}(_[a-z]{2})?$/.test(s))return t[e]||t[P]||t[s];{const r=Array.isArray(t)?[]:{};for(const a in t)t[a]!==void 0&&(r[a]=_(t[a],e));return r}}return t},D=_,I=v({__name:"Fade",props:{speed:{default:"default"},slide:null,isLeaveTo:{type:Boolean,default:!0},isEnterFrom:{type:Boolean,default:!0}},setup(t){const e=t;B(n=>({de1ebbd6:i(A),fb017372:i(s),a7913688:i(f),"44556fdd":i(l),b31f6b54:i(T),"77b9da92":i(S),"764bb2e8":i(c),"816204a6":i(p),"5ef3e2f4":i(F),"7b2c0887":i($)}));const s=o(()=>e.speed==="default"?"var(--transition, .2s linear)":`var(--transition-${e.speed}, .4s linear)`),r=o(()=>{switch(e.slide){case"down":return"translate3d(0, -100%, 0)";case"left":return"translate3d(-100%, 0, 0)";case"right":return"translate3d(100%, 0, 0)";case"up":return"translate3d(0, 100%, 0)";default:return"none"}}),a=o(()=>r.value!=="none"?.1:0),f=o(()=>e.isEnterFrom?a.value:1),c=o(()=>e.isLeaveTo?a.value:1),l=o(()=>e.isEnterFrom?r.value:"none"),p=o(()=>e.isLeaveTo?r.value:"none"),u=o(()=>e.slide==="down"||e.slide==="up"),g=o(()=>u.value?0:"auto"),m=o(()=>e.slide&&!u.value?0:"auto"),T=o(()=>e.isEnterFrom?g.value:"auto"),F=o(()=>e.isLeaveTo?g.value:"auto"),S=o(()=>e.isEnterFrom?m.value:"auto"),$=o(()=>e.isLeaveTo?m.value:"auto"),A=o(()=>{let n="opacity";return r.value!=="none"&&(n+=", transform"),g.value!=="auto"&&(n+=", height"),m.value!=="auto"&&(n+=", width"),n}),L=n=>{if(e.slide){u.value?(n.style.width=getComputedStyle(n).width,n.style.height="auto"):(n.style.width="auto",n.style.height=getComputedStyle(n).height),n.style.position="absolute",n.style.visibility="hidden";const{width:d,height:C}=getComputedStyle(n);n.style.width=u.value?null:"0",n.style.height=u.value?"0":null,n.style.position=null,n.style.visibility=null,getComputedStyle(n)[u.value?"height":"width"],requestAnimationFrame(()=>{u.value?n.style.height=C:n.style.width=d})}},k=n=>{e.slide&&(n.style[u.value?"height":"width"]="auto")},E=n=>{if(e.slide){u.value?n.style.height=getComputedStyle(n).height:n.style.width=getComputedStyle(n).width;const d=u.value?"height":"width";getComputedStyle(n)[d],requestAnimationFrame(()=>{n.style[d]="0"})}};return(n,d)=>(b(),j(x,{name:"sf-fade",onEnter:L,onAfterEnter:k,onLeave:E},{default:z(()=>[w(n.$slots,"default",{},void 0,!0)]),_:3}))}}),N=(t,e)=>{const s=t.__vccOpts||t;for(const[r,a]of e)s[r]=a;return s},G=N(I,[["__scopeId","data-v-f3719df1"]]),R=["href","target","rel"],U=v({__name:"ALink",props:{href:null,target:null},setup(t){const e=t,s=o(()=>{if(e.target)return e.target;if(e.href.startsWith("http")&&globalThis.storefront.settings){const r=globalThis.storefront.settings.domain||window.location.host;if(e.href.startsWith(`https://${r}`))return null}return null});return(r,a)=>(b(),M("a",{href:t.href,target:i(s),rel:i(s)==="_blank"?"noopener":null},[w(r.$slots,"default")],8,R))}}),V=(t,e=1)=>Number.isInteger(t)?`${t}%`:`${t.toFixed(e)}%`,y=t=>{t.use({install:(e,s)=>{e.config.globalProperties.$t=(r,a)=>D(r,a||s?.lang),e.config.globalProperties.$money=q,e.config.globalProperties.$percentage=V}}),t.component("Fade",G),t.component("ALink",U)},Y=v({props:{value:String,name:String},setup({name:t,value:e}){return e?()=>h("astro-slot",{name:t,innerHTML:e}):()=>null}}),X=t=>async(e,s,r,{client:a})=>{if(delete s.class,!t.hasAttribute("ssr"))return;const f=e.name?`${e.name} Host`:void 0,c={};for(const[l,p]of Object.entries(r))c[l]=()=>h(Y,{value:p,name:l==="default"?void 0:l});if(a==="only"){const l=H({name:f,render:()=>h(e,s,c)});await y(l),l.mount(t,!1)}else{const l=O({name:f,render:()=>h(e,s,c)});await y(l),l.mount(t,!0)}};export{X as default};
@@ -1 +1 @@
1
- import"./chunks/session-utm.2de8b604.js";const h="modulepreload",g=function(a){return"/"+a},m={},v=function(c,d,u){if(!d||d.length===0)return c();const l=document.getElementsByTagName("link");return Promise.all(d.map(e=>{if(e=g(e),e in m)return;m[e]=!0;const n=e.endsWith(".css"),o=n?'[rel="stylesheet"]':"";if(!!u)for(let i=l.length-1;i>=0;i--){const s=l[i];if(s.href===e&&(!n||s.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${e}"]${o}`))return;const t=document.createElement("link");if(t.rel=n?"stylesheet":h,n||(t.as="script",t.crossOrigin=""),t.href=e,document.head.appendChild(t),n)return new Promise((i,s)=>{t.addEventListener("load",i),t.addEventListener("error",()=>s(new Error(`Unable to preload CSS for ${e}`)))})})).then(()=>c())};function E(a={}){const{immediate:c=!1,onNeedRefresh:d,onOfflineReady:u,onRegistered:l,onRegisteredSW:e,onRegisterError:n}=a;let o,f;const t=async(s=!0)=>{await f};async function i(){if("serviceWorker"in navigator){const{Workbox:s}=await v(()=>import("./chunks/workbox-window.prod.es5.10f2e5ac.js"),[]);o=new s("/sw.js",{scope:"/",type:"classic"}),o.addEventListener("activated",r=>{(r.isUpdate||r.isExternal)&&window.location.reload()}),o.addEventListener("installed",r=>{r.isUpdate||u?.()}),o.register({immediate:c}).then(r=>{e?e("/sw.js",r):l?.(r)}).catch(r=>{n?.(r)})}}return f=i(),t}E({immediate:!0});
1
+ import"./chunks/session-utm.ceebe967.js";const h="modulepreload",g=function(a){return"/"+a},m={},v=function(c,d,u){if(!d||d.length===0)return c();const l=document.getElementsByTagName("link");return Promise.all(d.map(e=>{if(e=g(e),e in m)return;m[e]=!0;const n=e.endsWith(".css"),o=n?'[rel="stylesheet"]':"";if(!!u)for(let i=l.length-1;i>=0;i--){const s=l[i];if(s.href===e&&(!n||s.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${e}"]${o}`))return;const t=document.createElement("link");if(t.rel=n?"stylesheet":h,n||(t.as="script",t.crossOrigin=""),t.href=e,document.head.appendChild(t),n)return new Promise((i,s)=>{t.addEventListener("load",i),t.addEventListener("error",()=>s(new Error(`Unable to preload CSS for ${e}`)))})})).then(()=>c())};function E(a={}){const{immediate:c=!1,onNeedRefresh:d,onOfflineReady:u,onRegistered:l,onRegisteredSW:e,onRegisterError:n}=a;let o,f;const t=async(s=!0)=>{await f};async function i(){if("serviceWorker"in navigator){const{Workbox:s}=await v(()=>import("./chunks/workbox-window.prod.es5.10f2e5ac.js"),[]);o=new s("/sw.js",{scope:"/",type:"classic"}),o.addEventListener("activated",r=>{(r.isUpdate||r.isExternal)&&window.location.reload()}),o.addEventListener("installed",r=>{r.isUpdate||u?.()}),o.register({immediate:c}).then(r=>{e?e("/sw.js",r):l?.(r)}).catch(r=>{n?.(r)})}}return f=i(),t}E({immediate:!0});
@@ -1 +1 @@
1
- if(!self.define){let e,s={};const n=(n,r)=>(n=new URL(n+".js",r).href,s[n]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=n,e.onload=s,document.head.appendChild(e)}else e=n,importScripts(n),s()})).then((()=>{let e=s[n];if(!e)throw new Error(`Module ${n} didn’t register its module`);return e})));self.define=(r,i)=>{const u=e||("document"in self?document.currentScript.src:"")||location.href;if(s[u])return;let o={};const a=e=>n(e,u),l={module:{uri:u},exports:o,require:a};s[u]=Promise.all(r.map((e=>l[e]||a(e)))).then((e=>(i(...e),o)))}}define(["./workbox-e2ee76b5"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"assets/_...slug_.fea84512.css",revision:null},{url:"assets/index.90df622b.css",revision:null},{url:"assets/server.4d9646d8.css",revision:null},{url:"chunks/ecom-utils.63984324.js",revision:null},{url:"chunks/Prices.vue_vue_type_script_setup_true_lang.781b6501.js",revision:null},{url:"chunks/runtime-core.esm-bundler.fa6cdb60.js",revision:null},{url:"chunks/session-utm.2de8b604.js",revision:null},{url:"chunks/workbox-window.prod.es5.10f2e5ac.js",revision:null},{url:"client.367a6497.js",revision:null},{url:"hoisted.4671ed15.js",revision:null},{url:"PitchBar.afe7ff5c.js",revision:null},{url:"Prices.eaf8a32c.js",revision:null},{url:"ProductCard.1106b153.js",revision:null},{url:"img/uploads/large-icon.png",revision:"0b35db516cfa7475b1c2f8c081e8d54d"},{url:"manifest.webmanifest",revision:"6a858866b0560997f368e27ab5418e15"}],{ignoreURLParametersMatching:[/.*/]}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("/404"))),e.registerRoute(/^\/$/,new e.NetworkFirst,"GET"),e.registerRoute(/\/((?!(?:admin|assets|img)(\/|$))[^.]+)(\.(?!js|css|xml|txt|png|jpg|jpeg|webp|avif|svg|gif)[^.]+)*$/,new e.NetworkFirst({cacheName:"pages",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/assets\//,new e.StaleWhileRevalidate({cacheName:"assets",plugins:[]}),"GET"),e.registerRoute(/^\/_image$/,new e.StaleWhileRevalidate({cacheName:"sharp-images",plugins:[new e.ExpirationPlugin({maxEntries:50,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/img\/uploads\/.*\.(?:png|jpg|jpeg|webp|avif|svg|gif)$/,new e.StaleWhileRevalidate({cacheName:"cms-images",plugins:[new e.ExpirationPlugin({maxEntries:20,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/ecomplus\.io/,new e.NetworkFirst({cacheName:"store-api",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/normal\//,new e.CacheFirst({cacheName:"product-thumbnails",plugins:[new e.ExpirationPlugin({maxEntries:100,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/big\//,new e.CacheFirst({cacheName:"product-pictures",plugins:[new e.ExpirationPlugin({maxEntries:10,maxAgeSeconds:604800,purgeOnQuotaError:!0})]}),"GET")}));
1
+ if(!self.define){let e,s={};const n=(n,r)=>(n=new URL(n+".js",r).href,s[n]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=n,e.onload=s,document.head.appendChild(e)}else e=n,importScripts(n),s()})).then((()=>{let e=s[n];if(!e)throw new Error(`Module ${n} didn’t register its module`);return e})));self.define=(r,i)=>{const u=e||("document"in self?document.currentScript.src:"")||location.href;if(s[u])return;let o={};const a=e=>n(e,u),l={module:{uri:u},exports:o,require:a};s[u]=Promise.all(r.map((e=>l[e]||a(e)))).then((e=>(i(...e),o)))}}define(["./workbox-e2ee76b5"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"assets/_...slug_.b701cbb1.css",revision:null},{url:"assets/index.90df622b.css",revision:null},{url:"assets/server.4d9646d8.css",revision:null},{url:"chunks/ecom-utils.cd6787a7.js",revision:null},{url:"chunks/modules-info.fcab5bba.js",revision:null},{url:"chunks/Prices.vue_vue_type_script_setup_true_lang.2d01aaa2.js",revision:null},{url:"chunks/runtime-dom.esm-bundler.923790dc.js",revision:null},{url:"chunks/session-utm.ceebe967.js",revision:null},{url:"chunks/workbox-window.prod.es5.10f2e5ac.js",revision:null},{url:"client.2356f675.js",revision:null},{url:"hoisted.11b849a7.js",revision:null},{url:"PitchBar.5ae15bda.js",revision:null},{url:"Prices.248d1aae.js",revision:null},{url:"ProductCard.4848304c.js",revision:null},{url:"img/uploads/large-icon.png",revision:"0b35db516cfa7475b1c2f8c081e8d54d"},{url:"manifest.webmanifest",revision:"6a858866b0560997f368e27ab5418e15"}],{ignoreURLParametersMatching:[/.*/]}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("/404"))),e.registerRoute(/^\/$/,new e.NetworkFirst,"GET"),e.registerRoute(/\/((?!(?:admin|assets|img)(\/|$))[^.]+)(\.(?!js|css|xml|txt|png|jpg|jpeg|webp|avif|svg|gif)[^.]+)*$/,new e.NetworkFirst({cacheName:"pages",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/assets\//,new e.StaleWhileRevalidate({cacheName:"assets",plugins:[]}),"GET"),e.registerRoute(/^\/_image$/,new e.StaleWhileRevalidate({cacheName:"sharp-images",plugins:[new e.ExpirationPlugin({maxEntries:50,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/img\/uploads\/.*\.(?:png|jpg|jpeg|webp|avif|svg|gif)$/,new e.StaleWhileRevalidate({cacheName:"cms-images",plugins:[new e.ExpirationPlugin({maxEntries:20,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/ecomplus\.io/,new e.NetworkFirst({cacheName:"store-api",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/normal\//,new e.CacheFirst({cacheName:"product-thumbnails",plugins:[new e.ExpirationPlugin({maxEntries:100,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/big\//,new e.CacheFirst({cacheName:"product-pictures",plugins:[new e.ExpirationPlugin({maxEntries:10,maxAgeSeconds:604800,purgeOnQuotaError:!0})]}),"GET")}));