{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/mAVP3QW4KKgAW03impLt/PaLcMaEDpJwElPK11swc/FramerShopAddToCart.js", "ssg:https://framerusercontent.com/modules/oL6ygfAMMa1hzDY4CkjZ/VhdxZQ5VcEgtfuEvbGJI/jA7OHX4Ey.js", "ssg:https://framerusercontent.com/modules/V9IgXKms79qHTqhU2wQ5/krp5cml6t3RXDHQ4dTtQ/kfjj2RXPG.js", "ssg:https://framerusercontent.com/modules/uT0oOX5T2xFApe9U395w/2Pu2BFUNMppqqY3awKAl/laUnpVNgL.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{PlusCircle}from\"lucide-react\";import{cartUpdateEvents}from\"https://framerusercontent.com/modules/oBPN8kZKhyOiyZAudN4y/MinPYtZ71UescYPKKdQb/FramerShop.js\";export function FramerShopAddToCart(props){const AddToCart=()=>{let cart=JSON.parse(localStorage.getItem(\"cart\")||\"[]\");let item=cart.find(item=>item.id===props.articleId);if(item){item.quantity+=1;}else{cart.push({id:props.articleId,name:props.productName,quantity:1,price:props.price,image:props.productImage});}console.log(`Ajout au panier de l'article ID: ${props.articleId}, Prix: ${props.price}`);localStorage.setItem(\"cart\",JSON.stringify(cart));cartUpdateEvents.publish(\"cartUpdated\",{});};const containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:props.buttonBackgroundColor,color:props.buttonTextColor,fontSize:`${props.buttonFontSize}px`,fontFamily:props.buttonFontFamily,fontWeight:props.buttonFontWeight,borderRadius:props.isButtonBorderRadiusMixed?`${props.buttonTopLeftRadius}px ${props.buttonTopRightRadius}px ${props.buttonBottomRightRadius}px ${props.buttonBottomLeftRadius}px`:`${props.buttonBorderRadius}px`,padding:props.isPaddingMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.buttonPadding}px`,cursor:\"pointer\",width:\"100%\",borderColor:props.showBorders?props.buttonBorderColor:\"transparent\",borderWidth:props.showBorders?props.isBorderWidthMixed?`${props.borderTopWidth}px ${props.borderRightWidth}px ${props.borderBottomWidth}px ${props.borderLeftWidth}px`:`${props.buttonBorderWidth}px`:\"0\",borderStyle:props.showBorders?\"solid\":\"none\"};const iconStyle={marginLeft:props.iconPosition===\"right\"?\"8px\":\"0\",marginRight:props.iconPosition===\"left\"?\"8px\":\"0\"};return /*#__PURE__*/_jsxs(\"div\",{onClick:AddToCart,style:containerStyle,children:[props.showIcon&&props.iconPosition===\"left\"&&/*#__PURE__*/_jsx(PlusCircle,{color:props.buttonTextColor,style:iconStyle}),props.buttonText,props.showIcon&&props.iconPosition===\"right\"&&/*#__PURE__*/_jsx(PlusCircle,{color:props.buttonTextColor,style:iconStyle})]});}FramerShopAddToCart.defaultProps={articleId:\"001\",productName:\"Product Name\",price:10,productImage:\"\",buttonBackgroundColor:\"#000000\",buttonTextColor:\"#FFFFFF\",buttonFontSize:16,buttonFontFamily:\"Inter\",buttonFontWeight:\"400\",buttonPadding:10,buttonBorderRadius:10,showBorders:false,buttonBorderColor:\"#000000\",buttonBorderWidth:1,buttonText:\"Add to Cart\"};addPropertyControls(FramerShopAddToCart,{articleId:{type:ControlType.String,title:\"Price ID\",defaultValue:\"001\"},productName:{type:ControlType.String,title:\"Product Name\",defaultValue:\"Product Name\"},price:{type:ControlType.Number,title:\"Price\",defaultValue:10,min:0,step:1},productImage:{type:ControlType.Image,title:\"Product Image\",defaultValue:\"\"},buttonText:{type:ControlType.String,title:\"Text\",defaultValue:\"Add to Cart\"},showIcon:{type:ControlType.Boolean,title:\"Show Icon\",defaultValue:true},iconPosition:{type:ControlType.Enum,title:\"Icon Position\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],defaultValue:\"left\",hidden:({showIcon})=>!showIcon},buttonBackgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"#000000\"},buttonTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#FFFFFF\"},buttonFontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,min:8,max:100,unit:\"px\",displayStepper:true},buttonFontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter\"},buttonFontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Thin\",\"Extra Light\",\"Light\",\"Regular\",\"Medium\",\"Semi Bold\",\"Bold\",\"Extra Bold\",\"Black\"],defaultValue:\"400\"},buttonPadding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:10,toggleKey:\"isPaddingMixed\",toggleTitles:[\"Uniform\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonBorderRadius:{type:ControlType.FusedNumber,title:\"Border Radius\",defaultValue:10,toggleKey:\"isButtonBorderRadiusMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"buttonTopLeftRadius\",\"buttonTopRightRadius\",\"buttonBottomRightRadius\",\"buttonBottomLeftRadius\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},showBorders:{type:ControlType.Boolean,title:\"Show Borders\",defaultValue:false},buttonBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#000000\",hidden:({showBorders})=>!showBorders},buttonBorderWidth:{type:ControlType.FusedNumber,title:\"Border Width\",defaultValue:1,toggleKey:\"isBorderWidthMixed\",toggleTitles:[\"Uniform\",\"Individual\"],valueKeys:[\"borderTopWidth\",\"borderRightWidth\",\"borderBottomWidth\",\"borderLeftWidth\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,hidden:({showBorders})=>!showBorders}});\nexport const __FramerMetadata__ = {\"exports\":{\"FramerShopAddToCart\":{\"type\":\"reactComponent\",\"name\":\"FramerShopAddToCart\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (401b244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"FLBuhBYJN\",\"sYDOfn5Y_\"];const serializationHash=\"framer-cnXGM\";const variantClassNames={FLBuhBYJN:\"framer-v-zo3ko9\",sYDOfn5Y_:\"framer-v-1v5c9rb\"};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:40,delay:0,mass:1,stiffness:400,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(React.Fragment);const humanReadableVariantMap={Closed:\"FLBuhBYJN\",Open:\"sYDOfn5Y_\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"FLBuhBYJN\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FLBuhBYJN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapttjp7p=activeVariantCallback(async(...args)=>{setVariant(\"sYDOfn5Y_\");});const onTap1gic1ax=activeVariantCallback(async(...args)=>{setVariant(\"FLBuhBYJN\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"sYDOfn5Y_\")return true;return false;};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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zo3ko9\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"FLBuhBYJN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({sYDOfn5Y_:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sb94xe\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TT2onanhn\",onTap:onTapttjp7p,...addPropertyOverrides({sYDOfn5Y_:{onTap:onTap1gic1ax}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-30nwgi\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"bWUnWLXEM\",style:{opacity:.3,rotate:0},variants:{sYDOfn5Y_:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b5oi37\",layoutDependency:layoutDependency,layoutId:\"tapvCWk3e\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ecoltl\",layoutDependency:layoutDependency,layoutId:\"ReCrGbrP2\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWZhY2FkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-z1m6mt\",fonts:[\"GF;Afacad-regular\"],layoutDependency:layoutDependency,layoutId:\"elD_q1FT3\",style:{\"--extracted-r6o4lv\":\"var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sbqdz4\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"DxMTepFME\",style:{opacity:0},variants:{sYDOfn5Y_:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWZhY2FkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-ijlxvk\",fonts:[\"GF;Afacad-regular\"],layoutDependency:layoutDependency,layoutId:\"Mr7UzJ7Oc\",style:{\"--extracted-r6o4lv\":\"var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{sYDOfn5Y_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cnXGM.framer-9ihyrk, .framer-cnXGM .framer-9ihyrk { display: block; }\",\".framer-cnXGM.framer-zo3ko9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-cnXGM .framer-sb94xe { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-cnXGM .framer-30nwgi { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-cnXGM .framer-1b5oi37 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-cnXGM .framer-ecoltl { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-cnXGM .framer-z1m6mt { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cnXGM .framer-sbqdz4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-cnXGM .framer-ijlxvk { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cnXGM.framer-zo3ko9, .framer-cnXGM .framer-sb94xe, .framer-cnXGM .framer-sbqdz4 { gap: 0px; } .framer-cnXGM.framer-zo3ko9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cnXGM.framer-zo3ko9 > :first-child, .framer-cnXGM .framer-sbqdz4 > :first-child { margin-top: 0px; } .framer-cnXGM.framer-zo3ko9 > :last-child, .framer-cnXGM .framer-sbqdz4 > :last-child { margin-bottom: 0px; } .framer-cnXGM .framer-sb94xe > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cnXGM .framer-sb94xe > :first-child { margin-left: 0px; } .framer-cnXGM .framer-sb94xe > :last-child { margin-right: 0px; } .framer-cnXGM .framer-sbqdz4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 92\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sYDOfn5Y_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjA7OHX4Ey=withCSS(Component,css,\"framer-cnXGM\");export default FramerjA7OHX4Ey;FramerjA7OHX4Ey.displayName=\"Row\";FramerjA7OHX4Ey.defaultProps={height:92,width:400};addPropertyControls(FramerjA7OHX4Ey,{variant:{options:[\"FLBuhBYJN\",\"sYDOfn5Y_\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerjA7OHX4Ey,[{explicitInter:true,fonts:[{family:\"Afacad\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfhXtWmU08mCgdfM.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjA7OHX4Ey\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sYDOfn5Y_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"92\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jA7OHX4Ey.map", "// Generated by Framer (401b244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/oL6ygfAMMa1hzDY4CkjZ/VhdxZQ5VcEgtfuEvbGJI/jA7OHX4Ey.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"YHaXioQTg\"];const serializationHash=\"framer-ADCVx\";const variantClassNames={YHaXioQTg:\"framer-v-1aasmvy\"};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:40,delay:0,mass:1,stiffness:400,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(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YHaXioQTg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1aasmvy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YHaXioQTg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-2116a43c-0db9-45d0-bed4-a609af0e8026, rgb(243, 243, 243))\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yphh6a-container\",layoutDependency:layoutDependency,layoutId:\"mo6jMuHOS-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"mo6jMuHOS\",layoutId:\"mo6jMuHOS\",style:{width:\"100%\"},T8rQFvSBR:\"Enjoy super-fast shipping with our express delivery service. Order your items today and receive them within 48 hours.\",variant:\"FLBuhBYJN\",W88zB8mIG:\"48H Express Delivery\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cdqt18\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"FzLziTlr5\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fqduh-container\",layoutDependency:layoutDependency,layoutId:\"TgA5P0kut-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"TgA5P0kut\",layoutId:\"TgA5P0kut\",style:{width:\"100%\"},T8rQFvSBR:\"Your satisfaction is our priority. If your items don't fully meet your expectations, we offer a simple, free returns process. You have 30 days from receipt to return the items for an exchange or full refund.\",variant:\"FLBuhBYJN\",W88zB8mIG:\"Easy returns\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-54xxs\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"zVkywudcj\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jiueqn-container\",layoutDependency:layoutDependency,layoutId:\"wbUgyFcS9-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"wbUgyFcS9\",layoutId:\"wbUgyFcS9\",style:{width:\"100%\"},T8rQFvSBR:\"Every item we sell is rigorously tested to guarantee flawless quality. Enjoy durability, comfort and unsurpassed performance, all backed by our commitment to excellence.\",variant:\"FLBuhBYJN\",W88zB8mIG:\"Quality commitment\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ADCVx.framer-cyx2or, .framer-ADCVx .framer-cyx2or { display: block; }\",\".framer-ADCVx.framer-1aasmvy { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; }\",\".framer-ADCVx .framer-1yphh6a-container, .framer-ADCVx .framer-8fqduh-container, .framer-ADCVx .framer-1jiueqn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ADCVx .framer-cdqt18, .framer-ADCVx .framer-54xxs { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ADCVx.framer-1aasmvy { gap: 0px; } .framer-ADCVx.framer-1aasmvy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ADCVx.framer-1aasmvy > :first-child { margin-top: 0px; } .framer-ADCVx.framer-1aasmvy > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 212\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerkfjj2RXPG=withCSS(Component,css,\"framer-ADCVx\");export default Framerkfjj2RXPG;Framerkfjj2RXPG.displayName=\"Accordion\";Framerkfjj2RXPG.defaultProps={height:212,width:1e3};addFonts(Framerkfjj2RXPG,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerkfjj2RXPG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"212\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (401b244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,optimizeAppear,PathVariablesContext,PropertyOverrides,RichText,SVG,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{FramerShopAddToCart}from\"https://framerusercontent.com/modules/mAVP3QW4KKgAW03impLt/PaLcMaEDpJwElPK11swc/FramerShopAddToCart.js\";import NavBar from\"#framer/local/canvasComponent/E3Isz3A3G/E3Isz3A3G.js\";import Accordion from\"#framer/local/canvasComponent/kfjj2RXPG/kfjj2RXPG.js\";import Collection,{enumToDisplayNameFunctions}from\"#framer/local/collection/I5mW0oa3Y/I5mW0oa3Y.js\";import*as sharedStyle4 from\"#framer/local/css/a5haD1UyB/a5haD1UyB.js\";import*as sharedStyle1 from\"#framer/local/css/AURV1tAd_/AURV1tAd_.js\";import*as sharedStyle5 from\"#framer/local/css/eSC0zziXL/eSC0zziXL.js\";import*as sharedStyle3 from\"#framer/local/css/GhMfygDIl/GhMfygDIl.js\";import*as sharedStyle2 from\"#framer/local/css/kUz49NL84/kUz49NL84.js\";import*as sharedStyle from\"#framer/local/css/L5RgQtoRQ/L5RgQtoRQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/laUnpVNgL/laUnpVNgL.js\";const NavBarFonts=getFonts(NavBar);const FramerShopAddToCartFonts=getFonts(FramerShopAddToCart);const AccordionFonts=getFonts(Accordion);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"TDRNDtY5w\",\"l7QtWyUbM\",\"kt4NOUl18\"];const breakpoints={kt4NOUl18:\"(max-width: 809px)\",l7QtWyUbM:\"(min-width: 810px) and (max-width: 1199px)\",TDRNDtY5w:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-if1wW\";const variantClassNames={kt4NOUl18:\"framer-v-voti9v\",l7QtWyUbM:\"framer-v-bqmpjf\",TDRNDtY5w:\"framer-v-ma8tll\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:90,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:90,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const animation3={opacity:0,rotate:0,rotateX:90,rotateY:20,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:90,rotateY:20,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"TDRNDtY5w\",Phone:\"kt4NOUl18\",Tablet:\"l7QtWyUbM\"};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:\"TDRNDtY5w\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Collection,type:\"Collection\"},select:[{name:\"jpeZzsj1g\",type:\"Identifier\"},{name:\"PMyprb5fO\",type:\"Identifier\"},{name:\"SekXsOTxA\",type:\"Identifier\"},{name:\"CNN7o7eLl\",type:\"Identifier\"},{name:\"HnpLQgSaT\",type:\"Identifier\"},{name:\"tsjMik4vT\",type:\"Identifier\"},{name:\"hq1AZSkoy\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Collection\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,CNN7o7eLl=getFromCurrentRouteData(\"CNN7o7eLl\"),HnpLQgSaT=getFromCurrentRouteData(\"HnpLQgSaT\"),jpeZzsj1g=getFromCurrentRouteData(\"jpeZzsj1g\"),SekXsOTxA=getFromCurrentRouteData(\"SekXsOTxA\"),PMyprb5fO=getFromCurrentRouteData(\"PMyprb5fO\"),HdXu5BCCcoq60J6oLO,CNN7o7eLloq60J6oLO,jpeZzsj1goq60J6oLO,tsjMik4vToq60J6oLO,SekXsOTxAoq60J6oLO,idoq60J6oLO,tsjMik4vT=getFromCurrentRouteData(\"tsjMik4vT\"),hq1AZSkoy=getFromCurrentRouteData(\"hq1AZSkoy\"),HdXu5BCCcxJbtVpAXR,CNN7o7eLlxJbtVpAXR,jpeZzsj1gxJbtVpAXR,tsjMik4vTxJbtVpAXR,SekXsOTxAxJbtVpAXR,idxJbtVpAXR,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-if1wW`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-if1wW`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"Iu9lkPGq4\");const ref2=React.useRef(null);const id1=useRouteElementId(\"W8ajE0cSt\");const ref3=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=numberToString(SekXsOTxA,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TDRNDtY5w\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ma8tll\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yeo9x4-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"RrHvsGFyE\",layoutId:\"RrHvsGFyE\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a468qo\",\"data-framer-name\":\"How to\",id:id,name:\"How to\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ih7fh9\",\"data-framer-name\":\"How to Title\",id:id1,name:\"How to Title\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gp2upu\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-91586z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:500,pixelWidth:1e3,sizes:\"100vw\",...toResponsiveImage(CNN7o7eLl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:500,pixelWidth:1e3,sizes:\"max((100vw - 374px) / 2, 0px)\",...toResponsiveImage(CNN7o7eLl)},className:\"framer-l01dgn\",\"data-framer-name\":\"Product Image\",name:\"Product Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"100vw\",...toResponsiveImage(HnpLQgSaT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"max((100vw - 374px) / 2, 0px)\",...toResponsiveImage(HnpLQgSaT)},className:\"framer-9sdhf3\",\"data-framer-name\":\"Product Image\",name:\"Product Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{\"data-framer-appear-id\":\"gs17jj\",animate:optimizeAppear(\"animate\",\"gs17jj\",animation1,\"voti9v\"),initial:optimizeAppear(\"initial\",\"gs17jj\",animation2,\"voti9v\")},l7QtWyUbM:{\"data-framer-appear-id\":\"ndu9z2\",animate:optimizeAppear(\"animate\",\"ndu9z2\",animation1,\"bqmpjf\"),initial:optimizeAppear(\"initial\",\"ndu9z2\",animation2,\"bqmpjf\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"4ss4a6\",animation1,\"ma8tll\"),className:\"framer-4ss4a6\",\"data-border\":true,\"data-framer-appear-id\":\"4ss4a6\",\"data-framer-name\":\"Product Cart\",exit:animation,initial:optimizeAppear(\"initial\",\"4ss4a6\",animation2,\"ma8tll\"),name:\"Product Cart\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yfvfk6\",\"data-framer-name\":\"Product details\",name:\"Product details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8al454\",\"data-styles-preset\":\"L5RgQtoRQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Name\"})}),className:\"framer-cs6tol\",fonts:[\"Inter\"],text:jpeZzsj1g,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-52tbpp\",\"data-styles-preset\":\"AURV1tAd_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Collection\"})}),className:\"framer-n56mc4\",fonts:[\"Inter\"],text:jpeZzsj1g,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rp1vrx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8al454\",\"data-styles-preset\":\"L5RgQtoRQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"$\"})}),className:\"framer-6nbhmq\",\"data-framer-name\":\"Currency\",fonts:[\"Inter\"],name:\"Currency\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8al454\",\"data-styles-preset\":\"L5RgQtoRQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"$120\"})}),className:\"framer-up7ufp\",\"data-framer-name\":\"Amount\",fonts:[\"Inter\"],name:\"Amount\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-64kxdn-container\",children:/*#__PURE__*/_jsx(FramerShopAddToCart,{articleId:PMyprb5fO,borderBottomWidth:1,borderLeftWidth:1,borderRightWidth:1,borderTopWidth:1,buttonBackgroundColor:\"rgb(0, 0, 0)\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:0,buttonBorderWidth:1,buttonBottomLeftRadius:0,buttonBottomRightRadius:0,buttonFontFamily:\"Afacad\",buttonFontSize:20,buttonFontWeight:\"700\",buttonPadding:15,buttonText:\"Add to Cart\",buttonTextColor:\"rgb(255, 255, 255)\",buttonTopLeftRadius:0,buttonTopRightRadius:0,height:\"100%\",iconPosition:\"left\",id:\"vqLThjeoc\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"vqLThjeoc\",paddingBottom:15,paddingLeft:15,paddingRight:15,paddingTop:15,price:SekXsOTxA,productImage:toImageSrc(CNN7o7eLl),productName:jpeZzsj1g,showBorders:false,showIcon:true,style:{width:\"100%\"},width:\"100%\"})})})]})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eroa28\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8odawo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yeu7na\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1td228e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-df56uq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qc9xus\",\"data-styles-preset\":\"kUz49NL84\",children:\"Other colors\"})}),className:\"framer-peml6a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19cf7g9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pl9ixx\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Collection,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"HdXu5BCCc\",type:\"Identifier\"},{name:\"CNN7o7eLl\",type:\"Identifier\"},{name:\"jpeZzsj1g\",type:\"Identifier\"},{name:\"tsjMik4vT\",type:\"Identifier\"},{name:\"SekXsOTxA\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"jpeZzsj1g\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jpeZzsj1g},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{name:\"tsjMik4vT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tsjMik4vT},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:collection=>collection.map(({HdXu5BCCc:HdXu5BCCcoq60J6oLO,CNN7o7eLl:CNN7o7eLloq60J6oLO,jpeZzsj1g:jpeZzsj1goq60J6oLO,tsjMik4vT:tsjMik4vToq60J6oLO,SekXsOTxA:SekXsOTxAoq60J6oLO,id:idoq60J6oLO},i)=>{var _enumToDisplayNameFunctions_tsjMik4vT;const textContent1=(_enumToDisplayNameFunctions_tsjMik4vT=enumToDisplayNameFunctions[\"tsjMik4vT\"])===null||_enumToDisplayNameFunctions_tsjMik4vT===void 0?void 0:_enumToDisplayNameFunctions_tsjMik4vT.call(enumToDisplayNameFunctions,tsjMik4vToq60J6oLO,activeLocale);const textContent2=numberToString(SekXsOTxAoq60J6oLO,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`oq60J6oLO-${idoq60J6oLO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HdXu5BCCc:HdXu5BCCcoq60J6oLO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{HdXu5BCCc:HdXu5BCCcoq60J6oLO},webPageId:\"laUnpVNgL\"},children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1antlst framer-3w8fkj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 120px, 0px)\",...toResponsiveImage(CNN7o7eLloq60J6oLO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"max(max((100vw - 100px) * 0.7 - 10px, 0px) - 20px, 0px)\",...toResponsiveImage(CNN7o7eLloq60J6oLO)},className:\"framer-conmdd\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1szgvjd\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8al454\",\"data-styles-preset\":\"L5RgQtoRQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Name\"})}),className:\"framer-1txxsv3\",\"data-framer-name\":\"Product Name\",fonts:[\"Inter\"],name:\"Product Name\",text:jpeZzsj1goq60J6oLO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkLTcwMA==\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c48b83c-b783-4934-bc05-05aafdca2e66, rgb(136, 136, 136))\"},children:\"Product Name\"})}),className:\"framer-1sm279n\",\"data-framer-name\":\"Product Name\",fonts:[\"GF;Afacad-700\"],name:\"Product Name\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-52tbpp\",\"data-styles-preset\":\"AURV1tAd_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Name\"})}),className:\"framer-3gk9ap\",\"data-framer-name\":\"Product Name\",fonts:[\"Inter\"],name:\"Product Name\",text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idoq60J6oLO);})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{width:\"calc(100vw - 120px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((100vw - 100px) * 0.7 - 10px, 0px) - 20px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tv3g5k-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"etM7gfWQQ\",layoutId:\"etM7gfWQQ\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbok07\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1024,pixelWidth:1024,sizes:\"calc(100vw - 120px)\",...toResponsiveImage(CNN7o7eLl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"calc((100vw - 100px) * 0.3 - 20px)\",...toResponsiveImage(CNN7o7eLl)},className:\"framer-1rdzlut\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qc9xus\",\"data-styles-preset\":\"kUz49NL84\",children:\"Product Details \"})}),className:\"framer-1p09kst\",fonts:[\"Inter\"],text:jpeZzsj1g,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0))\"},children:'\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"'})}),className:\"framer-a12xg9\",fonts:[\"GF;Afacad-regular\"],text:hq1AZSkoy,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo2mik\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10h5g9b\",\"data-styles-preset\":\"GhMfygDIl\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover Articles You May Like\"})}),className:\"framer-2nxqav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-82w7kr\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Collection,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"HdXu5BCCc\",type:\"Identifier\"},{name:\"CNN7o7eLl\",type:\"Identifier\"},{name:\"jpeZzsj1g\",type:\"Identifier\"},{name:\"tsjMik4vT\",type:\"Identifier\"},{name:\"SekXsOTxA\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"jpeZzsj1g\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jpeZzsj1g},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{name:\"tsjMik4vT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tsjMik4vT},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:collection1=>collection1.map(({HdXu5BCCc:HdXu5BCCcxJbtVpAXR,CNN7o7eLl:CNN7o7eLlxJbtVpAXR,jpeZzsj1g:jpeZzsj1gxJbtVpAXR,tsjMik4vT:tsjMik4vTxJbtVpAXR,SekXsOTxA:SekXsOTxAxJbtVpAXR,id:idxJbtVpAXR},i)=>{var _enumToDisplayNameFunctions_tsjMik4vT;const textContent3=(_enumToDisplayNameFunctions_tsjMik4vT=enumToDisplayNameFunctions[\"tsjMik4vT\"])===null||_enumToDisplayNameFunctions_tsjMik4vT===void 0?void 0:_enumToDisplayNameFunctions_tsjMik4vT.call(enumToDisplayNameFunctions,tsjMik4vTxJbtVpAXR,activeLocale);const textContent4=numberToString(SekXsOTxAxJbtVpAXR,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`xJbtVpAXR-${idxJbtVpAXR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HdXu5BCCc:HdXu5BCCcxJbtVpAXR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{HdXu5BCCc:HdXu5BCCcxJbtVpAXR},webPageId:\"laUnpVNgL\"},children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-160cauh framer-3w8fkj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kt4NOUl18:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(100vw - 100px)\",...toResponsiveImage(CNN7o7eLlxJbtVpAXR)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 100px, 0px)\",...toResponsiveImage(CNN7o7eLlxJbtVpAXR)},className:\"framer-fg6nx5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g1m6sp\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8al454\",\"data-styles-preset\":\"L5RgQtoRQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Name\"})}),className:\"framer-gdwt8\",\"data-framer-name\":\"Product Name\",fonts:[\"Inter\"],name:\"Product Name\",text:jpeZzsj1gxJbtVpAXR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkLTcwMA==\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c48b83c-b783-4934-bc05-05aafdca2e66, rgb(136, 136, 136))\"},children:\"Content\"})}),className:\"framer-2v5wv9\",\"data-framer-name\":\"Product Name\",fonts:[\"GF;Afacad-700\"],name:\"Product Name\",text:textContent3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-52tbpp\",\"data-styles-preset\":\"AURV1tAd_\",style:{\"--framer-text-alignment\":\"center\"},children:\"$NaN\"})}),className:\"framer-n13cjk\",\"data-framer-name\":\"Product Name\",fonts:[\"Inter\"],name:\"Product Name\",text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idxJbtVpAXR);})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-19a2725\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer-shop.com\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:708,pixelWidth:3252,positionX:\"center\",positionY:\"center\",sizes:\"406px\",src:\"https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png\",srcSet:\"https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png 3252w\"},className:\"framer-ahbhqh framer-3w8fkj\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pv9xhd\",\"data-framer-name\":\"Content\",name:\"Content\",style:{rotateX:10,transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10h5g9b\",\"data-styles-preset\":\"GhMfygDIl\",style:{\"--framer-text-alignment\":\"center\"},children:\"Turn your Framer Website into an e-commerce store with Framer !\"})}),className:\"framer-19l0bfg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qc9xus\",\"data-styles-preset\":\"kUz49NL84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0))\"},children:\"Launch your online store with ease! Discover how our Framer-based solution can transform a simple website into a powerful e-commerce platform. Whether you're a designer, small business or established brand, our template lets you create an unparalleled online shopping experience, integrating modern design, advanced e-commerce features and simplified management.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-qc9xus\",\"data-styles-preset\":\"kUz49NL84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f15d1009-e3ef-44bf-9abe-9e7995c9259a, rgb(0, 0, 0))\"},children:[\"For more information on our templates and services, visit \",/*#__PURE__*/_jsx(Link,{href:\"https://www.framer-shop.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-14kv1og\",\"data-styles-preset\":\"a5haD1UyB\",children:\"www.framer-shop.com\"})}),\" and explore the unlimited possibilities we offer for developing your online business. You can also follow us on Twitter \",/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/FramerDesigner\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-14kv1og\",\"data-styles-preset\":\"a5haD1UyB\",children:\"@FramerDesigner \"})}),\"to stay up to date with the latest trends, updates and exclusive offers.\"]})]}),className:\"framer-1uvlw6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer-shop.com\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-qij4rc framer-3w8fkj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkLTcwMA==\",\"--framer-font-family\":'\"Afacad\", \"Afacad Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2334d339-fbd1-4fea-b406-f4c689bdb205, rgb(255, 255, 255))\"},children:\"KNOW MORE ABOUT THE SOLUTION\"})}),className:\"framer-xy9exl\",fonts:[\"GF;Afacad-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"footer\",{className:\"framer-5dx01u\",\"data-framer-name\":\"Footer Day\",name:\"Footer Day\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer-shop.com\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:708,pixelWidth:3252,positionX:\"center\",positionY:\"center\",sizes:\"213px\",src:\"https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png\",srcSet:\"https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SWqdnzjCjsOJCxIBEYgbbgpvrw.png 3252w\"},className:\"framer-yrqvrs framer-3w8fkj\"})}),/*#__PURE__*/_jsx(\"nav\",{className:\"framer-c8i63h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1595li3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b984212c-6b21-4967-bb54-ce90369391ae, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WaQUScpWM\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1yn5mpi\",\"data-styles-preset\":\"eSC0zziXL\",children:\"Terms & Conditions\"})})})}),className:\"framer-11pd8ci\",fonts:[\"FS;Switzer-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b984212c-6b21-4967-bb54-ce90369391ae, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"beDhewnc3\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1yn5mpi\",\"data-styles-preset\":\"eSC0zziXL\",children:\"Privacy Policy\"})})})}),className:\"framer-v5fq65\",fonts:[\"FS;Switzer-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b984212c-6b21-4967-bb54-ce90369391ae, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Q4Ae1Y16Q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1yn5mpi\",\"data-styles-preset\":\"eSC0zziXL\",children:\"Cookie Policy\"})})})}),className:\"framer-1ao7jeo\",fonts:[\"FS;Switzer-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b984212c-6b21-4967-bb54-ce90369391ae, rgb(0, 0, 0))\"},children:\"\\xa9 2024 FramerDesigner All rights reserved.\"})}),className:\"framer-1j257ee\",fonts:[\"FS;Switzer-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-efgoyl\",children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/FramerDesigner\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hxblps framer-3w8fkj\",\"data-framer-name\":\"X\",name:\"X\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10f59ua\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.641 5 L 19.095 5 L 13.735 10.93 L 20.041 19 L 15.103 19 L 11.236 14.106 L 6.811 19 L 4.356 19 L 10.09 12.657 L 4.041 5 L 9.103 5 L 12.599 9.474 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:751603056,withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-if1wW { background: white; }`,\".framer-if1wW.framer-3w8fkj, .framer-if1wW .framer-3w8fkj { display: block; }\",\".framer-if1wW.framer-ma8tll { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-if1wW .framer-yeo9x4-container { flex: none; height: 65px; left: 0px; max-width: 100%; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-if1wW .framer-a468qo { align-content: center; align-items: center; background-color: var(--token-51170b41-dbf0-44c9-9f71-6387b73e409d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-if1wW .framer-ih7fh9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-51170b41-dbf0-44c9-9f71-6387b73e409d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-if1wW .framer-gp2upu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-91586z, .framer-if1wW .framer-1rp1vrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-l01dgn { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-if1wW .framer-9sdhf3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 777px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-if1wW .framer-4ss4a6 { --border-bottom-width: 3px; --border-color: var(--token-2334d339-fbd1-4fea-b406-f4c689bdb205, #ffffff); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: rgba(255, 255, 255, 0.6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 250px; justify-content: space-between; left: calc(50.00000000000002% - 374px / 2); min-height: 250px; overflow: hidden; padding: 20px 20px 20px 20px; position: absolute; top: calc(50.06435006435008% - max(250px, 250px) / 2); width: 374px; z-index: 3; }\",\".framer-if1wW .framer-yfvfk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-if1wW .framer-cs6tol, .framer-if1wW .framer-n56mc4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-if1wW .framer-6nbhmq, .framer-if1wW .framer-up7ufp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-if1wW .framer-64kxdn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-if1wW .framer-eroa28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-8odawo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-1yeu7na { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-if1wW .framer-1td228e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-df56uq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 10px 10px; position: relative; width: 1px; }\",\".framer-if1wW .framer-peml6a, .framer-if1wW .framer-1p09kst, .framer-if1wW .framer-a12xg9, .framer-if1wW .framer-2nxqav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-if1wW .framer-19cf7g9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-pl9ixx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-if1wW .framer-1antlst, .framer-if1wW .framer-160cauh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 22px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-if1wW .framer-conmdd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); position: relative; width: 100%; }\",\".framer-if1wW .framer-1szgvjd, .framer-if1wW .framer-1g1m6sp { 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; min-width: 200px; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-1txxsv3, .framer-if1wW .framer-1sm279n, .framer-if1wW .framer-3gk9ap, .framer-if1wW .framer-gdwt8, .framer-if1wW .framer-2v5wv9, .framer-if1wW .framer-n13cjk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-if1wW .framer-tv3g5k-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-if1wW .framer-1qbok07 { --border-bottom-width: 1px; --border-color: var(--token-10f6cc28-27e7-41cb-a2a9-55882e49f05f, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 10px 10px 10px 10px; position: relative; width: 30%; }\",\".framer-if1wW .framer-1rdzlut { flex: none; height: 283px; overflow: hidden; position: relative; width: 100%; }\",\".framer-if1wW .framer-1lo2mik { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-82w7kr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-if1wW .framer-fg6nx5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 340px); position: relative; width: 100%; }\",\".framer-if1wW .framer-19a2725 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-if1wW .framer-ahbhqh { aspect-ratio: 4.613636363636363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); max-width: 100%; overflow: hidden; position: relative; text-decoration: none; width: 406px; }\",\".framer-if1wW .framer-1pv9xhd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; max-width: 100%; padding: 30px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-if1wW .framer-19l0bfg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-if1wW .framer-1uvlw6y { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-if1wW .framer-qij4rc { align-content: center; align-items: center; background: linear-gradient(180deg, #ff5533 0%, rgb(255, 140, 0) 100%); border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-if1wW .framer-xy9exl, .framer-if1wW .framer-11pd8ci, .framer-if1wW .framer-v5fq65, .framer-if1wW .framer-1ao7jeo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-if1wW .framer-5dx01u { align-content: center; align-items: center; background-color: var(--token-10f6cc28-27e7-41cb-a2a9-55882e49f05f, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-if1wW .framer-yrqvrs { flex: none; height: 46px; overflow: hidden; position: relative; text-decoration: none; width: 213px; }\",\".framer-if1wW .framer-c8i63h { 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 0px 0px 0px; position: relative; width: min-content; }\",\".framer-if1wW .framer-1595li3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-if1wW .framer-1j257ee { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-if1wW .framer-efgoyl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-if1wW .framer-hxblps { flex: none; height: 24px; opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-if1wW .framer-10f59ua { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-if1wW.framer-ma8tll, .framer-if1wW .framer-a468qo, .framer-if1wW .framer-ih7fh9, .framer-if1wW .framer-91586z, .framer-if1wW .framer-l01dgn, .framer-if1wW .framer-9sdhf3, .framer-if1wW .framer-yfvfk6, .framer-if1wW .framer-1rp1vrx, .framer-if1wW .framer-eroa28, .framer-if1wW .framer-8odawo, .framer-if1wW .framer-1yeu7na, .framer-if1wW .framer-1td228e, .framer-if1wW .framer-df56uq, .framer-if1wW .framer-19cf7g9, .framer-if1wW .framer-pl9ixx, .framer-if1wW .framer-1antlst, .framer-if1wW .framer-1szgvjd, .framer-if1wW .framer-1qbok07, .framer-if1wW .framer-1lo2mik, .framer-if1wW .framer-82w7kr, .framer-if1wW .framer-160cauh, .framer-if1wW .framer-1g1m6sp, .framer-if1wW .framer-19a2725, .framer-if1wW .framer-1pv9xhd, .framer-if1wW .framer-qij4rc, .framer-if1wW .framer-5dx01u, .framer-if1wW .framer-c8i63h, .framer-if1wW .framer-1595li3, .framer-if1wW .framer-efgoyl { gap: 0px; } .framer-if1wW.framer-ma8tll > *, .framer-if1wW .framer-a468qo > *, .framer-if1wW .framer-ih7fh9 > *, .framer-if1wW .framer-yfvfk6 > *, .framer-if1wW .framer-eroa28 > *, .framer-if1wW .framer-8odawo > *, .framer-if1wW .framer-1szgvjd > *, .framer-if1wW .framer-1g1m6sp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-if1wW.framer-ma8tll > :first-child, .framer-if1wW .framer-a468qo > :first-child, .framer-if1wW .framer-ih7fh9 > :first-child, .framer-if1wW .framer-yfvfk6 > :first-child, .framer-if1wW .framer-eroa28 > :first-child, .framer-if1wW .framer-8odawo > :first-child, .framer-if1wW .framer-1yeu7na > :first-child, .framer-if1wW .framer-df56uq > :first-child, .framer-if1wW .framer-1antlst > :first-child, .framer-if1wW .framer-1szgvjd > :first-child, .framer-if1wW .framer-1qbok07 > :first-child, .framer-if1wW .framer-1lo2mik > :first-child, .framer-if1wW .framer-160cauh > :first-child, .framer-if1wW .framer-1g1m6sp > :first-child, .framer-if1wW .framer-19a2725 > :first-child, .framer-if1wW .framer-1pv9xhd > :first-child, .framer-if1wW .framer-5dx01u > :first-child, .framer-if1wW .framer-c8i63h > :first-child { margin-top: 0px; } .framer-if1wW.framer-ma8tll > :last-child, .framer-if1wW .framer-a468qo > :last-child, .framer-if1wW .framer-ih7fh9 > :last-child, .framer-if1wW .framer-yfvfk6 > :last-child, .framer-if1wW .framer-eroa28 > :last-child, .framer-if1wW .framer-8odawo > :last-child, .framer-if1wW .framer-1yeu7na > :last-child, .framer-if1wW .framer-df56uq > :last-child, .framer-if1wW .framer-1antlst > :last-child, .framer-if1wW .framer-1szgvjd > :last-child, .framer-if1wW .framer-1qbok07 > :last-child, .framer-if1wW .framer-1lo2mik > :last-child, .framer-if1wW .framer-160cauh > :last-child, .framer-if1wW .framer-1g1m6sp > :last-child, .framer-if1wW .framer-19a2725 > :last-child, .framer-if1wW .framer-1pv9xhd > :last-child, .framer-if1wW .framer-5dx01u > :last-child, .framer-if1wW .framer-c8i63h > :last-child { margin-bottom: 0px; } .framer-if1wW .framer-91586z > *, .framer-if1wW .framer-1rp1vrx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-if1wW .framer-91586z > :first-child, .framer-if1wW .framer-l01dgn > :first-child, .framer-if1wW .framer-9sdhf3 > :first-child, .framer-if1wW .framer-1rp1vrx > :first-child, .framer-if1wW .framer-1td228e > :first-child, .framer-if1wW .framer-19cf7g9 > :first-child, .framer-if1wW .framer-pl9ixx > :first-child, .framer-if1wW .framer-82w7kr > :first-child, .framer-if1wW .framer-qij4rc > :first-child, .framer-if1wW .framer-1595li3 > :first-child, .framer-if1wW .framer-efgoyl > :first-child { margin-left: 0px; } .framer-if1wW .framer-91586z > :last-child, .framer-if1wW .framer-l01dgn > :last-child, .framer-if1wW .framer-9sdhf3 > :last-child, .framer-if1wW .framer-1rp1vrx > :last-child, .framer-if1wW .framer-1td228e > :last-child, .framer-if1wW .framer-19cf7g9 > :last-child, .framer-if1wW .framer-pl9ixx > :last-child, .framer-if1wW .framer-82w7kr > :last-child, .framer-if1wW .framer-qij4rc > :last-child, .framer-if1wW .framer-1595li3 > :last-child, .framer-if1wW .framer-efgoyl > :last-child { margin-right: 0px; } .framer-if1wW .framer-l01dgn > *, .framer-if1wW .framer-9sdhf3 > *, .framer-if1wW .framer-1td228e > *, .framer-if1wW .framer-19cf7g9 > *, .framer-if1wW .framer-qij4rc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-if1wW .framer-1yeu7na > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-if1wW .framer-df56uq > *, .framer-if1wW .framer-1qbok07 > *, .framer-if1wW .framer-1lo2mik > *, .framer-if1wW .framer-c8i63h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-if1wW .framer-pl9ixx > *, .framer-if1wW .framer-82w7kr > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-if1wW .framer-1antlst > *, .framer-if1wW .framer-160cauh > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-if1wW .framer-19a2725 > *, .framer-if1wW .framer-1pv9xhd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-if1wW .framer-5dx01u > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-if1wW .framer-1595li3 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-if1wW .framer-efgoyl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-if1wW .hidden-ma8tll { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-if1wW .hidden-bqmpjf { display: none !important; } .${metadata.bodyClassName}-framer-if1wW { background: white; } .framer-if1wW.framer-ma8tll { width: 810px; } .framer-if1wW .framer-pl9ixx { gap: 10px; } .framer-if1wW .framer-conmdd { height: var(--framer-aspect-ratio-supported, 149px); } .framer-if1wW .framer-1szgvjd { min-width: unset; } .framer-if1wW .framer-fg6nx5 { height: var(--framer-aspect-ratio-supported, 210px); } .framer-if1wW .framer-1pv9xhd { align-content: center; align-items: center; padding: 40px 40px 40px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-if1wW .framer-pl9ixx { gap: 0px; } .framer-if1wW .framer-pl9ixx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-if1wW .framer-pl9ixx > :first-child { margin-left: 0px; } .framer-if1wW .framer-pl9ixx > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-if1wW .hidden-voti9v { display: none !important; } .${metadata.bodyClassName}-framer-if1wW { background: white; } .framer-if1wW.framer-ma8tll { width: 390px; } .framer-if1wW .framer-91586z, .framer-if1wW .framer-1td228e, .framer-if1wW .framer-pl9ixx, .framer-if1wW .framer-82w7kr { flex-direction: column; } .framer-if1wW .framer-l01dgn { align-self: unset; flex: none; height: 566px; width: 100%; } .framer-if1wW .framer-9sdhf3 { flex: none; height: 566px; width: 100%; } .framer-if1wW .framer-df56uq { flex: none; order: 1; width: 100%; } .framer-if1wW .framer-1antlst, .framer-if1wW .framer-160cauh { flex: none; width: 100%; } .framer-if1wW .framer-conmdd { height: var(--framer-aspect-ratio-supported, 270px); } .framer-if1wW .framer-1qbok07 { align-self: unset; order: 0; width: 100%; } .framer-if1wW .framer-fg6nx5 { height: var(--framer-aspect-ratio-supported, 290px); } .framer-if1wW .framer-19a2725 { padding: 60px 60px 60px 60px; } .framer-if1wW .framer-ahbhqh { height: var(--framer-aspect-ratio-supported, 58px); } .framer-if1wW .framer-1pv9xhd { align-content: center; align-items: center; padding: 20px 20px 20px 20px; } .framer-if1wW .framer-5dx01u { padding: 40px 20px 40px 20px; } .framer-if1wW .framer-yrqvrs { order: 3; } .framer-if1wW .framer-c8i63h { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 102px; order: 0; padding: 0px 20px 0px 20px; width: 100%; } .framer-if1wW .framer-1595li3 { flex-direction: column; flex-wrap: wrap; gap: 20px; } .framer-if1wW .framer-1j257ee { max-width: 170px; order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-if1wW .framer-efgoyl { flex-wrap: wrap; max-width: 190px; order: 2; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-if1wW .framer-91586z, .framer-if1wW .framer-1td228e, .framer-if1wW .framer-pl9ixx, .framer-if1wW .framer-82w7kr, .framer-if1wW .framer-c8i63h, .framer-if1wW .framer-1595li3 { gap: 0px; } .framer-if1wW .framer-91586z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-if1wW .framer-91586z > :first-child, .framer-if1wW .framer-1td228e > :first-child, .framer-if1wW .framer-pl9ixx > :first-child, .framer-if1wW .framer-82w7kr > :first-child, .framer-if1wW .framer-1595li3 > :first-child { margin-top: 0px; } .framer-if1wW .framer-91586z > :last-child, .framer-if1wW .framer-1td228e > :last-child, .framer-if1wW .framer-pl9ixx > :last-child, .framer-if1wW .framer-82w7kr > :last-child, .framer-if1wW .framer-1595li3 > :last-child { margin-bottom: 0px; } .framer-if1wW .framer-1td228e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-if1wW .framer-pl9ixx > *, .framer-if1wW .framer-82w7kr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-if1wW .framer-c8i63h > * { margin: 0px; margin-left: calc(102px / 2); margin-right: calc(102px / 2); } .framer-if1wW .framer-c8i63h > :first-child { margin-left: 0px; } .framer-if1wW .framer-c8i63h > :last-child { margin-right: 0px; } .framer-if1wW .framer-1595li3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-if1wW[data-border=\"true\"]::after, .framer-if1wW [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 2972\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l7QtWyUbM\":{\"layout\":[\"fixed\",\"auto\"]},\"kt4NOUl18\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerlaUnpVNgL=withCSS(Component,css,\"framer-if1wW\");export default FramerlaUnpVNgL;FramerlaUnpVNgL.displayName=\"Page\";FramerlaUnpVNgL.defaultProps={height:2972,width:1200};addFonts(FramerlaUnpVNgL,[{explicitInter:true,fonts:[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Afacad\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfvLqWmU08mCgdfM.woff2\",weight:\"700\"},{family:\"Afacad\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/afacad/v1/6NUK8FKMIQOGaw6wjYT7ZHG_zsBBfhXtWmU08mCgdfM.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"}]},...NavBarFonts,...FramerShopAddToCartFonts,...AccordionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlaUnpVNgL\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2972\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l7QtWyUbM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kt4NOUl18\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FramerShopAddToCart", "props", "AddToCart", "cart", "item", "cartUpdateEvents", "containerStyle", "iconStyle", "u", "p", "e", "addPropertyControls", "ControlType", "showIcon", "showBorders", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapttjp7p", "args", "onTap1gic1ax", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "FramerjA7OHX4Ey", "withCSS", "jA7OHX4Ey_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "jA7OHX4Ey_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "jA7OHX4Ey_default", "css", "Framerkfjj2RXPG", "withCSS", "kfjj2RXPG_default", "addFonts", "RowFonts", "NavBarFonts", "getFonts", "E3Isz3A3G_default", "FramerShopAddToCartFonts", "FramerShopAddToCart", "AccordionFonts", "kfjj2RXPG_default", "MotionDivWithFX", "withFX", "motion", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "animation2", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "toImageSrc", "QueryData", "query", "children", "data", "useQueryData", "animation3", "transition2", "animation4", "transition3", "animation5", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "I5mW0oa3Y_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "CNN7o7eLl", "HnpLQgSaT", "jpeZzsj1g", "SekXsOTxA", "PMyprb5fO", "HdXu5BCCcoq60J6oLO", "CNN7o7eLloq60J6oLO", "jpeZzsj1goq60J6oLO", "tsjMik4vToq60J6oLO", "SekXsOTxAoq60J6oLO", "idoq60J6oLO", "tsjMik4vT", "hq1AZSkoy", "HdXu5BCCcxJbtVpAXR", "CNN7o7eLlxJbtVpAXR", "jpeZzsj1gxJbtVpAXR", "tsjMik4vTxJbtVpAXR", "SekXsOTxAxJbtVpAXR", "idxJbtVpAXR", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "E3Isz3A3G_default", "PropertyOverrides", "Image2", "optimizeAppear", "RichText", "x", "FramerShopAddToCart", "collection", "i", "_enumToDisplayNameFunctions_tsjMik4vT", "textContent1", "enumToDisplayNameFunctions", "textContent2", "PathVariablesContext", "Link", "kfjj2RXPG_default", "collection1", "textContent3", "textContent4", "MotionDivWithFX", "SVG", "css", "FramerlaUnpVNgL", "withCSS", "laUnpVNgL_default", "addFonts", "NavBarFonts", "FramerShopAddToCartFonts", "AccordionFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
