{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/PvJS6HBsE4IjXXRcKQZ9/4qj3kS2yfbfJ62G3gqOk/componentPresets.js", "ssg:https://framerusercontent.com/modules/r4pgFRr6nuqGsgSW0S7n/OSz5E4sJYYkWsL6fDjMN/Pey0EpJb2.js", "ssg:https://framerusercontent.com/modules/C0gdLzAhcfUBhEXgNu6R/gaVGEUhH0AD2AZCZedcQ/awWjYMO67.js", "ssg:https://framerusercontent.com/modules/rfdNX9NyPZkjxVHen1m5/5tqDLPo2qOx2znbJ84AJ/OGoxOsqO_.js", "ssg:https://framerusercontent.com/modules/R7mt7IqLYR7uElGwQZVW/gMCnrxBwpZgK20re9bGt/U1XNfh_cl.js", "ssg:https://framerusercontent.com/modules/riiPzyJU0YGiu5WIdATo/NPpbYozwFnBot73k7Oy0/pNGelglDo.js", "ssg:https://framerusercontent.com/modules/IDMLN9vv0cY1UQ4u3puL/6r6pycJ7PDBsvXe7RxBe/XvAhyBnR7.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (56d1180)\nexport const props={zQAts0Ye6:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={zQAts0Ye6:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4c8d0fb)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as componentPresets from\"https://framerusercontent.com/modules/PvJS6HBsE4IjXXRcKQZ9/4qj3kS2yfbfJ62G3gqOk/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HCRQ0gYEcYOm9aH9ivMT/6S7vv6hktbhOPA9XXyON/RxychoDw2.js\";const PhosphorFonts=getFonts(Phosphor);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"s5T2gRtjo\",\"kozv0DxW7\",\"OxiCDrGs6\",\"SsCUCtpCQ\"];const serializationHash=\"framer-Mxfow\";const variantClassNames={kozv0DxW7:\"framer-v-1ycxim8\",OxiCDrGs6:\"framer-v-1u7ktw5\",s5T2gRtjo:\"framer-v-1cabsrj\",SsCUCtpCQ:\"framer-v-14mof4\"};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={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Closed - Embedded\":\"OxiCDrGs6\",\"Open - Embedded\":\"SsCUCtpCQ\",Closed:\"s5T2gRtjo\",Open:\"kozv0DxW7\"};const getProps=({answer,height,id,nutrition,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,C6yhVxZjO:(_ref=title!==null&&title!==void 0?title:props.C6yhVxZjO)!==null&&_ref!==void 0?_ref:\"title here\",dOF1tsAVT:nutrition!==null&&nutrition!==void 0?nutrition:props.dOF1tsAVT,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"s5T2gRtjo\",WEuGAX7eH:(_ref2=answer!==null&&answer!==void 0?answer:props.WEuGAX7eH)!==null&&_ref2!==void 0?_ref2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Product info\"})})};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,C6yhVxZjO,dOF1tsAVT,WEuGAX7eH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s5T2gRtjo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap55jwyd=activeVariantCallback(async(...args)=>{setVariant(\"kozv0DxW7\");});const onTap1ftmqwf=activeVariantCallback(async(...args)=>{setVariant(\"s5T2gRtjo\");});const onTap8j8uho=activeVariantCallback(async(...args)=>{setVariant(\"SsCUCtpCQ\");});const onTap199ba1p=activeVariantCallback(async(...args)=>{setVariant(\"OxiCDrGs6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"kozv0DxW7\",\"SsCUCtpCQ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"SsCUCtpCQ\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"kozv0DxW7\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cabsrj\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"s5T2gRtjo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({kozv0DxW7:{\"data-framer-name\":\"Open\"},OxiCDrGs6:{\"data-framer-name\":\"Closed - Embedded\"},SsCUCtpCQ:{\"data-framer-name\":\"Open - Embedded\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14wiso7\",\"data-framer-name\":\"Container\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qP8UEBiHC\",onTap:onTap55jwyd,...addPropertyOverrides({kozv0DxW7:{onTap:onTap1ftmqwf},OxiCDrGs6:{onTap:onTap8j8uho},SsCUCtpCQ:{onTap:onTap199ba1p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:\"title here\"})}),className:\"framer-14ucnlc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GMPXTbI7y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:C6yhVxZjO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mseda9\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"suZ8PJAeg\",onTap:onTap55jwyd,style:{rotate:0},variants:{kozv0DxW7:{rotate:180},SsCUCtpCQ:{rotate:180}},...addPropertyOverrides({kozv0DxW7:{\"data-highlight\":undefined,onTap:undefined},OxiCDrGs6:{\"data-highlight\":undefined,onTap:undefined},SsCUCtpCQ:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dx0k4-container\",layoutDependency:layoutDependency,layoutId:\"IsOVZA_H1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"IsOVZA_H1\",layoutId:\"IsOVZA_H1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vh3j4l\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"mzntLSLip\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zQAts0Ye6\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:WEuGAX7eH,className:\"framer-16tu1lj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vsnXHz0xu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{p:\"framer-styles-preset-14obhe3\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i0v13p-container\",layoutDependency:layoutDependency,layoutId:\"FZVkL7Y8z-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:dOF1tsAVT,id:\"FZVkL7Y8z\",layoutId:\"FZVkL7Y8z\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kebwyq\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"E1gsCNz0v\",style:{backgroundColor:\"rgb(234, 234, 234)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Mxfow.framer-1h4ijue, .framer-Mxfow .framer-1h4ijue { display: block; }\",\".framer-Mxfow.framer-1cabsrj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 768px; }\",\".framer-Mxfow .framer-14wiso7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px 8px 0px 0px; position: relative; width: 100%; }\",\".framer-Mxfow .framer-14ucnlc { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Mxfow .framer-1mseda9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Mxfow .framer-6dx0k4-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-Mxfow .framer-vh3j4l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-Mxfow .framer-16tu1lj, .framer-Mxfow .framer-i0v13p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Mxfow .framer-1kebwyq { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Mxfow.framer-1cabsrj, .framer-Mxfow .framer-14wiso7, .framer-Mxfow .framer-1mseda9, .framer-Mxfow .framer-vh3j4l { gap: 0px; } .framer-Mxfow.framer-1cabsrj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Mxfow.framer-1cabsrj > :first-child, .framer-Mxfow .framer-vh3j4l > :first-child { margin-top: 0px; } .framer-Mxfow.framer-1cabsrj > :last-child, .framer-Mxfow .framer-vh3j4l > :last-child { margin-bottom: 0px; } .framer-Mxfow .framer-14wiso7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Mxfow .framer-14wiso7 > :first-child, .framer-Mxfow .framer-1mseda9 > :first-child { margin-left: 0px; } .framer-Mxfow .framer-14wiso7 > :last-child, .framer-Mxfow .framer-1mseda9 > :last-child { margin-right: 0px; } .framer-Mxfow .framer-1mseda9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Mxfow .framer-vh3j4l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Mxfow.framer-v-1ycxim8 .framer-14wiso7, .framer-Mxfow.framer-v-14mof4 .framer-14wiso7 { order: 0; }\",\".framer-Mxfow.framer-v-1ycxim8 .framer-1mseda9, .framer-Mxfow.framer-v-1u7ktw5 .framer-1mseda9, .framer-Mxfow.framer-v-14mof4 .framer-1mseda9 { cursor: unset; }\",\".framer-Mxfow.framer-v-1ycxim8 .framer-vh3j4l, .framer-Mxfow.framer-v-14mof4 .framer-vh3j4l { order: 2; padding: 0px 0px 16px 0px; }\",\".framer-Mxfow.framer-v-1ycxim8 .framer-1kebwyq, .framer-Mxfow.framer-v-14mof4 .framer-1kebwyq { order: 3; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 57\n * @framerIntrinsicWidth 768\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kozv0DxW7\":{\"layout\":[\"fixed\",\"auto\"]},\"OxiCDrGs6\":{\"layout\":[\"fixed\",\"auto\"]},\"SsCUCtpCQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"C6yhVxZjO\":\"title\",\"dOF1tsAVT\":\"nutrition\",\"WEuGAX7eH\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPey0EpJb2=withCSS(Component,css,\"framer-Mxfow\");export default FramerPey0EpJb2;FramerPey0EpJb2.displayName=\"Product Accordion\";FramerPey0EpJb2.defaultProps={height:57,width:768};addPropertyControls(FramerPey0EpJb2,{variant:{options:[\"s5T2gRtjo\",\"kozv0DxW7\",\"OxiCDrGs6\",\"SsCUCtpCQ\"],optionTitles:[\"Closed\",\"Open\",\"Closed - Embedded\",\"Open - Embedded\"],title:\"Variant\",type:ControlType.Enum},C6yhVxZjO:{defaultValue:\"title here\",displayTextArea:false,title:\"Title\",type:ControlType.String},dOF1tsAVT:{defaultValue:\"\",displayTextArea:true,title:\"Nutrition\",type:ControlType.String},WEuGAX7eH:{defaultValue:\"<p>Product info</p>\",title:\"Answer\",type:ControlType.RichText}});addFonts(FramerPey0EpJb2,[{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://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"zQAts0Ye6\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"zQAts0Ye6\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPey0EpJb2\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"768\",\"framerIntrinsicHeight\":\"57\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"C6yhVxZjO\\\":\\\"title\\\",\\\"dOF1tsAVT\\\":\\\"nutrition\\\",\\\"WEuGAX7eH\\\":\\\"answer\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kozv0DxW7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OxiCDrGs6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SsCUCtpCQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pey0EpJb2.map", "// Generated by Framer (ddd30d5)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as componentPresets from\"https://framerusercontent.com/modules/PvJS6HBsE4IjXXRcKQZ9/4qj3kS2yfbfJ62G3gqOk/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HCRQ0gYEcYOm9aH9ivMT/6S7vv6hktbhOPA9XXyON/RxychoDw2.js\";import ProductAccordion from\"https://framerusercontent.com/modules/r4pgFRr6nuqGsgSW0S7n/OSz5E4sJYYkWsL6fDjMN/Pey0EpJb2.js\";const ProductAccordionFonts=getFonts(ProductAccordion);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"TqN6HMzqR\",\"XKfWj2XVs\",\"FXoohjXCZ\",\"tveRQYHDP\",\"EtxZ0YONr\"];const serializationHash=\"framer-MIOgY\";const variantClassNames={EtxZ0YONr:\"framer-v-1xcew4e\",FXoohjXCZ:\"framer-v-1inko2a\",TqN6HMzqR:\"framer-v-1muym5c\",tveRQYHDP:\"framer-v-rj63k\",XKfWj2XVs:\"framer-v-csfoem\"};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={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Description\":\"TqN6HMzqR\",\"Desktop - Nutrition\":\"XKfWj2XVs\",\"Mobile - Description\":\"FXoohjXCZ\",\"Mobile - Nutrition\":\"EtxZ0YONr\",\"Mobile - Product Info\":\"tveRQYHDP\"};const getProps=({description,foodAnalysis,height,id,nutrition,productInfo,sizeAndPackaging,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,AG3DMONss:(_ref=sizeAndPackaging!==null&&sizeAndPackaging!==void 0?sizeAndPackaging:props.AG3DMONss)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Product info\"})}),hEY7XUg1A:(_ref1=productInfo!==null&&productInfo!==void 0?productInfo:props.hEY7XUg1A)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"This premium flour is crafted from a hearty blend of organic, stone-ground grains, including wholesome wheat, nutty brown rice, golden corn, rich rye, hearty oats, nutritious millet, and robust barley. With a base of finely ground, unbleached wheat flour that retains 75%\u201380% of the germ and bran, each batch brings superior nutrition and a naturally full-bodied taste.Perfect for bread machines, this blend bakes into a beautifully dense loaf with a warm, nutty flavor and a satisfying crunch that elevates every bite. Proudly grown and harvested in the USA, our flour is certified organic and Kosher-approved, guaranteeing quality you can trust and taste you\u2019ll love.\"})}),ooNlKroAP:(_ref2=foodAnalysis!==null&&foodAnalysis!==void 0?foodAnalysis:props.ooNlKroAP)!==null&&_ref2!==void 0?_ref2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Product info\"})}),QPfyjSPYh:(_ref3=nutrition!==null&&nutrition!==void 0?nutrition:props.QPfyjSPYh)!==null&&_ref3!==void 0?_ref3:\"nutrition\",raLzC8vQ5:(_ref4=description!==null&&description!==void 0?description:props.raLzC8vQ5)!==null&&_ref4!==void 0?_ref4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"This premium flour is crafted from a hearty blend of organic, stone-ground grains, including wholesome wheat, nutty brown rice, golden corn, rich rye, hearty oats, nutritious millet, and robust barley. With a base of finely ground, unbleached wheat flour that retains 75%\u201380% of the germ and bran, each batch brings superior nutrition and a naturally full-bodied taste.Perfect for bread machines, this blend bakes into a beautifully dense loaf with a warm, nutty flavor and a satisfying crunch that elevates every bite. Proudly grown and harvested in the USA, our flour is certified organic and Kosher-approved, guaranteeing quality you can trust and taste you\u2019ll love.\"})}),variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"TqN6HMzqR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,raLzC8vQ5,hEY7XUg1A,QPfyjSPYh,ooNlKroAP,AG3DMONss,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TqN6HMzqR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"tveRQYHDP\")return true;return false;};const isDisplayed1=()=>{if([\"XKfWj2XVs\",\"EtxZ0YONr\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1muym5c\",className,classNames),\"data-framer-name\":\"Desktop - Description\",layoutDependency:layoutDependency,layoutId:\"TqN6HMzqR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EtxZ0YONr:{\"data-framer-name\":\"Mobile - Nutrition\"},FXoohjXCZ:{\"data-framer-name\":\"Mobile - Description\"},tveRQYHDP:{\"data-framer-name\":\"Mobile - Product Info\"},XKfWj2XVs:{\"data-framer-name\":\"Desktop - Nutrition\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iy2nip-container\",layoutDependency:layoutDependency,layoutId:\"zv4x2QgRO-container\",children:/*#__PURE__*/_jsx(ProductAccordion,{C6yhVxZjO:\"Description\",dOF1tsAVT:\"\",height:\"100%\",id:\"zv4x2QgRO\",layoutId:\"zv4x2QgRO\",style:{width:\"100%\"},variant:\"kozv0DxW7\",WEuGAX7eH:raLzC8vQ5,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+57,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lfcz3h-container\",layoutDependency:layoutDependency,layoutId:\"zcOgswqMo-container\",children:/*#__PURE__*/_jsx(ProductAccordion,{C6yhVxZjO:\"Size & Packaging Options\",dOF1tsAVT:\"\",height:\"100%\",id:\"zcOgswqMo\",layoutId:\"zcOgswqMo\",style:{width:\"100%\"},variant:\"s5T2gRtjo\",WEuGAX7eH:AG3DMONss,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+114,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xiwh0h-container\",layoutDependency:layoutDependency,layoutId:\"AtgvdaiKe-container\",children:/*#__PURE__*/_jsx(ProductAccordion,{C6yhVxZjO:\"Food Analysis\",dOF1tsAVT:\"\",height:\"100%\",id:\"AtgvdaiKe\",layoutId:\"AtgvdaiKe\",style:{width:\"100%\"},variant:\"s5T2gRtjo\",WEuGAX7eH:ooNlKroAP,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+171,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tpnn4q-container\",layoutDependency:layoutDependency,layoutId:\"Bg26mWstD-container\",children:/*#__PURE__*/_jsx(ProductAccordion,{C6yhVxZjO:\"Nutrition Facts\",dOF1tsAVT:QPfyjSPYh,height:\"100%\",id:\"Bg26mWstD\",layoutId:\"Bg26mWstD\",style:{width:\"100%\"},variant:\"OxiCDrGs6\",WEuGAX7eH:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Product info\"})}),width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kgwr8l\",\"data-framer-name\":\"Product Info\",layoutDependency:layoutDependency,layoutId:\"fG6ZeZEEg\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"zQAts0Ye6\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hEY7XUg1A,className:\"framer-1fixpvt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jUcdn4uxV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{p:\"framer-styles-preset-14obhe3\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wey0fp\",\"data-framer-name\":\"Nutrition\",layoutDependency:layoutDependency,layoutId:\"DKHc0oBCt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ta4lwj-container\",layoutDependency:layoutDependency,layoutId:\"yVxhVNN6s-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:QPfyjSPYh,id:\"yVxhVNN6s\",layoutId:\"yVxhVNN6s\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MIOgY.framer-1f3ptam, .framer-MIOgY .framer-1f3ptam { display: block; }\",\".framer-MIOgY.framer-1muym5c { 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; padding: 0px; position: relative; width: 800px; }\",\".framer-MIOgY .framer-iy2nip-container, .framer-MIOgY .framer-lfcz3h-container, .framer-MIOgY .framer-1xiwh0h-container, .framer-MIOgY .framer-1tpnn4q-container, .framer-MIOgY .framer-ta4lwj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MIOgY .framer-1kgwr8l { 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 16px 0px; position: relative; width: 100%; }\",\".framer-MIOgY .framer-1fixpvt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MIOgY .framer-wey0fp { 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: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MIOgY.framer-1muym5c, .framer-MIOgY .framer-1kgwr8l, .framer-MIOgY .framer-wey0fp { gap: 0px; } .framer-MIOgY.framer-1muym5c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MIOgY.framer-1muym5c > :first-child, .framer-MIOgY .framer-1kgwr8l > :first-child, .framer-MIOgY .framer-wey0fp > :first-child { margin-top: 0px; } .framer-MIOgY.framer-1muym5c > :last-child, .framer-MIOgY .framer-1kgwr8l > :last-child, .framer-MIOgY .framer-wey0fp > :last-child { margin-bottom: 0px; } .framer-MIOgY .framer-1kgwr8l > *, .framer-MIOgY .framer-wey0fp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 401\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XKfWj2XVs\":{\"layout\":[\"fixed\",\"auto\"]},\"FXoohjXCZ\":{\"layout\":[\"fixed\",\"auto\"]},\"tveRQYHDP\":{\"layout\":[\"fixed\",\"auto\"]},\"EtxZ0YONr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"raLzC8vQ5\":\"description\",\"hEY7XUg1A\":\"productInfo\",\"QPfyjSPYh\":\"nutrition\",\"ooNlKroAP\":\"foodAnalysis\",\"AG3DMONss\":\"sizeAndPackaging\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerawWjYMO67=withCSS(Component,css,\"framer-MIOgY\");export default FramerawWjYMO67;FramerawWjYMO67.displayName=\"Details\";FramerawWjYMO67.defaultProps={height:401,width:800};addPropertyControls(FramerawWjYMO67,{variant:{options:[\"TqN6HMzqR\",\"XKfWj2XVs\",\"FXoohjXCZ\",\"tveRQYHDP\",\"EtxZ0YONr\"],optionTitles:[\"Desktop - Description\",\"Desktop - Nutrition\",\"Mobile - Description\",\"Mobile - Product Info\",\"Mobile - Nutrition\"],title:\"Variant\",type:ControlType.Enum},raLzC8vQ5:{defaultValue:\"<p>This premium flour is crafted from a hearty blend of organic, stone-ground grains, including wholesome wheat, nutty brown rice, golden corn, rich rye, hearty oats, nutritious millet, and robust barley. With a base of finely ground, unbleached wheat flour that retains 75%\u201380% of the germ and bran, each batch brings superior nutrition and a naturally full-bodied taste.Perfect for bread machines, this blend bakes into a beautifully dense loaf with a warm, nutty flavor and a satisfying crunch that elevates every bite. Proudly grown and harvested in the USA, our flour is certified organic and Kosher-approved, guaranteeing quality you can trust and taste you\u2019ll love.</p>\",title:\"Description\",type:ControlType.RichText},hEY7XUg1A:{defaultValue:\"<p>This premium flour is crafted from a hearty blend of organic, stone-ground grains, including wholesome wheat, nutty brown rice, golden corn, rich rye, hearty oats, nutritious millet, and robust barley. With a base of finely ground, unbleached wheat flour that retains 75%\u201380% of the germ and bran, each batch brings superior nutrition and a naturally full-bodied taste.Perfect for bread machines, this blend bakes into a beautifully dense loaf with a warm, nutty flavor and a satisfying crunch that elevates every bite. Proudly grown and harvested in the USA, our flour is certified organic and Kosher-approved, guaranteeing quality you can trust and taste you\u2019ll love.</p>\",title:\"Product Info\",type:ControlType.RichText},QPfyjSPYh:{defaultValue:\"nutrition\",displayTextArea:false,title:\"Nutrition\",type:ControlType.String},ooNlKroAP:{defaultValue:\"<p>Product info</p>\",title:\"Food Analysis\",type:ControlType.RichText},AG3DMONss:{defaultValue:\"<p>Product info</p>\",title:\"Size and Packaging\",type:ControlType.RichText}});addFonts(FramerawWjYMO67,[{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://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ProductAccordionFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"zQAts0Ye6\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"zQAts0Ye6\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerawWjYMO67\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XKfWj2XVs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FXoohjXCZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tveRQYHDP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EtxZ0YONr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"raLzC8vQ5\\\":\\\"description\\\",\\\"hEY7XUg1A\\\":\\\"productInfo\\\",\\\"QPfyjSPYh\\\":\\\"nutrition\\\",\\\"ooNlKroAP\\\":\\\"foodAnalysis\\\",\\\"AG3DMONss\\\":\\\"sizeAndPackaging\\\"}\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"401\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./awWjYMO67.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-NIL4g .framer-styles-preset-1mi54wq:not(.rich-text-wrapper), .framer-NIL4g .framer-styles-preset-1mi54wq.rich-text-wrapper a { --framer-link-current-text-color: #303030; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #1079e8; --framer-link-text-decoration: none; }\"];export const className=\"framer-NIL4g\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rfdNX9NyPZkjxVHen1m5/5tqDLPo2qOx2znbJ84AJ/OGoxOsqO_.js\";const cycleOrder=[\"bgp1B6HRc\",\"FNEg8ZzrJ\"];const serializationHash=\"framer-JXZ8K\";const variantClassNames={bgp1B6HRc:\"framer-v-6h2lbn\",FNEg8ZzrJ:\"framer-v-jsf01\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Current:\"FNEg8ZzrJ\",Default:\"bgp1B6HRc\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,FxbGqyu9q:(_ref=title!==null&&title!==void 0?title:props.FxbGqyu9q)!==null&&_ref!==void 0?_ref:\"Link\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"bgp1B6HRc\",wbfPcFY48:link!==null&&link!==void 0?link:props.wbfPcFY48};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FxbGqyu9q,wbfPcFY48,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bgp1B6HRc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-6h2lbn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bgp1B6HRc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({FNEg8ZzrJ:{\"data-framer-name\":\"Current\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(16, 121, 232))\"},children:/*#__PURE__*/_jsx(Link,{href:wbfPcFY48,openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mi54wq\",\"data-styles-preset\":\"OGoxOsqO_\",children:\"Link\"})})})}),className:\"framer-1rpo557\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"O2htX1xc7\",style:{\"--extracted-r6o4lv\":\"rgb(16, 121, 232)\"},text:FxbGqyu9q,variants:{FNEg8ZzrJ:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FNEg8ZzrJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Link\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JXZ8K.framer-na1l5p, .framer-JXZ8K .framer-na1l5p { display: block; }\",\".framer-JXZ8K.framer-6h2lbn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-JXZ8K .framer-1rpo557 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JXZ8K.framer-6h2lbn { gap: 0px; } .framer-JXZ8K.framer-6h2lbn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JXZ8K.framer-6h2lbn > :first-child { margin-top: 0px; } .framer-JXZ8K.framer-6h2lbn > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 31.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FNEg8ZzrJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"FxbGqyu9q\":\"title\",\"wbfPcFY48\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerU1XNfh_cl=withCSS(Component,css,\"framer-JXZ8K\");export default FramerU1XNfh_cl;FramerU1XNfh_cl.displayName=\"Breadcrumb Item\";FramerU1XNfh_cl.defaultProps={height:19,width:31.5};addPropertyControls(FramerU1XNfh_cl,{variant:{options:[\"bgp1B6HRc\",\"FNEg8ZzrJ\"],optionTitles:[\"Default\",\"Current\"],title:\"Variant\",type:ControlType.Enum},FxbGqyu9q:{defaultValue:\"Link\",displayTextArea:false,title:\"Title\",type:ControlType.String},wbfPcFY48:{title:\"Link\",type:ControlType.Link}});addFonts(FramerU1XNfh_cl,[{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://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU1XNfh_cl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"19\",\"framerIntrinsicWidth\":\"31.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FNEg8ZzrJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"FxbGqyu9q\\\":\\\"title\\\",\\\"wbfPcFY48\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./U1XNfh_cl.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BreadcrumbItem from\"https://framerusercontent.com/modules/R7mt7IqLYR7uElGwQZVW/gMCnrxBwpZgK20re9bGt/U1XNfh_cl.js\";const BreadcrumbItemFonts=getFonts(BreadcrumbItem);const BreadcrumbItemControls=getPropertyControls(BreadcrumbItem);const cycleOrder=[\"OhXghsylm\",\"CwBdAdUBa\"];const serializationHash=\"framer-qbJwL\";const variantClassNames={CwBdAdUBa:\"framer-v-13yv7g4\",OhXghsylm:\"framer-v-jhhufq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Current:\"FNEg8ZzrJ\",Default:\"bgp1B6HRc\"};const humanReadableVariantMap={\"Variant 1\":\"OhXghsylm\",Variant:\"CwBdAdUBa\"};const getProps=({height,id,link1,link1Label,link1State,link1URL,link2,link2Label,link2State,link2URL,link3,link3Label,link3State,link3URL,link4,link4Label,link4State,link4URL,width,...props})=>{var _ref,_humanReadableEnumMap_link1State,_ref1,_ref2,_ref3,_humanReadableEnumMap_link2State,_ref4,_ref5,_ref6,_ref7,_humanReadableEnumMap_link3State,_ref8,_ref9,_humanReadableEnumMap_link4State,_ref10,_ref11,_humanReadableVariantMap_props_variant,_ref12,_ref13,_ref14;return{...props,AzeJ9_qun:(_ref=link2Label!==null&&link2Label!==void 0?link2Label:props.AzeJ9_qun)!==null&&_ref!==void 0?_ref:\"Link\",BQ9Zwd9p7:(_ref2=(_ref1=(_humanReadableEnumMap_link1State=humanReadableEnumMap[link1State])!==null&&_humanReadableEnumMap_link1State!==void 0?_humanReadableEnumMap_link1State:link1State)!==null&&_ref1!==void 0?_ref1:props.BQ9Zwd9p7)!==null&&_ref2!==void 0?_ref2:\"bgp1B6HRc\",BzALVTYKp:link4!==null&&link4!==void 0?link4:props.BzALVTYKp,enxZIgjKp:(_ref3=link3Label!==null&&link3Label!==void 0?link3Label:props.enxZIgjKp)!==null&&_ref3!==void 0?_ref3:\"Link\",KhlVzQcaT:link2URL!==null&&link2URL!==void 0?link2URL:props.KhlVzQcaT,kKcoPYtjT:link3!==null&&link3!==void 0?link3:props.kKcoPYtjT,optbET8Er:(_ref5=(_ref4=(_humanReadableEnumMap_link2State=humanReadableEnumMap[link2State])!==null&&_humanReadableEnumMap_link2State!==void 0?_humanReadableEnumMap_link2State:link2State)!==null&&_ref4!==void 0?_ref4:props.optbET8Er)!==null&&_ref5!==void 0?_ref5:\"bgp1B6HRc\",Pm6Q4Msj3:(_ref6=link4Label!==null&&link4Label!==void 0?link4Label:props.Pm6Q4Msj3)!==null&&_ref6!==void 0?_ref6:\"Link\",Qsks3ykAC:(_ref7=link1Label!==null&&link1Label!==void 0?link1Label:props.Qsks3ykAC)!==null&&_ref7!==void 0?_ref7:\"Link\",Qyw9HOVKZ:(_ref9=(_ref8=(_humanReadableEnumMap_link3State=humanReadableEnumMap[link3State])!==null&&_humanReadableEnumMap_link3State!==void 0?_humanReadableEnumMap_link3State:link3State)!==null&&_ref8!==void 0?_ref8:props.Qyw9HOVKZ)!==null&&_ref9!==void 0?_ref9:\"bgp1B6HRc\",RHFUNCo0M:link3URL!==null&&link3URL!==void 0?link3URL:props.RHFUNCo0M,RUNqBRQK0:(_ref11=(_ref10=(_humanReadableEnumMap_link4State=humanReadableEnumMap[link4State])!==null&&_humanReadableEnumMap_link4State!==void 0?_humanReadableEnumMap_link4State:link4State)!==null&&_ref10!==void 0?_ref10:props.RUNqBRQK0)!==null&&_ref11!==void 0?_ref11:\"bgp1B6HRc\",tJEgN7kCv:link1URL!==null&&link1URL!==void 0?link1URL:props.tJEgN7kCv,uTJZrQWPk:link4URL!==null&&link4URL!==void 0?link4URL:props.uTJZrQWPk,variant:(_ref12=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref12!==void 0?_ref12:\"OhXghsylm\",yPn5q0UCp:(_ref13=link2!==null&&link2!==void 0?link2:props.yPn5q0UCp)!==null&&_ref13!==void 0?_ref13:true,ZtQHzxd_H:(_ref14=link1!==null&&link1!==void 0?link1:props.ZtQHzxd_H)!==null&&_ref14!==void 0?_ref14:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZtQHzxd_H,yPn5q0UCp,kKcoPYtjT,BzALVTYKp,Qsks3ykAC,AzeJ9_qun,enxZIgjKp,Pm6Q4Msj3,tJEgN7kCv,KhlVzQcaT,RHFUNCo0M,uTJZrQWPk,BQ9Zwd9p7,optbET8Er,Qyw9HOVKZ,RUNqBRQK0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OhXghsylm\",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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-jhhufq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OhXghsylm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CwBdAdUBa:{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[ZtQHzxd_H&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n08vh6-container\",layoutDependency:layoutDependency,layoutId:\"Z35vmxj0j-container\",children:/*#__PURE__*/_jsx(BreadcrumbItem,{FxbGqyu9q:Qsks3ykAC,height:\"100%\",id:\"Z35vmxj0j\",layoutId:\"Z35vmxj0j\",variant:BQ9Zwd9p7,wbfPcFY48:tJEgN7kCv,width:\"100%\"})})}),yPn5q0UCp&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(57, 85, 128, 0.25))\"},children:\"/\"})}),className:\"framer-1ii2mqu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vTGHjeegD\",style:{\"--extracted-r6o4lv\":\"rgba(57, 85, 128, 0.25)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),yPn5q0UCp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ddvs7a-container\",layoutDependency:layoutDependency,layoutId:\"PKINAksVd-container\",children:/*#__PURE__*/_jsx(BreadcrumbItem,{FxbGqyu9q:AzeJ9_qun,height:\"100%\",id:\"PKINAksVd\",layoutId:\"PKINAksVd\",variant:optbET8Er,wbfPcFY48:KhlVzQcaT,width:\"100%\"})})}),kKcoPYtjT&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(57, 85, 128, 0.25))\"},children:\"/\"})}),className:\"framer-155dx21\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ATmbicYJW\",style:{\"--extracted-r6o4lv\":\"rgba(57, 85, 128, 0.25)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),kKcoPYtjT&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ot2xoy-container\",layoutDependency:layoutDependency,layoutId:\"wRGfTsi9F-container\",children:/*#__PURE__*/_jsx(BreadcrumbItem,{FxbGqyu9q:enxZIgjKp,height:\"100%\",id:\"wRGfTsi9F\",layoutId:\"wRGfTsi9F\",variant:Qyw9HOVKZ,wbfPcFY48:RHFUNCo0M,width:\"100%\"})})}),BzALVTYKp&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(57, 85, 128, 0.25))\"},children:\"/\"})}),className:\"framer-698fh2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kW3SstsrW\",style:{\"--extracted-r6o4lv\":\"rgba(57, 85, 128, 0.25)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),BzALVTYKp&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mk7m1f-container\",layoutDependency:layoutDependency,layoutId:\"HHIEeXZNL-container\",children:/*#__PURE__*/_jsx(BreadcrumbItem,{FxbGqyu9q:Pm6Q4Msj3,height:\"100%\",id:\"HHIEeXZNL\",layoutId:\"HHIEeXZNL\",variant:RUNqBRQK0,wbfPcFY48:uTJZrQWPk,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qbJwL.framer-1252rk9, .framer-qbJwL .framer-1252rk9 { display: block; }\",\".framer-qbJwL.framer-jhhufq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-qbJwL .framer-1n08vh6-container, .framer-qbJwL .framer-1ddvs7a-container, .framer-qbJwL .framer-ot2xoy-container, .framer-qbJwL .framer-mk7m1f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qbJwL .framer-1ii2mqu, .framer-qbJwL .framer-155dx21, .framer-qbJwL .framer-698fh2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qbJwL.framer-jhhufq { gap: 0px; } .framer-qbJwL.framer-jhhufq > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qbJwL.framer-jhhufq > :first-child { margin-left: 0px; } .framer-qbJwL.framer-jhhufq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"CwBdAdUBa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZtQHzxd_H\":\"link1\",\"yPn5q0UCp\":\"link2\",\"kKcoPYtjT\":\"link3\",\"BzALVTYKp\":\"link4\",\"Qsks3ykAC\":\"link1Label\",\"AzeJ9_qun\":\"link2Label\",\"enxZIgjKp\":\"link3Label\",\"Pm6Q4Msj3\":\"link4Label\",\"tJEgN7kCv\":\"link1URL\",\"KhlVzQcaT\":\"link2URL\",\"RHFUNCo0M\":\"link3URL\",\"uTJZrQWPk\":\"link4URL\",\"BQ9Zwd9p7\":\"link1State\",\"optbET8Er\":\"link2State\",\"Qyw9HOVKZ\":\"link3State\",\"RUNqBRQK0\":\"link4State\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpNGelglDo=withCSS(Component,css,\"framer-qbJwL\");export default FramerpNGelglDo;FramerpNGelglDo.displayName=\"Breadcrumb\";FramerpNGelglDo.defaultProps={height:70,width:32};addPropertyControls(FramerpNGelglDo,{variant:{options:[\"OhXghsylm\",\"CwBdAdUBa\"],optionTitles:[\"Variant 1\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},ZtQHzxd_H:{defaultValue:true,title:\"Link 1\",type:ControlType.Boolean},yPn5q0UCp:{defaultValue:true,title:\"Link 2\",type:ControlType.Boolean},kKcoPYtjT:{defaultValue:false,title:\"Link 3\",type:ControlType.Boolean},BzALVTYKp:{defaultValue:false,title:\"Link 4\",type:ControlType.Boolean},Qsks3ykAC:{defaultValue:\"Link\",displayTextArea:false,title:\"Link 1 Label\",type:ControlType.String},AzeJ9_qun:{defaultValue:\"Link\",displayTextArea:false,title:\"Link 2 Label\",type:ControlType.String},enxZIgjKp:{defaultValue:\"Link\",displayTextArea:false,title:\"Link 3 Label\",type:ControlType.String},Pm6Q4Msj3:{defaultValue:\"Link\",displayTextArea:false,title:\"Link 4 Label\",type:ControlType.String},tJEgN7kCv:{title:\"Link 1 URL\",type:ControlType.Link},KhlVzQcaT:{title:\"Link 2 URL\",type:ControlType.Link},RHFUNCo0M:{title:\"Link 3 URL\",type:ControlType.Link},uTJZrQWPk:{title:\"Link 4 URL\",type:ControlType.Link},BQ9Zwd9p7:(BreadcrumbItemControls===null||BreadcrumbItemControls===void 0?void 0:BreadcrumbItemControls[\"variant\"])&&{...BreadcrumbItemControls[\"variant\"],defaultValue:\"bgp1B6HRc\",description:undefined,hidden:undefined,title:\"Link 1 State\"},optbET8Er:(BreadcrumbItemControls===null||BreadcrumbItemControls===void 0?void 0:BreadcrumbItemControls[\"variant\"])&&{...BreadcrumbItemControls[\"variant\"],defaultValue:\"bgp1B6HRc\",description:undefined,hidden:undefined,title:\"Link 2 State\"},Qyw9HOVKZ:(BreadcrumbItemControls===null||BreadcrumbItemControls===void 0?void 0:BreadcrumbItemControls[\"variant\"])&&{...BreadcrumbItemControls[\"variant\"],defaultValue:\"bgp1B6HRc\",description:undefined,hidden:undefined,title:\"Link 3 State\"},RUNqBRQK0:(BreadcrumbItemControls===null||BreadcrumbItemControls===void 0?void 0:BreadcrumbItemControls[\"variant\"])&&{...BreadcrumbItemControls[\"variant\"],defaultValue:\"bgp1B6HRc\",description:undefined,hidden:undefined,title:\"Link 4 State\"}});addFonts(FramerpNGelglDo,[{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://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BreadcrumbItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpNGelglDo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"70\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CwBdAdUBa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"32\",\"framerVariables\":\"{\\\"ZtQHzxd_H\\\":\\\"link1\\\",\\\"yPn5q0UCp\\\":\\\"link2\\\",\\\"kKcoPYtjT\\\":\\\"link3\\\",\\\"BzALVTYKp\\\":\\\"link4\\\",\\\"Qsks3ykAC\\\":\\\"link1Label\\\",\\\"AzeJ9_qun\\\":\\\"link2Label\\\",\\\"enxZIgjKp\\\":\\\"link3Label\\\",\\\"Pm6Q4Msj3\\\":\\\"link4Label\\\",\\\"tJEgN7kCv\\\":\\\"link1URL\\\",\\\"KhlVzQcaT\\\":\\\"link2URL\\\",\\\"RHFUNCo0M\\\":\\\"link3URL\\\",\\\"uTJZrQWPk\\\":\\\"link4URL\\\",\\\"BQ9Zwd9p7\\\":\\\"link1State\\\",\\\"optbET8Er\\\":\\\"link2State\\\",\\\"Qyw9HOVKZ\\\":\\\"link3State\\\",\\\"RUNqBRQK0\\\":\\\"link4State\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pNGelglDo.map", "// Generated by Framer (01933e6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Details from\"https://framerusercontent.com/modules/C0gdLzAhcfUBhEXgNu6R/gaVGEUhH0AD2AZCZedcQ/awWjYMO67.js\";import Button from\"https://framerusercontent.com/modules/zlYCXMIH6L7uN6xCqRmu/vVrfReJa7WITiScObg9d/DI8mvw2qg.js\";import Breadcrumb from\"https://framerusercontent.com/modules/riiPzyJU0YGiu5WIdATo/NPpbYozwFnBot73k7Oy0/pNGelglDo.js\";const BreadcrumbFonts=getFonts(Breadcrumb);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const DetailsFonts=getFonts(Details);const ButtonFonts=getFonts(Button);const cycleOrder=[\"famX4qPeZ\",\"UreUoMBgu\",\"q5VcUU8no\"];const serializationHash=\"framer-3ZU0m\";const variantClassNames={famX4qPeZ:\"framer-v-44fl0e\",q5VcUU8no:\"framer-v-168obv4\",UreUoMBgu:\"framer-v-rptmdc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"famX4qPeZ\",Mobile:\"UreUoMBgu\",Variant:\"q5VcUU8no\"};const getProps=({description,foodAnalysis,height,id,image,link2Label,link2URL,name1,nutrition,productInfo,sizeAndPackaging,width,...props})=>{return{...props,A6mxY0k3R:productInfo??props.A6mxY0k3R??/*#__PURE__*/_jsx(React.Fragment,{}),aBoA9QS89:image??props.aBoA9QS89,cN3R3dzLf:foodAnalysis??props.cN3R3dzLf??/*#__PURE__*/_jsx(React.Fragment,{}),cvgXiLCfV:link2URL??props.cvgXiLCfV,Dikboaysv:description??props.Dikboaysv??/*#__PURE__*/_jsx(React.Fragment,{}),E8t9YyYfF:link2Label??props.E8t9YyYfF??\"Organic & Specialty Baking Flour\",Eq3NE_brJ:sizeAndPackaging??props.Eq3NE_brJ??/*#__PURE__*/_jsx(React.Fragment,{}),lbrvvrkRR:nutrition??props.lbrvvrkRR,r75LZ5hbf:name1??props.r75LZ5hbf??\"All Purpose Flour\",variant:humanReadableVariantMap[props.variant]??props.variant??\"famX4qPeZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E8t9YyYfF,r75LZ5hbf,aBoA9QS89,A6mxY0k3R,Dikboaysv,lbrvvrkRR,Eq3NE_brJ,cN3R3dzLf,cvgXiLCfV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"famX4qPeZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"q5VcUU8no\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"UreUoMBgu\")return true;return false;};const isDisplayed2=()=>{if([\"UreUoMBgu\",\"q5VcUU8no\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"q5VcUU8no\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-44fl0e\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"famX4qPeZ\",ref:ref??ref1,style:{...style},...addPropertyOverrides({q5VcUU8no:{\"data-framer-name\":undefined},UreUoMBgu:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-1rvglcu\",\"data-framer-appear-id\":\"1rvglcu\",layoutDependency:layoutDependency,layoutId:\"pVbMc18HN\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{UreUoMBgu:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 234, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({UreUoMBgu:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-border\":true,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-5m4r13\",\"data-framer-appear-id\":\"5m4r13\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"OooqdvNlS\",optimized:true,transformTemplate:transformTemplate1,...addPropertyOverrides({UreUoMBgu:{animate:undefined,initial:undefined,optimized:undefined,transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wlm5ta\",layoutDependency:layoutDependency,layoutId:\"pyH6LuwPE\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cuct7_bPB\"},implicitPathVariables:undefined},{href:{webPageId:\"cuct7_bPB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"1388px\",y:(componentViewport?.y||0)+0+0+-91.5+0+63.00000000000004,...addPropertyOverrides({UreUoMBgu:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 800px) - 48px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-udd5k-container\",layoutDependency:layoutDependency,layoutId:\"YssX7usJc-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({UreUoMBgu:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Breadcrumb,{AzeJ9_qun:E8t9YyYfF,BQ9Zwd9p7:\"bgp1B6HRc\",BzALVTYKp:false,enxZIgjKp:r75LZ5hbf,height:\"100%\",id:\"YssX7usJc\",KhlVzQcaT:cvgXiLCfV,kKcoPYtjT:true,layoutId:\"YssX7usJc\",optbET8Er:\"bgp1B6HRc\",Pm6Q4Msj3:\"Link\",Qsks3ykAC:\"Products\",Qyw9HOVKZ:\"FNEg8ZzrJ\",RUNqBRQK0:\"bgp1B6HRc\",style:{width:\"100%\"},tJEgN7kCv:resolvedLinks[0],variant:\"OhXghsylm\",width:\"100%\",yPn5q0UCp:true,ZtQHzxd_H:true,...addPropertyOverrides({UreUoMBgu:{kKcoPYtjT:false,tJEgN7kCv:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0thcHJhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Kapra Regular\", \"Kapra Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(59, 92, 127))\"},children:\"All Purpose Flour\"})}),className:\"framer-glhkk3\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Kapra Regular\"],layoutDependency:layoutDependency,layoutId:\"NTcXMbzNd\",style:{\"--extracted-gdpscs\":\"rgb(59, 92, 127)\",\"--framer-paragraph-spacing\":\"0px\"},text:r75LZ5hbf,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UreUoMBgu:{transformTemplate:undefined}},baseVariant,gestureVariant)})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4nawmw\",layoutDependency:layoutDependency,layoutId:\"uEH9s_rm2\",children:[/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+43+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.5603)`,...toResponsiveImage(aBoA9QS89)},className:\"framer-14qfd8y\",\"data-border\":true,\"data-framer-appear-id\":\"14qfd8y\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"mf0lb3KVY\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 234, 234)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({q5VcUU8no:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+156+24),sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1392px) - 80px) * 0.5603)`,...toResponsiveImage(aBoA9QS89)}},UreUoMBgu:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 48px)`,...toResponsiveImage(aBoA9QS89)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-13cy4js\",\"data-framer-appear-id\":\"13cy4js\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"D_usVsNaq\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k0y6fi\",layoutDependency:layoutDependency,layoutId:\"r2PxEocQc\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0thcHJhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Kapra Regular\", \"Kapra Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(59, 92, 127))\"},children:\"All Purpose Flour\"})}),className:\"framer-wp5ma0\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Kapra Regular\"],layoutDependency:layoutDependency,layoutId:\"zN90aQGnu\",style:{\"--extracted-gdpscs\":\"rgb(59, 92, 127)\",\"--framer-paragraph-spacing\":\"0px\"},text:r75LZ5hbf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`max(${componentViewport?.width||\"100vw\"} * 0.4397 - 56px, 1px)`,y:(componentViewport?.y||0)+0+43+0+0+0+0+68.80000000000001,...addPropertyOverrides({q5VcUU8no:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1392px) - 80px) * 0.4397 - 48px, 1px)`,y:(componentViewport?.y||0)+0+156+24+0+0+0+0},UreUoMBgu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 48px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-kbfnz0-container\",\"data-framer-appear-id\":\"kbfnz0\",layoutDependency:layoutDependency,layoutId:\"NtNywSmu4-container\",...addPropertyOverrides({UreUoMBgu:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Details,{AG3DMONss:Eq3NE_brJ,height:\"100%\",hEY7XUg1A:A6mxY0k3R,id:\"NtNywSmu4\",layoutId:\"NtNywSmu4\",ooNlKroAP:cN3R3dzLf,QPfyjSPYh:lbrvvrkRR,raLzC8vQ5:Dikboaysv,style:{width:\"100%\"},variant:\"TqN6HMzqR\",width:\"100%\",...addPropertyOverrides({UreUoMBgu:{variant:\"FXoohjXCZ\"}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gfTFch53n\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(${componentViewport?.width||\"100vw\"} * 0.4397 - 56px, 1px)`,y:(componentViewport?.y||0)+0+43+0+0+485.8,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j21sk3-container\",layoutDependency:layoutDependency,layoutId:\"ECjAMQvaT-container\",children:/*#__PURE__*/_jsx(Button,{Eyq3ZwfYq:\"Contact Us To Customize\",F96b9S4NI:false,height:\"100%\",id:\"ECjAMQvaT\",IxBPf3dKS:resolvedLinks1[0],layoutId:\"ECjAMQvaT\",style:{width:\"100%\"},uErOa7o4Q:false,variant:\"TVcGH9pPQ\",vOBikIB4L:false,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gfTFch53n\"},implicitPathVariables:undefined},{href:{webPageId:\"gfTFch53n\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({UreUoMBgu:{height:40,width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 48px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-ipau4-container\",\"data-framer-appear-id\":\"ipau4\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"OaxByfHTU-container\",optimized:true,children:/*#__PURE__*/_jsx(Button,{Eyq3ZwfYq:\"Contact Us To Customize\",F96b9S4NI:false,height:\"100%\",id:\"OaxByfHTU\",IxBPf3dKS:resolvedLinks2[0],layoutId:\"OaxByfHTU\",style:{width:\"100%\"},uErOa7o4Q:false,variant:\"TVcGH9pPQ\",vOBikIB4L:false,width:\"100%\",...addPropertyOverrides({UreUoMBgu:{IxBPf3dKS:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-ekfss1\",\"data-border\":true,\"data-framer-appear-id\":\"ekfss1\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ITLIFdUDs\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 234, 234)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i6iien\",layoutDependency:layoutDependency,layoutId:\"Eu_wm9GAw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yp372o\",layoutDependency:layoutDependency,layoutId:\"gW0zMLr9k\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cuct7_bPB\"},implicitPathVariables:undefined},{href:{webPageId:\"cuct7_bPB\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,...addPropertyOverrides({q5VcUU8no:{y:(componentViewport?.y||0)+0+0+16+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2zpplr-container\",layoutDependency:layoutDependency,layoutId:\"kwDAojWVK-container\",children:/*#__PURE__*/_jsx(Breadcrumb,{AzeJ9_qun:E8t9YyYfF,BQ9Zwd9p7:\"bgp1B6HRc\",BzALVTYKp:false,enxZIgjKp:r75LZ5hbf,height:\"100%\",id:\"kwDAojWVK\",KhlVzQcaT:cvgXiLCfV,kKcoPYtjT:false,layoutId:\"kwDAojWVK\",optbET8Er:\"bgp1B6HRc\",Pm6Q4Msj3:\"Link\",Qsks3ykAC:\"Products\",Qyw9HOVKZ:\"FNEg8ZzrJ\",RUNqBRQK0:\"bgp1B6HRc\",style:{width:\"100%\"},tJEgN7kCv:resolvedLinks3[0],variant:\"OhXghsylm\",width:\"100%\",yPn5q0UCp:true,ZtQHzxd_H:true,...addPropertyOverrides({q5VcUU8no:{tJEgN7kCv:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0thcHJhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Kapra Regular\", \"Kapra Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(59, 92, 127))\"},children:\"All Purpose Flour\"})}),className:\"framer-ff4n7v\",\"data-framer-name\":\"Name\",fonts:[\"CUSTOM;Kapra Regular\"],layoutDependency:layoutDependency,layoutId:\"WRQWIesMo\",style:{\"--extracted-gdpscs\":\"rgb(59, 92, 127)\",\"--framer-paragraph-spacing\":\"0px\"},text:r75LZ5hbf,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gfTFch53n\"},implicitPathVariables:undefined},{href:{webPageId:\"gfTFch53n\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({q5VcUU8no:{height:40,y:(componentViewport?.y||0)+0+0+16+42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-179hinv-container\",layoutDependency:layoutDependency,layoutId:\"xZB1NwEB9-container\",children:/*#__PURE__*/_jsx(Button,{Eyq3ZwfYq:\"Contact Us To Customize\",F96b9S4NI:false,height:\"100%\",id:\"xZB1NwEB9\",IxBPf3dKS:resolvedLinks4[0],layoutId:\"xZB1NwEB9\",uErOa7o4Q:false,variant:\"TVcGH9pPQ\",vOBikIB4L:false,width:\"100%\",...addPropertyOverrides({q5VcUU8no:{IxBPf3dKS:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3ZU0m.framer-1x46f14, .framer-3ZU0m .framer-1x46f14 { display: block; }\",\".framer-3ZU0m.framer-44fl0e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1392px; overflow: visible; padding: 0px; position: relative; width: 1392px; }\",\".framer-3ZU0m .framer-1rvglcu { flex: none; height: 19px; overflow: visible; position: relative; width: 100%; }\",\".framer-3ZU0m .framer-5m4r13 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 0px 0px 0px 4px; position: absolute; top: 47%; width: 1392px; }\",\".framer-3ZU0m .framer-1wlm5ta { flex: none; height: 201px; overflow: visible; position: relative; width: 1388px; }\",\".framer-3ZU0m .framer-udd5k-container { flex: none; height: auto; left: 50%; position: absolute; top: 49%; width: 1388px; }\",\".framer-3ZU0m .framer-glhkk3 { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 1fr; word-break: break-word; word-wrap: break-word; }\",\".framer-3ZU0m .framer-4nawmw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3ZU0m .framer-14qfd8y { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 585px); overflow: visible; position: sticky; top: 96px; width: 56%; will-change: transform; z-index: 1; }\",\".framer-3ZU0m .framer-13cy4js { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3ZU0m .framer-k0y6fi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-3ZU0m .framer-wp5ma0, .framer-3ZU0m .framer-ff4n7v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3ZU0m .framer-kbfnz0-container, .framer-3ZU0m .framer-2zpplr-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3ZU0m .framer-1j21sk3-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-3ZU0m .framer-ipau4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 3; }\",\".framer-3ZU0m .framer-ekfss1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: sticky; top: 80px; width: 100%; will-change: transform; z-index: 5; }\",\".framer-3ZU0m .framer-1i6iien { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1392px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-3ZU0m .framer-1yp372o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3ZU0m .framer-179hinv-container { flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3ZU0m.framer-44fl0e, .framer-3ZU0m .framer-5m4r13, .framer-3ZU0m .framer-4nawmw, .framer-3ZU0m .framer-13cy4js, .framer-3ZU0m .framer-k0y6fi, .framer-3ZU0m .framer-ekfss1, .framer-3ZU0m .framer-1i6iien, .framer-3ZU0m .framer-1yp372o { gap: 0px; } .framer-3ZU0m.framer-44fl0e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3ZU0m.framer-44fl0e > :first-child, .framer-3ZU0m .framer-13cy4js > :first-child, .framer-3ZU0m .framer-k0y6fi > :first-child, .framer-3ZU0m .framer-1yp372o > :first-child { margin-top: 0px; } .framer-3ZU0m.framer-44fl0e > :last-child, .framer-3ZU0m .framer-13cy4js > :last-child, .framer-3ZU0m .framer-k0y6fi > :last-child, .framer-3ZU0m .framer-1yp372o > :last-child { margin-bottom: 0px; } .framer-3ZU0m .framer-5m4r13 > *, .framer-3ZU0m .framer-1i6iien > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3ZU0m .framer-5m4r13 > :first-child, .framer-3ZU0m .framer-4nawmw > :first-child, .framer-3ZU0m .framer-ekfss1 > :first-child, .framer-3ZU0m .framer-1i6iien > :first-child { margin-left: 0px; } .framer-3ZU0m .framer-5m4r13 > :last-child, .framer-3ZU0m .framer-4nawmw > :last-child, .framer-3ZU0m .framer-ekfss1 > :last-child, .framer-3ZU0m .framer-1i6iien > :last-child { margin-right: 0px; } .framer-3ZU0m .framer-4nawmw > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-3ZU0m .framer-13cy4js > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3ZU0m .framer-k0y6fi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3ZU0m .framer-ekfss1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3ZU0m .framer-1yp372o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-3ZU0m.framer-v-rptmdc.framer-44fl0e { max-width: unset; padding: 0px 0px 24px 0px; width: 800px; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-1rvglcu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px; position: sticky; top: 72px; will-change: transform; z-index: 5; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-5m4r13 { flex: 1 0 0px; flex-wrap: wrap; left: unset; max-width: 800px; padding: 16px 24px 16px 24px; position: relative; top: unset; width: 1px; z-index: 1; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-1wlm5ta { 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; order: 0; padding: 0px; width: 1px; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-udd5k-container { left: unset; position: relative; top: unset; width: 100%; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-glhkk3 { bottom: unset; left: unset; position: relative; width: 100%; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-4nawmw { align-content: center; align-items: center; flex-direction: column; gap: 24px; max-width: 800px; order: 1; padding: 0px 24px 0px 24px; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-14qfd8y { height: var(--framer-aspect-ratio-supported, 150px); max-height: 540px; order: 0; position: relative; top: unset; width: 100%; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-13cy4js { align-content: center; align-items: center; flex: none; justify-content: center; order: 2; width: 100%; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-k0y6fi, .framer-3ZU0m.framer-v-168obv4 .framer-k0y6fi, .framer-3ZU0m.framer-v-168obv4 .framer-ekfss1 { order: 1; }\",\".framer-3ZU0m.framer-v-rptmdc .framer-ipau4-container { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3ZU0m.framer-v-rptmdc .framer-1rvglcu, .framer-3ZU0m.framer-v-rptmdc .framer-1wlm5ta, .framer-3ZU0m.framer-v-rptmdc .framer-4nawmw { gap: 0px; } .framer-3ZU0m.framer-v-rptmdc .framer-1rvglcu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3ZU0m.framer-v-rptmdc .framer-1rvglcu > :first-child { margin-left: 0px; } .framer-3ZU0m.framer-v-rptmdc .framer-1rvglcu > :last-child { margin-right: 0px; } .framer-3ZU0m.framer-v-rptmdc .framer-1wlm5ta > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3ZU0m.framer-v-rptmdc .framer-1wlm5ta > :first-child, .framer-3ZU0m.framer-v-rptmdc .framer-4nawmw > :first-child { margin-top: 0px; } .framer-3ZU0m.framer-v-rptmdc .framer-1wlm5ta > :last-child, .framer-3ZU0m.framer-v-rptmdc .framer-4nawmw > :last-child { margin-bottom: 0px; } .framer-3ZU0m.framer-v-rptmdc .framer-4nawmw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-3ZU0m.framer-v-168obv4.framer-44fl0e { gap: 0px; max-width: unset; padding: 0px 0px 40px 0px; }\",\".framer-3ZU0m.framer-v-168obv4 .framer-4nawmw { gap: 48px; max-width: 1392px; order: 2; padding: 24px 40px 0px 40px; }\",\".framer-3ZU0m.framer-v-168obv4 .framer-14qfd8y { height: var(--framer-aspect-ratio-supported, 552px); top: 225px; }\",\".framer-3ZU0m.framer-v-168obv4 .framer-13cy4js { gap: 16px; }\",\".framer-3ZU0m.framer-v-168obv4 .framer-1i6iien { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3ZU0m.framer-v-168obv4.framer-44fl0e, .framer-3ZU0m.framer-v-168obv4 .framer-4nawmw, .framer-3ZU0m.framer-v-168obv4 .framer-13cy4js { gap: 0px; } .framer-3ZU0m.framer-v-168obv4.framer-44fl0e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3ZU0m.framer-v-168obv4.framer-44fl0e > :first-child, .framer-3ZU0m.framer-v-168obv4 .framer-13cy4js > :first-child { margin-top: 0px; } .framer-3ZU0m.framer-v-168obv4.framer-44fl0e > :last-child, .framer-3ZU0m.framer-v-168obv4 .framer-13cy4js > :last-child { margin-bottom: 0px; } .framer-3ZU0m.framer-v-168obv4 .framer-4nawmw > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-3ZU0m.framer-v-168obv4 .framer-4nawmw > :first-child { margin-left: 0px; } .framer-3ZU0m.framer-v-168obv4 .framer-4nawmw > :last-child { margin-right: 0px; } .framer-3ZU0m.framer-v-168obv4 .framer-13cy4js > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",'.framer-3ZU0m[data-border=\"true\"]::after, .framer-3ZU0m [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 628\n * @framerIntrinsicWidth 1392\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1392px\",null,null]},\"UreUoMBgu\":{\"layout\":[\"fixed\",\"auto\"]},\"q5VcUU8no\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E8t9YyYfF\":\"link2Label\",\"r75LZ5hbf\":\"name1\",\"aBoA9QS89\":\"image\",\"A6mxY0k3R\":\"productInfo\",\"Dikboaysv\":\"description\",\"lbrvvrkRR\":\"nutrition\",\"Eq3NE_brJ\":\"sizeAndPackaging\",\"cN3R3dzLf\":\"foodAnalysis\",\"cvgXiLCfV\":\"link2URL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXvAhyBnR7=withCSS(Component,css,\"framer-3ZU0m\");export default FramerXvAhyBnR7;FramerXvAhyBnR7.displayName=\"Product Detail\";FramerXvAhyBnR7.defaultProps={height:628,width:1392};addPropertyControls(FramerXvAhyBnR7,{variant:{options:[\"famX4qPeZ\",\"UreUoMBgu\",\"q5VcUU8no\"],optionTitles:[\"Desktop\",\"Mobile\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},E8t9YyYfF:{defaultValue:\"Organic & Specialty Baking Flour\",title:\"Link 2 Label\",type:ControlType.String},r75LZ5hbf:{defaultValue:\"All Purpose Flour\",title:\"Name\",type:ControlType.String},aBoA9QS89:{title:\"Image\",type:ControlType.ResponsiveImage},A6mxY0k3R:{defaultValue:\"\",title:\"Product Info\",type:ControlType.RichText},Dikboaysv:{defaultValue:\"\",description:\"placeholder description\",title:\"Description\",type:ControlType.RichText},lbrvvrkRR:{defaultValue:\"\",title:\"Nutrition\",type:ControlType.String},Eq3NE_brJ:{defaultValue:\"\",title:\"Size and Packaging\",type:ControlType.RichText},cN3R3dzLf:{defaultValue:\"\",title:\"Food Analysis\",type:ControlType.RichText},cvgXiLCfV:{title:\"Link 2 URL\",type:ControlType.Link}});addFonts(FramerXvAhyBnR7,[{explicitInter:true,fonts:[{family:\"Kapra Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/G5dQXjdXWtZjclVSSUrKAqIV2w.woff2\"}]},...BreadcrumbFonts,...DetailsFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXvAhyBnR7\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"E8t9YyYfF\\\":\\\"link2Label\\\",\\\"r75LZ5hbf\\\":\\\"name1\\\",\\\"aBoA9QS89\\\":\\\"image\\\",\\\"A6mxY0k3R\\\":\\\"productInfo\\\",\\\"Dikboaysv\\\":\\\"description\\\",\\\"lbrvvrkRR\\\":\\\"nutrition\\\",\\\"Eq3NE_brJ\\\":\\\"sizeAndPackaging\\\",\\\"cN3R3dzLf\\\":\\\"foodAnalysis\\\",\\\"cvgXiLCfV\\\":\\\"link2URL\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1392\",\"framerIntrinsicHeight\":\"628\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1392px\\\",null,null]},\\\"UreUoMBgu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q5VcUU8no\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "props", "fonts", "_componentPresets_fonts", "_componentPresets_fonts1", "PhosphorFonts", "getFonts", "Icon", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "answer", "height", "id", "nutrition", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "C6yhVxZjO", "dOF1tsAVT", "WEuGAX7eH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap55jwyd", "args", "onTap1ftmqwf", "onTap8j8uho", "onTap199ba1p", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "ComponentPresetsProvider", "css", "FramerPey0EpJb2", "withCSS", "Pey0EpJb2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "_componentPresets_fonts", "_componentPresets_fonts1", "ProductAccordionFonts", "getFonts", "Pey0EpJb2_default", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "description", "foodAnalysis", "height", "id", "nutrition", "productInfo", "sizeAndPackaging", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "raLzC8vQ5", "hEY7XUg1A", "QPfyjSPYh", "ooNlKroAP", "AG3DMONss", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "ComponentPresetsProvider", "RichText2", "css", "FramerawWjYMO67", "withCSS", "awWjYMO67_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FxbGqyu9q", "wbfPcFY48", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "Link", "css", "FramerU1XNfh_cl", "withCSS", "U1XNfh_cl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BreadcrumbItemFonts", "getFonts", "U1XNfh_cl_default", "BreadcrumbItemControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "link1", "link1Label", "link1State", "link1URL", "link2", "link2Label", "link2State", "link2URL", "link3", "link3Label", "link3State", "link3URL", "link4", "link4Label", "link4State", "link4URL", "width", "props", "_ref", "_humanReadableEnumMap_link1State", "_ref1", "_ref2", "_ref3", "_humanReadableEnumMap_link2State", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableEnumMap_link3State", "_ref8", "_ref9", "_humanReadableEnumMap_link4State", "_ref10", "_ref11", "_humanReadableVariantMap_props_variant", "_ref12", "_ref13", "_ref14", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZtQHzxd_H", "yPn5q0UCp", "kKcoPYtjT", "BzALVTYKp", "Qsks3ykAC", "AzeJ9_qun", "enxZIgjKp", "Pm6Q4Msj3", "tJEgN7kCv", "KhlVzQcaT", "RHFUNCo0M", "uTJZrQWPk", "BQ9Zwd9p7", "optbET8Er", "Qyw9HOVKZ", "RUNqBRQK0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerpNGelglDo", "withCSS", "pNGelglDo_default", "addPropertyControls", "ControlType", "addFonts", "BreadcrumbFonts", "getFonts", "pNGelglDo_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ImageWithFXWithOptimizedAppearEffect", "Image2", "DetailsFonts", "awWjYMO67_default", "ButtonFonts", "DI8mvw2qg_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "description", "foodAnalysis", "height", "id", "image", "link2Label", "link2URL", "name1", "nutrition", "productInfo", "sizeAndPackaging", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E8t9YyYfF", "r75LZ5hbf", "aBoA9QS89", "A6mxY0k3R", "Dikboaysv", "lbrvvrkRR", "Eq3NE_brJ", "cN3R3dzLf", "cvgXiLCfV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerXvAhyBnR7", "withCSS", "XvAhyBnR7_default", "addPropertyControls", "ControlType", "addFonts"]
}
