{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/pgNoxrQfrBNKXPtOysLx/mRIiTQ2ct48086CTg39c/Add_To_Cart_Handler.js", "ssg:https://framerusercontent.com/modules/b8GUJltxMFjBlzxRyvfL/PTlAcmYRiNfGANV4LE9h/udHtvfp5q.js", "ssg:https://framerusercontent.com/modules/tYF01yzXXd6YQDmREauS/p2FfakAQgRN5uJ9JByEP/GnATfbg0g.js", "ssg:https://framerusercontent.com/modules/OrG37p7t7w6XQQvKIhor/x4oNdDO3gr0ts7RjlSzE/ClearCart.js", "ssg:https://framerusercontent.com/modules/FaJ3Vh5gDsAmggIjD9xL/qSCrE4IlVjiMCJARqlz2/Qph9aki1o.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";import{v4 as uuidv4}from\"uuid\";import{showToast}from\"https://framerusercontent.com/modules/lj00Q3wInJBZWKheG60j/vh88QF7LqxBW6kKoclXL/Toast.js\";/**\n * By FRAMAX\n */const STORE_ID=localStorage.getItem(\"ecommer-store-id\");const useStore=createStore({productId:\"\",productName:\"\",quantity:1,price:0,size:\"\",image:\"\",color:\"\"});/**\n * For quantity counter\n *///Increase quantitiy\nexport function forIncreaseQuantitiy(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{if(store.quantity<100){setStore({quantity:store.quantity+1});}}});};}//Decrease quantitiy\nexport function forDecreaseQuantity(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{if(store.quantity>1){setStore({quantity:store.quantity-1});}}});};}//Display updated quantity\nexport function forDisplayUpdatedQuantity(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,text:`${store.quantity} `});};}/**\n * For collecting product id\n */export function forProductId(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{setStore({productId:props.text});return()=>{setStore({productId:\"\"});};},[store.productId]);return /*#__PURE__*/_jsx(Component,{...props});};}/**\n * For collecting product name\n */export function forProductName(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{setStore({productName:props.text});return()=>{setStore({productName:\"\"});};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}/**\n * For collecting product price\n */export function forProductPrice(Component){return props=>{const[store,setStore]=useStore();const[currencyPosition,setCurrencyPosition]=useState(null);const[currencySymbol,setCurrencySymbol]=useState(\"\");useEffect(()=>{setStore({price:parseFloat(props.text)});//Currency preference\nsetCurrencyPosition(JSON.parse(localStorage.getItem(\"currency-position\")));setCurrencySymbol(localStorage.getItem(\"currency-symbol\"));return()=>{setStore({price:\"\",quantity:1});};},[]);return /*#__PURE__*/_jsx(Component,{...props,text:currencyPosition?`${currencySymbol||\"\u20BD\"}${props.text}`:`${props.text}${currencySymbol}`});};}/**\n * For handling size selection\n *///For size toggle switches\nexport function forSizeToggleSwitch(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{setStore({size:props.label});}});};}//For size selector component\nexport function forSizeSelector(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{setStore({size:props.sizeOption1});return()=>{setStore({size:\"\"});};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}/**\n * For collecting product featured image\n */export function forProductImage(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{setStore({image:props.featuredImage.src});return()=>{setStore({image:\"\"});};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}/**\n * For collecting proudct color\n *///For color selector switch\nexport function forColorSelectorSwitch(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{setStore({color:props===null||props===void 0?void 0:props.color});}});};}//For color selector component\nexport function forColorSelector(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{setStore({color:props.colorOption1});return()=>{setStore({color:\"\"});};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}/**\n * For handling add to cart feature\n */export function forAddToCartButton(Component){return props=>{const[store,setStore]=useStore();//Handle add to cart operation\nconst handleAddToCart=()=>{//Get existing saved data\nconst savedData=JSON.parse(localStorage.getItem(\"cart-items\"))||[];//Check for item duplication\n//Check if the item exist\nconst isItemExist=savedData.find(item=>item.productId===store.productId)&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size;})&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[1])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Color)===store.color;});if(isItemExist){//Get matched item for productId, size and color\nconst item=savedData.find(item=>{var _item_additionalData_,_item_additionalData,_item_additionalData_1,_item_additionalData1;return item.productId===store.productId&&((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size&&((_item_additionalData1=item.additionalData)===null||_item_additionalData1===void 0?void 0:(_item_additionalData_1=_item_additionalData1[1])===null||_item_additionalData_1===void 0?void 0:_item_additionalData_1.Color)===store.color;});//Update product state\nlet newTotalPrice;if(item.quantity>1e3){newTotalPrice=parseFloat(item.totalPrice);}else if(item.quantity+store.quantity>1e3){newTotalPrice=parseFloat(item.totalPrice)+store.price*(1e3-item.quantity);}else{newTotalPrice=parseFloat(item.totalPrice)+store.price*store.quantity;}item.quantity=item.quantity+store.quantity>1e3?1e3:item.quantity+store.quantity;item.totalPrice=newTotalPrice.toFixed(2);localStorage.setItem(\"cart-items\",JSON.stringify(savedData));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${store.quantity} \u0448\u0442.`);}else{//Save new data to local storage\nif(store.productId){const newItem={productId:store.productId,productName:store.productName,image:store.image,price:store.price,quantity:store.quantity,additionalData:[{Size:store.size},{Color:store.color}],totalPrice:parseFloat((store.price*store.quantity).toFixed(2)),uid:uuidv4(),storeId:STORE_ID};localStorage.setItem(\"cart-items\",JSON.stringify([...savedData,newItem]));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${store.quantity} \u0448\u0442.`);}}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleAddToCart});};}export function forAddToCartButtonTen(Component){return props=>{const[store,setStore]=useStore();//Handle add to cart operation\nconst handleAddToCart=()=>{//Get existing saved data\nconst savedData=JSON.parse(localStorage.getItem(\"cart-items\"))||[];//Check for item duplication\n//Check if the item exist\nconst isItemExist=savedData.find(item=>item.productId===store.productId)&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size;})&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[1])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Color)===store.color;});if(isItemExist){//Get matched item for productId, size and color\nconst item=savedData.find(item=>{var _item_additionalData_,_item_additionalData,_item_additionalData_1,_item_additionalData1;return item.productId===store.productId&&((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size&&((_item_additionalData1=item.additionalData)===null||_item_additionalData1===void 0?void 0:(_item_additionalData_1=_item_additionalData1[1])===null||_item_additionalData_1===void 0?void 0:_item_additionalData_1.Color)===store.color;});// \u0423\u0432\u0435\u043B\u0438\u0447\u0438\u0432\u0430\u0435\u043C \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043D\u0430 10\nlet quantityToAdd=10;let newTotalPrice;if(item.quantity>1e3){newTotalPrice=parseFloat(item.totalPrice);}else if(item.quantity+quantityToAdd>1e3){newTotalPrice=parseFloat(item.totalPrice)+store.price*(1e3-item.quantity);}else{newTotalPrice=parseFloat(item.totalPrice)+store.price*quantityToAdd;}item.quantity=item.quantity+quantityToAdd>1e3?1e3:item.quantity+quantityToAdd;item.totalPrice=newTotalPrice.toFixed(2);localStorage.setItem(\"cart-items\",JSON.stringify(savedData));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${quantityToAdd} \u0448\u0442.`);}else{//Save new data to local storage\nif(store.productId){const quantityToAdd=10;const newItem={productId:store.productId,productName:store.productName,image:store.image,price:store.price,quantity:quantityToAdd,additionalData:[{Size:store.size},{Color:store.color}],totalPrice:parseFloat((store.price*quantityToAdd).toFixed(2)),uid:uuidv4(),storeId:STORE_ID};localStorage.setItem(\"cart-items\",JSON.stringify([...savedData,newItem]));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${quantityToAdd} \u0448\u0442.`);}}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleAddToCart});};}export function forAddToCartButtonFifty(Component){return props=>{const[store,setStore]=useStore();//Handle add to cart operation\nconst handleAddToCart=()=>{//Get existing saved data\nconst savedData=JSON.parse(localStorage.getItem(\"cart-items\"))||[];//Check for item duplication\n//Check if the item exist\nconst isItemExist=savedData.find(item=>item.productId===store.productId)&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size;})&&savedData.find(item=>{var _item_additionalData_,_item_additionalData;return((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[1])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Color)===store.color;});if(isItemExist){//Get matched item for productId, size and color\nconst item=savedData.find(item=>{var _item_additionalData_,_item_additionalData,_item_additionalData_1,_item_additionalData1;return item.productId===store.productId&&((_item_additionalData=item.additionalData)===null||_item_additionalData===void 0?void 0:(_item_additionalData_=_item_additionalData[0])===null||_item_additionalData_===void 0?void 0:_item_additionalData_.Size)===store.size&&((_item_additionalData1=item.additionalData)===null||_item_additionalData1===void 0?void 0:(_item_additionalData_1=_item_additionalData1[1])===null||_item_additionalData_1===void 0?void 0:_item_additionalData_1.Color)===store.color;});// \u0423\u0432\u0435\u043B\u0438\u0447\u0438\u0432\u0430\u0435\u043C \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043D\u0430 10\nlet quantityToAdd=50;let newTotalPrice;if(item.quantity>1e3){newTotalPrice=parseFloat(item.totalPrice);}else if(item.quantity+quantityToAdd>1e3){newTotalPrice=parseFloat(item.totalPrice)+store.price*(1e3-item.quantity);}else{newTotalPrice=parseFloat(item.totalPrice)+store.price*quantityToAdd;}item.quantity=item.quantity+quantityToAdd>1e3?1e3:item.quantity+quantityToAdd;item.totalPrice=newTotalPrice.toFixed(2);localStorage.setItem(\"cart-items\",JSON.stringify(savedData));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${quantityToAdd} \u0448\u0442.`);}else{//Save new data to local storage\nif(store.productId){const quantityToAdd=50;const newItem={productId:store.productId,productName:store.productName,image:store.image,price:store.price,quantity:quantityToAdd,additionalData:[{Size:store.size},{Color:store.color}],totalPrice:parseFloat((store.price*quantityToAdd).toFixed(2)),uid:uuidv4(),storeId:STORE_ID};localStorage.setItem(\"cart-items\",JSON.stringify([...savedData,newItem]));//Notification\nshowToast(`\\xab${store.productName}\\xbb \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0432 \u043A\u043E\u0440\u0437\u0438\u043D\u0443. \u0412 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0435 ${quantityToAdd} \u0448\u0442.`);}}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleAddToCart});};}//Switch cart button variants based on product availability\nexport function forAddToCartButtonVariants(Component){return props=>{const[store,setStore]=useStore();const[isProductAvailable,setIsProductAvailable]=useState(false);useEffect(()=>{setIsProductAvailable(true);return()=>setIsProductAvailable(false);},[store.productId]);return /*#__PURE__*/_jsx(Component,{...props,variant:isProductAvailable?\"Default\":\"Disabled\"});};}/**\n * For displaying total cart items\n */export function forCartItemDisplay(Component){return props=>{const[totalProducts,setTotalProducts]=useState(0);useEffect(()=>{const updateItemsFromStorage=()=>{const savedData=JSON.parse(localStorage.getItem(\"cart-items\"))||[];setTotalProducts(savedData.length);};updateItemsFromStorage();const pollingInterval=setInterval(()=>{updateItemsFromStorage();},1e3);return()=>{clearInterval(pollingInterval);};},[]);return /*#__PURE__*/_jsx(Component,{...props,text:totalProducts.toString()});};}/**\n * For cart item display\n */export function forRenderingCheckoutElementsOnCondition(Component){return props=>{const[store,setStore]=useStore();const[isProductsExist,setIsproductExist]=useState(false);useEffect(()=>{const updateItemsFromStorage=()=>{const savedData=JSON.parse(localStorage.getItem(\"cart-items\"))||[];if(savedData.length>0){setIsproductExist(true);}};updateItemsFromStorage();const pollingInterval=setInterval(()=>{updateItemsFromStorage();},1e3);return()=>{clearInterval(pollingInterval);};},[]);return isProductsExist&&/*#__PURE__*/_jsx(Component,{...props});};}//For giving currency symbol\nexport function forCurrencySymbol(Component){return props=>{const priceValue=props===null||props===void 0?void 0:props.text;const[price,setPrice]=useState(priceValue);//Preferred currency data\nuseEffect(()=>{const currencySymbol=localStorage.getItem(\"currency-symbol\");const currencyPosition=JSON.parse(localStorage.getItem(\"currency-position\"));if(currencyPosition){setPrice(currencySymbol+priceValue);}else{setPrice(priceValue+currencySymbol);}},[]);return /*#__PURE__*/_jsx(Component,{...props,text:price});};}\nexport const __FramerMetadata__ = {\"exports\":{\"forCurrencySymbol\":{\"type\":\"reactHoc\",\"name\":\"forCurrencySymbol\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forAddToCartButtonVariants\":{\"type\":\"reactHoc\",\"name\":\"forAddToCartButtonVariants\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forDecreaseQuantity\":{\"type\":\"reactHoc\",\"name\":\"forDecreaseQuantity\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forProductPrice\":{\"type\":\"reactHoc\",\"name\":\"forProductPrice\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forIncreaseQuantitiy\":{\"type\":\"reactHoc\",\"name\":\"forIncreaseQuantitiy\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forAddToCartButtonFifty\":{\"type\":\"reactHoc\",\"name\":\"forAddToCartButtonFifty\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forSizeSelector\":{\"type\":\"reactHoc\",\"name\":\"forSizeSelector\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forProductId\":{\"type\":\"reactHoc\",\"name\":\"forProductId\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forColorSelector\":{\"type\":\"reactHoc\",\"name\":\"forColorSelector\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forAddToCartButtonTen\":{\"type\":\"reactHoc\",\"name\":\"forAddToCartButtonTen\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forRenderingCheckoutElementsOnCondition\":{\"type\":\"reactHoc\",\"name\":\"forRenderingCheckoutElementsOnCondition\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forColorSelectorSwitch\":{\"type\":\"reactHoc\",\"name\":\"forColorSelectorSwitch\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forDisplayUpdatedQuantity\":{\"type\":\"reactHoc\",\"name\":\"forDisplayUpdatedQuantity\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forSizeToggleSwitch\":{\"type\":\"reactHoc\",\"name\":\"forSizeToggleSwitch\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forProductImage\":{\"type\":\"reactHoc\",\"name\":\"forProductImage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forCartItemDisplay\":{\"type\":\"reactHoc\",\"name\":\"forCartItemDisplay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forAddToCartButton\":{\"type\":\"reactHoc\",\"name\":\"forAddToCartButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"forProductName\":{\"type\":\"reactHoc\",\"name\":\"forProductName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Add_To_Cart_Handler.map", "// Generated by Framer (1e08357)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Outfit-600\",\"GF;Outfit-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4S-EiAou6Y.woff2\",weight:\"900\"}]}];export const css=['.framer-QFAgW .framer-styles-preset-bq13po:not(.rich-text-wrapper), .framer-QFAgW .framer-styles-preset-bq13po.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, #232327); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-QFAgW .framer-styles-preset-bq13po:not(.rich-text-wrapper), .framer-QFAgW .framer-styles-preset-bq13po.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, #232327); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-QFAgW .framer-styles-preset-bq13po:not(.rich-text-wrapper), .framer-QFAgW .framer-styles-preset-bq13po.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, #232327); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-QFAgW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/b8GUJltxMFjBlzxRyvfL/PTlAcmYRiNfGANV4LE9h/udHtvfp5q.js\";const enabledGestures={uADsXFgc_:{hover:true},VEe2C13lI:{hover:true}};const cycleOrder=[\"uADsXFgc_\",\"VEe2C13lI\"];const serializationHash=\"framer-PItVe\";const variantClassNames={uADsXFgc_:\"framer-v-1u3bv1y\",VEe2C13lI:\"framer-v-rz7b2d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Primary:\"uADsXFgc_\",Secondary:\"VEe2C13lI\"};const getProps=({height,id,label,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,K3Hyf0dGu:link!==null&&link!==void 0?link:props.K3Hyf0dGu,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uADsXFgc_\",ZMcyYkf3A:(_ref1=label!==null&&label!==void 0?label:props.ZMcyYkf3A)!==null&&_ref1!==void 0?_ref1:\"Checkout with Stripe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,K3Hyf0dGu,ZMcyYkf3A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uADsXFgc_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:K3Hyf0dGu,nodeId:\"uADsXFgc_\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1u3bv1y\",className,classNames)} framer-1wo88z3`,\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"uADsXFgc_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(20, 20, 20)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},variants:{\"uADsXFgc_-hover\":{backgroundColor:\"rgb(38, 38, 38)\"},\"VEe2C13lI-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},VEe2C13lI:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"uADsXFgc_-hover\":{\"data-framer-name\":undefined},\"VEe2C13lI-hover\":{\"data-framer-name\":undefined},VEe2C13lI:{\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-115mtyk\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"uADsXFgc_FodTVwD7f\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vw1vjo\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"uADsXFgc_epBSHIFjg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0760290c-0963-4afd-8b72-f7c94940d48f, rgb(255, 255, 255)))\"},children:\"Checkout with Stripe\"})}),className:\"framer-x8ccut\",\"data-framer-name\":\"View All\",fonts:[\"FS;Montserrat-semibold\"],layoutDependency:layoutDependency,layoutId:\"uADsXFgc_Se58jQGE3\",style:{\"--extracted-r6o4lv\":\"var(--token-0760290c-0963-4afd-8b72-f7c94940d48f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:ZMcyYkf3A,variants:{VEe2C13lI:{\"--extracted-r6o4lv\":\"var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({VEe2C13lI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bq13po\",\"data-styles-preset\":\"udHtvfp5q\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39)))\"},children:\"Checkout with Framer form\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PItVe.framer-1wo88z3, .framer-PItVe .framer-1wo88z3 { display: block; }\",\".framer-PItVe.framer-1u3bv1y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PItVe .framer-115mtyk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; }\",\".framer-PItVe .framer-vw1vjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PItVe .framer-x8ccut { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PItVe.framer-1u3bv1y, .framer-PItVe .framer-115mtyk, .framer-PItVe .framer-vw1vjo { gap: 0px; } .framer-PItVe.framer-1u3bv1y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PItVe.framer-1u3bv1y > :first-child { margin-top: 0px; } .framer-PItVe.framer-1u3bv1y > :last-child { margin-bottom: 0px; } .framer-PItVe .framer-115mtyk > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-PItVe .framer-115mtyk > :first-child, .framer-PItVe .framer-vw1vjo > :first-child { margin-left: 0px; } .framer-PItVe .framer-115mtyk > :last-child, .framer-PItVe .framer-vw1vjo > :last-child { margin-right: 0px; } .framer-PItVe .framer-vw1vjo > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } }\",\".framer-PItVe.framer-v-1u3bv1y.hover .framer-115mtyk, .framer-PItVe.framer-v-rz7b2d.hover .framer-115mtyk { gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PItVe.framer-v-1u3bv1y.hover .framer-115mtyk { gap: 0px; } .framer-PItVe.framer-v-1u3bv1y.hover .framer-115mtyk > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-PItVe.framer-v-1u3bv1y.hover .framer-115mtyk > :first-child { margin-left: 0px; } .framer-PItVe.framer-v-1u3bv1y.hover .framer-115mtyk > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PItVe.framer-v-rz7b2d.hover .framer-115mtyk { gap: 0px; } .framer-PItVe.framer-v-rz7b2d.hover .framer-115mtyk > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-PItVe.framer-v-rz7b2d.hover .framer-115mtyk > :first-child { margin-left: 0px; } .framer-PItVe.framer-v-rz7b2d.hover .framer-115mtyk > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-PItVe[data-border=\"true\"]::after, .framer-PItVe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 202.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VEe2C13lI\":{\"layout\":[\"auto\",\"auto\"]},\"bfD4PStrq\":{\"layout\":[\"auto\",\"auto\"]},\"QKfEEP2Es\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"K3Hyf0dGu\":\"link\",\"ZMcyYkf3A\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGnATfbg0g=withCSS(Component,css,\"framer-PItVe\");export default FramerGnATfbg0g;FramerGnATfbg0g.displayName=\"Button (Checkout)\";FramerGnATfbg0g.defaultProps={height:47,width:202.5};addPropertyControls(FramerGnATfbg0g,{variant:{options:[\"uADsXFgc_\",\"VEe2C13lI\"],optionTitles:[\"Primary\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},K3Hyf0dGu:{title:\"Link\",type:ControlType.Link},ZMcyYkf3A:{defaultValue:\"Checkout with Stripe\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerGnATfbg0g,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGnATfbg0g\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VEe2C13lI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bfD4PStrq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QKfEEP2Es\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"K3Hyf0dGu\\\":\\\"link\\\",\\\"ZMcyYkf3A\\\":\\\"label\\\"}\",\"framerIntrinsicHeight\":\"47\",\"framerIntrinsicWidth\":\"202.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GnATfbg0g.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// ClearCart Code Override\nexport function ClearCart(){return{onClick:()=>{// \u0423\u0434\u0430\u043B\u044F\u0435\u043C \u0432\u0441\u0435 \u0438\u0437 LocalStorage\nlocalStorage.removeItem(\"cart-items\");// \u0421\u043E\u0437\u0434\u0430\u0435\u043C \u043A\u0430\u0441\u0442\u043E\u043C\u043D\u043E\u0435 \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \u0434\u043B\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u044F\nconst event=new CustomEvent(\"update-cart\");window.dispatchEvent(event)// \u041E\u0442\u043F\u0440\u0430\u0432\u043B\u044F\u0435\u043C \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F\n;// \u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u043C \u0443\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u0435, \u0447\u0442\u043E \u043A\u043E\u0440\u0437\u0438\u043D\u0430 \u043E\u0447\u0438\u0449\u0435\u043D\u0430\nalert(\"\u041A\u043E\u0440\u0437\u0438\u043D\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E \u043E\u0447\u0438\u0449\u0435\u043D\u0430!\");}};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withClearCart(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ClearCart(props)});};}withClearCart.displayName=\"ClearCart\";\nexport const __FramerMetadata__ = {\"exports\":{\"ClearCart\":{\"type\":\"override\",\"name\":\"ClearCart\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClearCart\":{\"type\":\"reactHoc\",\"name\":\"withClearCart\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ClearCart.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{forRenderingCheckoutElementsOnCondition}from\"https://framerusercontent.com/modules/pgNoxrQfrBNKXPtOysLx/mRIiTQ2ct48086CTg39c/Add_To_Cart_Handler.js\";import ButtonCheckout from\"https://framerusercontent.com/modules/tYF01yzXXd6YQDmREauS/p2FfakAQgRN5uJ9JByEP/GnATfbg0g.js\";import{forCartItemDisplay}from\"https://framerusercontent.com/modules/wAo2Z56qENHUC9DfgXGq/Kb9xQlDOLIlikt2IGJFi/Add_To_Cart_Handler.js\";import Cart_Preview from\"https://framerusercontent.com/modules/fSVqgCihUOsLPfLQO8KS/a9xHFff4YXlsIx28q8gy/Cart_Preview.js\";import{withClearCart}from\"https://framerusercontent.com/modules/OrG37p7t7w6XQQvKIhor/x4oNdDO3gr0ts7RjlSzE/ClearCart.js\";import{forItemCountDisplay,forProductPositionCountDisplay}from\"https://framerusercontent.com/modules/cETM4I8ZqWzV1MN57Piv/mSItvlcVUmIWGFEokwVf/Price_Calculation_Handler.js\";const RichTextForCartItemDisplay=forCartItemDisplay(RichText);const MotionDivWithClearCart=withClearCart(motion.div);const Cart_PreviewFonts=getFonts(Cart_Preview);const RichTextForItemCountDisplay=forItemCountDisplay(RichText);const RichTextForProductPositionCountDisplay=forProductPositionCountDisplay(RichText);const ButtonCheckoutFonts=getFonts(ButtonCheckout);const MotionDivForRenderingCheckoutElementsOnCondition=forRenderingCheckoutElementsOnCondition(motion.div);const cycleOrder=[\"GaXSNeC8H\",\"pc4OTiz6Q\",\"fgrlYkhod\"];const serializationHash=\"framer-b42SC\";const variantClassNames={fgrlYkhod:\"framer-v-1smi3y3\",GaXSNeC8H:\"framer-v-vxa0wk\",pc4OTiz6Q:\"framer-v-xslpyo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"fgrlYkhod\",Desktop:\"GaXSNeC8H\",Phone:\"pc4OTiz6Q\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"GaXSNeC8H\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GaXSNeC8H\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8w7xm7=activeVariantCallback(async(...args)=>{setVariant(\"fgrlYkhod\");});const onTap1vs7qht=activeVariantCallback(async(...args)=>{setVariant(\"pc4OTiz6Q\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fgrlYkhod\")return true;return false;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vxa0wk\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GaXSNeC8H\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.11)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({fgrlYkhod:{\"data-framer-name\":\"Variant 3\"},pc4OTiz6Q:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zeb3za\",layoutDependency:layoutDependency,layoutId:\"q7BNYKZHa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t5sm6y\",\"data-framer-name\":\"Cart\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YoEjFhIrr\",onTap:onTap8w7xm7,children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1ehl867\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"wgh0rRgcb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+13+2+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/S476IYqBikMamDhd4QrHUHc0wo.svg\"},className:\"framer-f7tpx2\",layoutDependency:layoutDependency,layoutId:\"x_cOfpS5B\",...addPropertyOverrides({fgrlYkhod:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-37+2+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/S476IYqBikMamDhd4QrHUHc0wo.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pvbwjq\",\"data-framer-name\":\"Count\",layoutDependency:layoutDependency,layoutId:\"nGDeP4Txb\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jifyqf\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Xh4tZtM38\",style:{backgroundColor:\"rgb(255, 18, 61)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(RichTextForCartItemDisplay,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0760290c-0963-4afd-8b72-f7c94940d48f, rgb(255, 255, 255)))\"},children:\"0\"})}),className:\"framer-14t5a0b\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"SsLKOpwXy\",style:{\"--extracted-r6o4lv\":\"var(--token-0760290c-0963-4afd-8b72-f7c94940d48f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(Link,{nodeId:\"kICPKRQ47\",...addPropertyOverrides({fgrlYkhod:{href:\"https://t.me/XYLINET_nezavod\"},pc4OTiz6Q:{href:\"https://t.me/XYLINET_nezavod\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+13+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dG0M0ecHoyZk3oJZDwbvfUs90w.svg\"},className:\"framer-xwitnk framer-k6pnbc\",layoutDependency:layoutDependency,layoutId:\"kICPKRQ47\",...addPropertyOverrides({fgrlYkhod:{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-37+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dG0M0ecHoyZk3oJZDwbvfUs90w.svg\"}},pc4OTiz6Q:{as:\"a\"}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v24doa\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nH2Wep3mk\",onTap:onTap1vs7qht,style:{backgroundColor:\"rgb(246, 246, 246)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b58s6s\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"gUg9r1ycy\",style:{borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11vg4v6\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"aNWgVd7OZ\",style:{backgroundColor:\"rgb(20, 20, 20)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pi3m50\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"dk7FzJABa\",style:{backgroundColor:\"rgb(20, 20, 20)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]}),/*#__PURE__*/_jsx(MotionDivWithClearCart,{className:\"framer-a1mqq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mjCH4_jkZ\",onTap:onTap1vs7qht,style:{backgroundColor:\"rgb(246, 246, 246)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ce36pt\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"ZQ9D3_ufF\",style:{borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4vc3bn\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"EdXL7QQgi\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M216 48h-40v-8a24 24 0 0 0-24-24h-48a24 24 0 0 0-24 24v8H40a8 8 0 0 0 0 16h8v144a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16V64h8a8 8 0 0 0 0-16ZM96 40a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v8H96Zm96 168H64V64h128Zm-80-104v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Zm48 0v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Z\"/></svg>',withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bqdyvd\",\"data-framer-name\":\"Cart Preview\",layoutDependency:layoutDependency,layoutId:\"h3vLBjXUc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zwc4t-container\",layoutDependency:layoutDependency,layoutId:\"CTj7i9Lfi-container\",children:/*#__PURE__*/_jsx(Cart_Preview,{height:\"100%\",id:\"CTj7i9Lfi\",layoutId:\"CTj7i9Lfi\",style:{height:\"100%\",width:\"100%\"},styles:{containerStyle:{dividerColor:\"rgb(234, 234, 234)\",emptyMessage:\"\u041A\u043E\u0440\u0437\u0438\u043D\u0430 \u043F\u0443\u0441\u0442\u0430!\",padding:\"20px 0px 20px 0px\"},imageStyle:{bgColor:\"rgb(246, 246, 246)\",fill:\"cover\",height:120,padding:\"13px 16px 13px 16px\",width:120},priceStyle:{color:\"rgb(61, 46, 46)\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"100%\"}},quantityCounterStyles:{borderColor:\"rgba(35, 35, 39, 0.2)\",buttonBGColor:\"rgb(245, 245, 245)\",textColor:\"rgb(35, 35, 39)\"},sizeStyle:{color:\"rgba(20, 20, 20, 0.5)\",colorIndicatorStyle:{height:14,radius:\"1000px\",width:14},font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"160%\"},labelColor:\"rgb(7, 7, 8)\"},titleStyle:{color:\"var(--token-58eefbe4-79da-45e5-8ca6-ff9f8cb43814, rgb(20, 20, 20))\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"}}},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-txbava\",\"data-framer-name\":\"Subtotal \",layoutDependency:layoutDependency,layoutId:\"HV5pstejk\",children:/*#__PURE__*/_jsxs(MotionDivForRenderingCheckoutElementsOnCondition,{className:\"framer-8yuw83\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"hvIN7cGvV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hd8tbi\",\"data-framer-name\":\"Price Calculation\",layoutDependency:layoutDependency,layoutId:\"g0fXVEWXK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n09bzd\",\"data-framer-name\":\"Line\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:436,layoutDependency:layoutDependency,layoutId:\"vCpwRMDjv\",svg:'<svg width=\"436\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#EAEAEA\" d=\"M0 .5h436\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iwlzif\",\"data-framer-name\":\"Total\",layoutDependency:layoutDependency,layoutId:\"KBAxYJCAq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(20, 20, 20, 0.6))\"},children:\"\u0412\u0441\u0435\u0433\u043E \u0442\u043E\u0432\u0430\u0440\u043E\u0432:\"})}),className:\"framer-rgsvy8\",fonts:[\"FS;Montserrat-medium\"],layoutDependency:layoutDependency,layoutId:\"LKQBUB4z6\",style:{\"--extracted-r6o4lv\":\"rgba(20, 20, 20, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextForItemCountDisplay,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39)))\"},children:\"$33.75\"})}),className:\"framer-1cmejqg\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"ibpE7zftZ\",style:{\"--extracted-r6o4lv\":\"var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijvyhq\",\"data-framer-name\":\"Total\",layoutDependency:layoutDependency,layoutId:\"i501w7O6t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39)))\"},children:\"\u0412\u0441\u0435\u0433\u043E \u043F\u043E\u0437\u0438\u0446\u0438\u0439:\"})}),className:\"framer-1f18csw\",fonts:[\"FS;Montserrat-semibold\"],layoutDependency:layoutDependency,layoutId:\"bNLVqsMMW\",style:{\"--extracted-r6o4lv\":\"var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextForProductPositionCountDisplay,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39)))\"},children:\"$33.75\"})}),className:\"framer-1rijcdj\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"HAiRGpmtr\",style:{\"--extracted-r6o4lv\":\"var(--token-2669bf0f-ec63-4c3d-854e-9e0e65e31b50, rgb(35, 35, 39))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HxKcLnp_J\"},implicitPathVariables:undefined},{href:{webPageId:\"HxKcLnp_J\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,...addPropertyOverrides({fgrlYkhod:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 24px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-0)/1)*1+0))/2+0+0)+40+287+0+0+0+73}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b8370z-container\",layoutDependency:layoutDependency,layoutId:\"DqF3IhoVS-container\",children:/*#__PURE__*/_jsx(ButtonCheckout,{height:\"100%\",id:\"DqF3IhoVS\",K3Hyf0dGu:resolvedLinks[0],layoutId:\"DqF3IhoVS\",style:{width:\"100%\"},variant:\"uADsXFgc_\",width:\"100%\",ZMcyYkf3A:\"\u041E\u0444\u043E\u0440\u043C\u0438\u0442\u044C \u0437\u0430\u043A\u0430\u0437\",...addPropertyOverrides({fgrlYkhod:{K3Hyf0dGu:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b42SC.framer-k6pnbc, .framer-b42SC .framer-k6pnbc { display: block; }\",\".framer-b42SC.framer-vxa0wk { height: 50px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b42SC .framer-zeb3za { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 13px; width: 100%; }\",\".framer-b42SC .framer-1t5sm6y { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-b42SC .framer-1ehl867 { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-b42SC .framer-f7tpx2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-b42SC .framer-pvbwjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: center; overflow: hidden; padding: 2px; position: absolute; right: -5px; top: -4px; width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b42SC .framer-jifyqf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b42SC .framer-14t5a0b, .framer-b42SC .framer-rgsvy8, .framer-b42SC .framer-1cmejqg, .framer-b42SC .framer-1f18csw, .framer-b42SC .framer-1rijcdj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-b42SC .framer-xwitnk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-b42SC .framer-v24doa { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: absolute; right: 10px; top: 10px; width: 30px; z-index: 1; }\",\".framer-b42SC .framer-b58s6s, .framer-b42SC .framer-1ce36pt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: -9px; overflow: hidden; position: absolute; right: -15px; top: -15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b42SC .framer-11vg4v6, .framer-b42SC .framer-pi3m50 { flex: none; height: 2px; left: calc(44.444444444444464% - 17px / 2); overflow: hidden; position: absolute; top: calc(55.55555555555558% - 2px / 2); width: 17px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b42SC .framer-a1mqq5 { aspect-ratio: 1 / 1; bottom: 0px; cursor: pointer; flex: none; left: -41px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 30px); z-index: 1; }\",\".framer-b42SC .framer-4vc3bn { aspect-ratio: 1 / 1; bottom: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 14px; position: absolute; width: 21px; }\",\".framer-b42SC .framer-bqdyvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1fr; justify-content: flex-start; left: calc(50.00000000000002% - 1fr / 2); overflow: hidden; padding: 40px 12px 50px 12px; position: absolute; top: 75px; width: 1fr; }\",\".framer-b42SC .framer-16zwc4t-container { flex: none; height: 287px; position: relative; width: 100%; }\",\".framer-b42SC .framer-txbava { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b42SC .framer-8yuw83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b42SC .framer-hd8tbi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 5px 0px 5px; position: relative; width: 350px; z-index: 1; }\",\".framer-b42SC .framer-n09bzd { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-b42SC .framer-1iwlzif, .framer-b42SC .framer-ijvyhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 26px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b42SC .framer-b8370z-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b42SC .framer-zeb3za, .framer-b42SC .framer-1t5sm6y, .framer-b42SC .framer-pvbwjq, .framer-b42SC .framer-jifyqf, .framer-b42SC .framer-bqdyvd, .framer-b42SC .framer-txbava, .framer-b42SC .framer-8yuw83, .framer-b42SC .framer-hd8tbi { gap: 0px; } .framer-b42SC .framer-zeb3za > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-b42SC .framer-zeb3za > :first-child, .framer-b42SC .framer-pvbwjq > :first-child, .framer-b42SC .framer-jifyqf > :first-child { margin-left: 0px; } .framer-b42SC .framer-zeb3za > :last-child, .framer-b42SC .framer-pvbwjq > :last-child, .framer-b42SC .framer-jifyqf > :last-child { margin-right: 0px; } .framer-b42SC .framer-1t5sm6y > *, .framer-b42SC .framer-bqdyvd > *, .framer-b42SC .framer-txbava > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b42SC .framer-1t5sm6y > :first-child, .framer-b42SC .framer-bqdyvd > :first-child, .framer-b42SC .framer-txbava > :first-child, .framer-b42SC .framer-8yuw83 > :first-child, .framer-b42SC .framer-hd8tbi > :first-child { margin-top: 0px; } .framer-b42SC .framer-1t5sm6y > :last-child, .framer-b42SC .framer-bqdyvd > :last-child, .framer-b42SC .framer-txbava > :last-child, .framer-b42SC .framer-8yuw83 > :last-child, .framer-b42SC .framer-hd8tbi > :last-child { margin-bottom: 0px; } .framer-b42SC .framer-pvbwjq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-b42SC .framer-jifyqf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-b42SC .framer-8yuw83 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-b42SC .framer-hd8tbi > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-b42SC.framer-v-xslpyo.framer-vxa0wk { max-width: 120px; width: 110px; }\",\".framer-b42SC.framer-v-xslpyo .framer-xwitnk { text-decoration: none; }\",\".framer-b42SC.framer-v-1smi3y3.framer-vxa0wk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; padding: 0px; width: 370px; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-zeb3za { bottom: 13px; order: 0; right: 0px; top: unset; width: unset; z-index: 1; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-1t5sm6y, .framer-b42SC.framer-v-1smi3y3 .framer-16zwc4t-container { order: 0; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-xwitnk { order: 2; text-decoration: none; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-v24doa, .framer-b42SC.framer-v-1smi3y3 .framer-txbava, .framer-b42SC.framer-v-1smi3y3 .framer-hd8tbi { order: 1; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-b58s6s, .framer-b42SC.framer-v-1smi3y3 .framer-1ce36pt { height: var(--framer-aspect-ratio-supported, 54px); }\",\".framer-b42SC.framer-v-1smi3y3 .framer-bqdyvd { flex: 1 0 0px; height: 1px; left: unset; order: 2; position: relative; top: unset; width: 100%; }\",\".framer-b42SC.framer-v-1smi3y3 .framer-b8370z-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b42SC.framer-v-1smi3y3.framer-vxa0wk { gap: 0px; } .framer-b42SC.framer-v-1smi3y3.framer-vxa0wk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-b42SC.framer-v-1smi3y3.framer-vxa0wk > :first-child { margin-top: 0px; } .framer-b42SC.framer-v-1smi3y3.framer-vxa0wk > :last-child { margin-bottom: 0px; } }\",'.framer-b42SC[data-border=\"true\"]::after, .framer-b42SC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pc4OTiz6Q\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"120px\",null,null]},\"fgrlYkhod\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQph9aki1o=withCSS(Component,css,\"framer-b42SC\");export default FramerQph9aki1o;FramerQph9aki1o.displayName=\"navigation-bottom\";FramerQph9aki1o.defaultProps={height:50,width:200};addPropertyControls(FramerQph9aki1o,{variant:{options:[\"GaXSNeC8H\",\"pc4OTiz6Q\",\"fgrlYkhod\"],optionTitles:[\"Desktop\",\"Phone\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQph9aki1o,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"}]},...Cart_PreviewFonts,...ButtonCheckoutFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQph9aki1o\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pc4OTiz6Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"120px\\\",null,null]},\\\"fgrlYkhod\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"50\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Qph9aki1o.map"],
  "mappings": "4bAEG,IAAMA,GAAS,aAAa,QAAQ,kBAAkB,EAAQC,GAASC,GAAY,CAAC,UAAU,GAAG,YAAY,GAAG,SAAS,EAAE,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC,EAwDtJ,SAASC,GAAwCC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAAS,EAAO,CAACC,EAAgBC,CAAiB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAU,IAAI,CAAC,IAAMC,EAAuB,IAAI,EAAiB,KAAK,MAAM,aAAa,QAAQ,YAAY,CAAC,GAAG,CAAC,GAAe,OAAO,GAAGH,EAAkB,EAAI,CAAG,EAAEG,EAAuB,EAAE,IAAMC,EAAgB,YAAY,IAAI,CAACD,EAAuB,CAAE,EAAE,GAAG,EAAE,MAAM,IAAI,CAAC,cAAcC,CAAe,CAAE,CAAE,EAAE,CAAC,CAAC,EAASL,GAA8BM,EAAKX,EAAU,CAAC,GAAGC,CAAK,CAAC,CAAE,CAAE,CCzD3gBW,GAAU,UAAU,CAAC,gBAAgB,eAAe,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,+wBAA+wB,q0BAAq0B,i0BAAi0B,EAAeC,GAAU,eCA99E,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAKC,EAAM,MAAM,CAAC,GAAGH,EAAM,UAAUF,GAAgCE,EAAM,UAAU,SAASE,GAAMD,EAAuCR,GAAwBO,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,YAAY,WAAWC,EAAMN,GAAmCG,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,sBAAsB,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBtB,GAAuBJ,EAAMxB,CAAQ,EAAQmD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAanB,EAAS,EAAQoB,EAAkBC,EAAqB,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK8C,EAAK,CAAC,KAAKrB,EAAU,OAAO,YAAY,aAAa,GAAK,SAAsBzB,EAAKE,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAU,GAAGgB,EAAGhE,GAAkB,GAAG2D,EAAsB,iBAAiBnB,EAAUM,CAAU,CAAC,kBAAkB,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGhB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,iBAAiB,EAAE,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGrC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,qBAAqB,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBmC,EAAiB,SAAS,qBAAqB,SAAsBrC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,wBAAwB,EAAE,iBAAiBmC,EAAiB,SAAS,qBAAqB,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,SAAS,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,kFAAkF,6WAA6W,oSAAoS,mRAAmR,gHAAgH,o2BAAo2B,2HAA2H,+cAA+c,2cAA2c,GAAeA,GAAI,+bAA+b,EASlwSC,EAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,oBAAoBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,uBAAuB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTh5E,SAASC,IAAW,CAAC,MAAM,CAAC,QAAQ,IAAI,CAC/C,aAAa,WAAW,YAAY,EACpC,IAAMC,EAAM,IAAI,YAAY,aAAa,EAAEC,EAAO,cAAcD,CAAK,EAErE,MAAM,mIAA0B,CAAE,CAAC,CAAE,CAA2J,SAASE,GAAcC,EAAE,CAAC,OAAOC,IAAQC,EAA+BC,EAAuC,EAASC,EAAKJ,EAAE,CAAC,GAAGC,EAAM,GAAGL,GAAUK,CAAK,CAAC,CAAC,EAAI,CAACF,GAAc,YAAY,YCJs1B,IAAMM,GAA2BC,GAAmBC,CAAQ,EAAQC,GAAuBC,GAAcC,EAAO,GAAG,EAAQC,GAAkBC,GAASC,EAAY,EAAQC,GAA4BC,GAAoBR,CAAQ,EAAQS,GAAuCC,GAA+BV,CAAQ,EAAQW,GAAoBN,GAASO,EAAc,EAAQC,GAAiDC,GAAwCX,EAAO,GAAG,EAAQY,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS/B,EAAO,OAAagC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAO,CAAC,sBAAA6C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,GAAOC,GAAU,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB/C,EAAKgD,EAAY,CAAC,GAAG5B,GAA4CuB,GAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB2D,EAAM/E,EAAO,IAAI,CAAC,GAAGmD,EAAU,GAAGI,EAAgB,UAAUyB,EAAGnE,GAAkB,GAAG8D,GAAsB,gBAAgB1B,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BwB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGpB,CAAK,EAAE,GAAGjC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAAcuB,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAM/E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiB6D,EAAiB,SAAS,YAAY,MAAMI,EAAY,SAAS,CAAcnC,EAAK9B,EAAO,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6D,EAAiB,SAAS,YAAY,SAAsB/B,EAAKmD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBf,EAAiB,SAAS,YAAY,GAAG9C,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmE,GAAwFN,GAAkB,GAAI,IAAiEA,GAAkB,QAAS,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK9B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsB/B,EAAK9B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsB/B,EAAKnC,GAA2B,CAAC,sBAAsB,GAAK,SAAsBmC,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,eAAe,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKqD,EAAK,CAAC,OAAO,YAAY,GAAGpE,EAAqB,CAAC,UAAU,CAAC,KAAK,8BAA8B,EAAE,UAAU,CAAC,KAAK,8BAA8B,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAsB1B,EAAKmD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,GAAG,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,8BAA8B,iBAAiBf,EAAiB,SAAS,YAAY,GAAG9C,EAAqB,CAAC,UAAU,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmE,GAAwFN,GAAkB,GAAI,IAAiEA,GAAkB,QAAS,KAAK,GAAG,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,GAAG,GAAG,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,EAAY,GAAgBS,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiB6D,EAAiB,SAAS,YAAY,MAAMM,EAAa,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAcY,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc/B,EAAK9B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,GAAG,CAAC,CAAC,EAAe/B,EAAK9B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKhC,GAAuB,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiB+D,EAAiB,SAAS,YAAY,MAAMM,EAAa,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBrC,EAAK9B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB/B,EAAKsD,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBvB,EAAiB,SAAS,YAAY,IAAI,6YAA6Y,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAES,EAAY,GAAgBS,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKuD,GAA0B,CAAC,SAAsBvD,EAAK9B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,CAAC,eAAe,CAAC,aAAa,qBAAqB,aAAa,6EAAiB,QAAQ,mBAAmB,EAAE,WAAW,CAAC,QAAQ,qBAAqB,KAAK,QAAQ,OAAO,IAAI,QAAQ,sBAAsB,MAAM,GAAG,EAAE,WAAW,CAAC,MAAM,kBAAkB,KAAK,CAAC,WAAW,qDAAqD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,MAAM,CAAC,EAAE,sBAAsB,CAAC,YAAY,wBAAwB,cAAc,qBAAqB,UAAU,iBAAiB,EAAE,UAAU,CAAC,MAAM,wBAAwB,oBAAoB,CAAC,OAAO,GAAG,OAAO,SAAS,MAAM,EAAE,EAAE,KAAK,CAAC,WAAW,qDAAqD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,MAAM,EAAE,WAAW,cAAc,EAAE,WAAW,CAAC,MAAM,qEAAqE,KAAK,CAAC,WAAW,qDAAqD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,CAAC,CAAC,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmE,EAAY,GAAgBxC,EAAK9B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB6D,EAAiB,SAAS,YAAY,SAAsBkB,EAAMrE,GAAiD,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmD,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKsD,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,QAAQ,gBAAgB,EAAE,eAAe,IAAI,iBAAiBvB,EAAiB,SAAS,YAAY,IAAI,0HAA0H,mBAAmB,EAAI,CAAC,EAAekB,EAAM/E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKjC,EAAS,CAAC,sBAAsB,GAAK,SAAsBiC,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,gDAAgD,EAAE,SAAS,4EAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAK1B,GAA4B,CAAC,sBAAsB,GAAK,SAAsB0B,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAM/E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKjC,EAAS,CAAC,sBAAsB,GAAK,SAAsBiC,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,4EAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKxB,GAAuC,CAAC,sBAAsB,GAAK,SAAsBwB,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKwD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BzD,EAAKuD,GAA0B,CAAC,OAAO,GAAG,GAAGtE,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqE6D,GAAkB,OAAQ,OAAO,WAAW,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,GAAG,KAAK,IAAI,IAAiEA,GAAkB,QAAS,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK9B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKrB,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU8E,EAAc,CAAC,EAAE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,kFAAiB,GAAGxE,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAc,CAAC,CAAC,CAAC,EAAEnC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,gFAAgF,gKAAgK,kSAAkS,iSAAiS,iHAAiH,+LAA+L,oWAAoW,mUAAmU,4OAA4O,2KAA2K,iOAAiO,+RAA+R,+RAA+R,+NAA+N,mLAAmL,8UAA8U,0GAA0G,0RAA0R,+QAA+Q,mTAAmT,6FAA6F,gSAAgS,wGAAwG,8zDAA8zD,kFAAkF,0EAA0E,wOAAwO,8HAA8H,yHAAyH,qFAAqF,4JAA4J,wJAAwJ,oJAAoJ,wEAAwE,+aAA+a,+bAA+b,EAQzt2BC,EAAgBC,EAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,oBAAoBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxF,GAAkB,GAAGO,EAAmB,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["STORE_ID", "useStore", "createStore", "forRenderingCheckoutElementsOnCondition", "Component", "props", "store", "setStore", "useStore", "isProductsExist", "setIsproductExist", "ye", "ue", "updateItemsFromStorage", "pollingInterval", "p", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "K3Hyf0dGu", "ZMcyYkf3A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerGnATfbg0g", "withCSS", "GnATfbg0g_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ClearCart", "event", "window", "withClearCart", "C", "props", "re", "DataObserverContext", "p", "RichTextForCartItemDisplay", "forCartItemDisplay", "RichText2", "MotionDivWithClearCart", "withClearCart", "motion", "Cart_PreviewFonts", "getFonts", "Cart_Preview", "RichTextForItemCountDisplay", "forItemCountDisplay", "RichTextForProductPositionCountDisplay", "forProductPositionCountDisplay", "ButtonCheckoutFonts", "GnATfbg0g_default", "MotionDivForRenderingCheckoutElementsOnCondition", "forRenderingCheckoutElementsOnCondition", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8w7xm7", "args", "onTap1vs7qht", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "Link", "SVG", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "css", "FramerQph9aki1o", "withCSS", "Qph9aki1o_default", "addPropertyControls", "ControlType", "addFonts"]
}
