{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tGueMWfVDCEvfQtSlUrd/WmqS4bhgQ4SMOqLKvQ9R/VariantButtons.js", "ssg:https://framerusercontent.com/modules/xIS6qWCTGkDJXuKuDYIj/bxjBK3ndhAPj21lqInYZ/AddToCartButton.js", "ssg:https://framerusercontent.com/modules/aDhfKf9BuNSGxSKiGPoW/VlMR1wUBkMpDoT5MK7P1/J824VVhtA.js", "ssg:https://framerusercontent.com/modules/FuQqU4MwFuw7Cs08mx9z/MK2RP3HFCfOZrK7HgZHZ/oApf03t7c.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS,RenderTarget}from\"framer\";import{parseShopifyData,createButtonPropertyControls,Colors,Button,parseShopifyId,ShopifyDataType}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/0YQVcQp9yCxhG9znBLuc/Shared.js\";import{useProductStore}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/hFRK24tvK1DH4J9qyxv4/ProductState.js\";import{useAmountInStock}from\"https://framerusercontent.com/modules/ibjYTPLnMMPhPLNCj4uG/Q9jZkSAx2myDYNMapOw2/Cart.js\";const HIDDEN_CLASS=\"frameship-variant-buttons-hidden\";const SAMPLE_VARIANTS=`[{\"id\":\"gid://shopify/ProductOption/12345678901234\",\"name\":\"Sample Variants\",\"values\":[\"Red\",\"Blue\",\"Green\",\"Purple\"]}]`;var State;(function(State){State[\"Default\"]=\"default\";State[\"Selected\"]=\"selected\";State[\"Disabled\"]=\"disabled\";})(State||(State={}));const alignmentMap={left:\"flex-start\",center:\"center\",right:\"flex-end\"};function VariantButtonsComponent(props){const{shopifyData,variantOptions,titles,textButtons,layout}=props;const{shopifyId,tracksInventory,variants}=parseShopifyData(shopifyData);const horizontal=layout.direction===\"horizontal\";const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[selectedVariantOptions,setSelectedVariantOption]=useProductStore(state=>{var _state_products_shopifyId;return[((_state_products_shopifyId=state.products[shopifyId])===null||_state_products_shopifyId===void 0?void 0:_state_products_shopifyId.selectedVariantOptions)||{},state.setSelectedVariantOption];});const[inventory,inventoryIsLoading]=useAmountInStock(shopifyData);const options=parseVariantOptions(isCanvas&&!variantOptions?SAMPLE_VARIANTS:variantOptions);const disabledOptionValues={};if(tracksInventory){for(const option of options){const disabledValues=[];for(const value of option.values){const matchingVariants=variants.filter(variant=>variant.selectedOptions.some(o=>o.name===option.name&&o.value===value));const outOfStockVariants=matchingVariants.filter(variant=>inventory[variant.id]===0);if(matchingVariants.length===outOfStockVariants.length){disabledValues.push(value);}}disabledOptionValues[option.name]=disabledValues;}}const selectedOptions={...selectedVariantOptions};let hasUpdatedGlobalState=false;let firstAvailableVariantOptions={};for(const variant of variants){if(inventory[variant.id]>0){for(const option of variant.selectedOptions){firstAvailableVariantOptions[option.name]=option.value;}break;}}for(const option of options){const name=option===null||option===void 0?void 0:option.name;const values=option===null||option===void 0?void 0:option.values;if(!name||!Array.isArray(values)){continue;}if(selectedOptions[name]&&values.includes(selectedOptions[name])){continue;// Keep the existing selection\n}else if(firstAvailableVariantOptions[name]){setSelectedVariantOption(shopifyId,name,firstAvailableVariantOptions[name]);}else{// Auto-select the first option if no selection is made\nsetSelectedVariantOption(shopifyId,name,values[0]);}}const onVariantClicked=(optionName,optionValue)=>{setSelectedVariantOption(shopifyId,optionName,optionValue);};return options.length==0?/*#__PURE__*/_jsx(\"div\",{className:HIDDEN_CLASS}):/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gap,userSelect:\"none\",minHeight:options.length==0?40:0,minWidth:options.length==0?40:0,...props.style},children:options.map(option=>/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:(titles===null||titles===void 0?void 0:titles.location)==\"bottom\"?\"column-reverse\":\"column\",gap:titles===null||titles===void 0?void 0:titles.gap},children:[titles&&/*#__PURE__*/_jsx(\"p\",{style:{width:\"100%\",color:titles.color,whiteSpace:\"pre\",margin:0,...titles.font},children:option.name}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:horizontal?\"row\":\"column\",rowGap:layout.gapV,columnGap:layout.gapH,alignItems:horizontal?\"center\":alignmentMap[layout.verticalAlignment],justifyContent:horizontal?layout.distribute:\"start\",flexWrap:layout.wrap?\"wrap\":\"nowrap\"},children:option.values.map((value,index)=>{var _disabledOptionValues_option_name;const selected=isCanvas?index===0:selectedOptions[option.name]==value;const disabled=isCanvas||!tracksInventory?false:textButtons.outOfStock.disable&&((_disabledOptionValues_option_name=disabledOptionValues[option.name])===null||_disabledOptionValues_option_name===void 0?void 0:_disabledOptionValues_option_name.includes(value));return /*#__PURE__*/_jsx(Button,{...textButtons,variant:disabled?\"disabled\":selected?\"selected\":\"default\",onClick:()=>!disabled&&onVariantClicked(option.name,value),style:{flex:textButtons.width===\"fill\"?\"1 1 0\":\"none\",width:textButtons.width===\"fill\"?\"0\":textButtons.width===\"fixed\"?textButtons.fixedWidth:undefined,cursor:disabled?undefined:\"pointer\",...textButtons.font},disabled:disabled,children:value},value);})})]},option.name))});}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight auto\n * @framerIntrinsicWidth 300\n * @framerDisableUnlink\n */const VariantButtons=withCSS(VariantButtonsComponent,[`.${HIDDEN_CLASS} { display: none !important; }`,`div:has(> .${HIDDEN_CLASS}) { display: none !important; }`]);export default VariantButtons;VariantButtons.displayName=\"Variant Buttons\";addPropertyControls(VariantButtons,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\"},variantOptions:{type:ControlType.String,defaultValue:\"\",placeholder:\"Variant Options\"},titles:{type:ControlType.Object,optional:true,buttonTitle:\"Style\",defaultValue:{location:\"top\",color:\"#000\",gap:10},controls:{location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#000\"},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},textButtons:{type:ControlType.Object,buttonTitle:\"Style\",title:\"Buttons\",controls:{width:{type:ControlType.Enum,defaultValue:\"fit\",options:[\"fit\",\"fill\",\"fixed\"],optionTitles:[\"Fit\",\"Fill\",\"Fixed\"],displaySegmentedControl:true},fixedWidth:{type:ControlType.Number,defaultValue:100,min:0,step:1,title:\" \",hidden:props=>props.width!==\"fixed\"},outOfStock:{type:ControlType.Object,title:\"Out of Stock\",controls:{disable:{type:ControlType.Boolean,defaultValue:true},opacity:{type:ControlType.Number,defaultValue:.5,min:0,max:1,step:.01,hidden:props=>!props.disable}}},...createButtonPropertyControls({padding:\"12px 20px 12px 20px\",variants:[{id:\"default\",title:\"Default\",...Colors.Primary},{id:\"selected\",title:\"Selected\",...Colors.Accent},{id:\"disabled\",title:\"Disabled\"}]})}},layout:{type:ControlType.Object,controls:{direction:{type:ControlType.Enum,defaultValue:\"horizontal\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},distribute:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],hidden:props=>props.direction!==\"horizontal\"},wrap:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.direction!==\"horizontal\"},verticalAlignment:{type:ControlType.Enum,defaultValue:\"center\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Alignment\",hidden:props=>props.direction!==\"vertical\"},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>props.direction!==\"horizontal\"},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},gap:{type:ControlType.Number,defaultValue:20,min:0,step:1,hidden:props=>props.variantMode==\"one\"}});const variantOptionsCache={};function parseVariantOptions(variantOptions){if(!variantOptions){return[];}const cachedResult=variantOptionsCache[variantOptions];if(cachedResult){return cachedResult;}try{var _options__values,_options_;const options=JSON.parse(variantOptions);let result=options;if(options.length===1&&((_options_=options[0])===null||_options_===void 0?void 0:(_options__values=_options_.values)===null||_options__values===void 0?void 0:_options__values.length)===1){result=[];}for(let i=0;i<result.length;i++){if(typeof result[i]===\"object\"){result[i].id=parseShopifyId(result[i].id,ShopifyDataType.ProductOption);}}variantOptionsCache[variantOptions]=result;return result;}catch(error){console.error(\"Error parsing variant options:\",error);return[];}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VariantButtons\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect}from\"react\";import{useCartStore,useAmountInStock}from\"https://framerusercontent.com/modules/ibjYTPLnMMPhPLNCj4uG/Q9jZkSAx2myDYNMapOw2/Cart.js\";import{parseShopifyData,OPEN_CART_EVENT,createButtonPropertyControls,Colors,Button}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/0YQVcQp9yCxhG9znBLuc/Shared.js\";import{useProductStore,useSelectedVariant}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/hFRK24tvK1DH4J9qyxv4/ProductState.js\";var State;(function(State){State[\"Default\"]=\"default\";State[\"OutOfStock\"]=\"outOfStock\";})(State||(State={}));const defaultText={[\"default\"]:\"Add to Cart\",[\"outOfStock\"]:\"Out of Stock\"};/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 300\n * @framerDisableUnlink\n */export default function AddToCartButton(props){const{shopifyId,tracksInventory,variants}=parseShopifyData(props.shopifyData);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[state,setState]=useState(\"default\");const[items,addToCart]=useCartStore(state=>[state.items,state.addToCart]);const{quantity,selectedVariantOptions}=useProductStore(state=>{var _state_products;return((_state_products=state.products)===null||_state_products===void 0?void 0:_state_products[shopifyId])||{quantity:1,selectedVariantOptions:{}};});const[inventory,inventoryIsLoading]=useAmountInStock(props.shopifyData);const selectedVariant=useSelectedVariant(props.shopifyData);useEffect(()=>{if(!isCanvas){if(tracksInventory&&selectedVariant&&inventory[selectedVariant.id]===0){setState(\"outOfStock\");}else{setState(\"default\");}}},[items,selectedVariant,inventory]);const onClick=async()=>{if(state===\"default\"&&selectedVariant&&(!tracksInventory||!inventoryIsLoading&&inventory[selectedVariant.id]>0)){await addToCart(selectedVariant.id,quantity);if(props.openCart){window.dispatchEvent(new Event(OPEN_CART_EVENT));}}};return /*#__PURE__*/_jsx(Button,{...props,variant:state,onClick:onClick,style:{cursor:state===\"outOfStock\"?undefined:\"pointer\",...props.style},children:props.text[state]});}AddToCartButton.displayName=\"Add to Cart Button\";addPropertyControls(AddToCartButton,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\"},openCart:{type:ControlType.Boolean,defaultValue:true},text:{type:ControlType.Object,defaultValue:defaultText,controls:{[\"default\"]:{type:ControlType.String,defaultValue:defaultText[\"default\"],placeholder:\"Default Text\"},[\"outOfStock\"]:{type:ControlType.String,defaultValue:defaultText[\"outOfStock\"],placeholder:\"Out of Stock Text\"}}},...createButtonPropertyControls({variants:[{id:\"default\",title:\"Default\",...Colors.Accent},{id:\"outOfStock\",title:\"Out of Stock\",...Colors.Primary}]})});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AddToCartButton\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AspectRatioImage from\"https://framerusercontent.com/modules/O4KVG9nv8JIrZCGXkGfz/6EY5SMVf9S1U0WsIHjw5/Image_aspect_ratio.js\";const AspectRatioImageFonts=getFonts(AspectRatioImage);const serializationHash=\"framer-H4NTy\";const variantClassNames={qGuVBuWcC:\"framer-v-1059d1d\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({height,id,media1,media2,media21,media3,media31,media4,media41,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6;return{...props,dyaGNvBeE:(_ref=media1!==null&&media1!==void 0?media1:props.dyaGNvBeE)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/fqdUWQRt1tUFFLamXk19uXtHs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fqdUWQRt1tUFFLamXk19uXtHs.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fqdUWQRt1tUFFLamXk19uXtHs.jpg 786w\"},HPGIyRlXg:(_ref1=media21!==null&&media21!==void 0?media21:props.HPGIyRlXg)!==null&&_ref1!==void 0?_ref1:true,m5vzgfpcW:(_ref2=media41!==null&&media41!==void 0?media41:props.m5vzgfpcW)!==null&&_ref2!==void 0?_ref2:true,MKhlsYmqJ:(_ref3=media31!==null&&media31!==void 0?media31:props.MKhlsYmqJ)!==null&&_ref3!==void 0?_ref3:true,OCMMmjl7C:(_ref4=media4!==null&&media4!==void 0?media4:props.OCMMmjl7C)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/WgUAHPFAX8ipuE4Yvtc22uKxE.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WgUAHPFAX8ipuE4Yvtc22uKxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WgUAHPFAX8ipuE4Yvtc22uKxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WgUAHPFAX8ipuE4Yvtc22uKxE.jpg 1762w\"},TmZH3KyV2:(_ref5=media2!==null&&media2!==void 0?media2:props.TmZH3KyV2)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/UE31IpKQ8zzuVtWoYNkfxUhRQws.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UE31IpKQ8zzuVtWoYNkfxUhRQws.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UE31IpKQ8zzuVtWoYNkfxUhRQws.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UE31IpKQ8zzuVtWoYNkfxUhRQws.jpg 1766w\"},Z6PUwbyjh:(_ref6=media3!==null&&media3!==void 0?media3:props.Z6PUwbyjh)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/nauxerOxSQgJpDz0HxO3JTtuSi8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nauxerOxSQgJpDz0HxO3JTtuSi8.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/nauxerOxSQgJpDz0HxO3JTtuSi8.jpg 1179w\"}};};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,dyaGNvBeE,TmZH3KyV2,Z6PUwbyjh,OCMMmjl7C,HPGIyRlXg,MKhlsYmqJ,m5vzgfpcW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qGuVBuWcC\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1059d1d\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qGuVBuWcC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d8w2de\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"sTTreuKfd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bxdb8z-container\",\"data-framer-name\":\"media-1\",layoutDependency:layoutDependency,layoutId:\"mSko0x_zu-container\",name:\"media-1\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"mSko0x_zu\",image:toResponsiveImage(dyaGNvBeE),layoutId:\"mSko0x_zu\",name:\"media-1\",newTab:false,radius:\"0px\",shadows:\"\",style:{height:\"100%\"},width:\"100%\"})})}),HPGIyRlXg&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-37ekq4-container\",\"data-framer-name\":\"media-2\",layoutDependency:layoutDependency,layoutId:\"N_1ym90BI-container\",name:\"media-2\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"N_1ym90BI\",image:toResponsiveImage(TmZH3KyV2),layoutId:\"N_1ym90BI\",name:\"media-2\",newTab:false,radius:\"0px\",shadows:\"\",style:{height:\"100%\"},width:\"100%\"})})}),MKhlsYmqJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-byjcgw-container\",\"data-framer-name\":\"media-3\",layoutDependency:layoutDependency,layoutId:\"S6Uf2sJY2-container\",name:\"media-3\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"S6Uf2sJY2\",image:toResponsiveImage(Z6PUwbyjh),layoutId:\"S6Uf2sJY2\",name:\"media-3\",newTab:false,radius:\"0px\",shadows:\"\",style:{height:\"100%\"},width:\"100%\"})})}),m5vzgfpcW&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18484x6-container\",\"data-framer-name\":\"media-4\",layoutDependency:layoutDependency,layoutId:\"UCO9zFA4z-container\",name:\"media-4\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"UCO9zFA4z\",image:toResponsiveImage(OCMMmjl7C),layoutId:\"UCO9zFA4z\",name:\"media-4\",newTab:false,radius:\"0px\",shadows:\"\",style:{height:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H4NTy.framer-19zcvyi, .framer-H4NTy .framer-19zcvyi { display: block; }\",\".framer-H4NTy.framer-1059d1d { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 720px; justify-content: center; overflow: hidden; overflow-x: auto; overscroll-behavior: contain; padding: 0px; position: relative; width: 390px; }\",\".framer-H4NTy .framer-1d8w2de { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-H4NTy .framer-1bxdb8z-container, .framer-H4NTy .framer-37ekq4-container, .framer-H4NTy .framer-byjcgw-container, .framer-H4NTy .framer-18484x6-container { flex: none; height: 100%; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H4NTy.framer-1059d1d, .framer-H4NTy .framer-1d8w2de { gap: 0px; } .framer-H4NTy.framer-1059d1d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-H4NTy.framer-1059d1d > :first-child { margin-top: 0px; } .framer-H4NTy.framer-1059d1d > :last-child { margin-bottom: 0px; } .framer-H4NTy .framer-1d8w2de > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-H4NTy .framer-1d8w2de > :first-child { margin-left: 0px; } .framer-H4NTy .framer-1d8w2de > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dyaGNvBeE\":\"media1\",\"TmZH3KyV2\":\"media2\",\"Z6PUwbyjh\":\"media3\",\"OCMMmjl7C\":\"media4\",\"HPGIyRlXg\":\"media21\",\"MKhlsYmqJ\":\"media31\",\"m5vzgfpcW\":\"media41\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ824VVhtA=withCSS(Component,css,\"framer-H4NTy\");export default FramerJ824VVhtA;FramerJ824VVhtA.displayName=\"Page elements/image-viewer\";FramerJ824VVhtA.defaultProps={height:720,width:390};addPropertyControls(FramerJ824VVhtA,{dyaGNvBeE:{__defaultAssetReference:\"data:framer/asset-reference,fqdUWQRt1tUFFLamXk19uXtHs.jpg?originalFilename=dedo-easy-chair-poster.jpg&preferredSize=auto\",title:\"Media 1\",type:ControlType.ResponsiveImage},TmZH3KyV2:{__defaultAssetReference:\"data:framer/asset-reference,UE31IpKQ8zzuVtWoYNkfxUhRQws.jpg?originalFilename=dedo-easy-chair-oak-white-1015-dakar-leather-nature-3411-4-gazzda.jpg&preferredSize=auto\",title:\"Media 2\",type:ControlType.ResponsiveImage},Z6PUwbyjh:{__defaultAssetReference:\"data:framer/asset-reference,nauxerOxSQgJpDz0HxO3JTtuSi8.jpg?originalFilename=mushroom-coffee-and-side-tables-oak-natural-1505-dedo-easy-chair-oak-white-1015-dakar-leather-whisky-2788-2-gazzda.jpg&preferredSize=auto\",title:\"Media 3\",type:ControlType.ResponsiveImage},OCMMmjl7C:{__defaultAssetReference:\"data:framer/asset-reference,WgUAHPFAX8ipuE4Yvtc22uKxE.jpg?originalFilename=dedo-easy-chair-oak-lacquer-black-9005-dakar-leather-stone-1436-1-arp-side-table-45x55-oak-smoked-163-14-gazzda.jpg&preferredSize=auto\",title:\"Media 4\",type:ControlType.ResponsiveImage},HPGIyRlXg:{defaultValue:true,title:\"Media 2\",type:ControlType.Boolean},MKhlsYmqJ:{defaultValue:true,title:\"Media 3\",type:ControlType.Boolean},m5vzgfpcW:{defaultValue:true,title:\"Media 4\",type:ControlType.Boolean}});addFonts(FramerJ824VVhtA,[{explicitInter:true,fonts:[]},...AspectRatioImageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ824VVhtA\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"dyaGNvBeE\\\":\\\"media1\\\",\\\"TmZH3KyV2\\\":\\\"media2\\\",\\\"Z6PUwbyjh\\\":\\\"media3\\\",\\\"OCMMmjl7C\\\":\\\"media4\\\",\\\"HPGIyRlXg\\\":\\\"media21\\\",\\\"MKhlsYmqJ\\\":\\\"media31\\\",\\\"m5vzgfpcW\\\":\\\"media41\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"390\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"720\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J824VVhtA.map", "// Generated by Framer (a3b61f5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import FrameshipShopify from\"https://framerusercontent.com/modules/1kPVCHEEg0BrtObiM14s/OFzGjRbRoJ3SeRODAc67/Frameship.js\";import QuantityInput from\"https://framerusercontent.com/modules/6m3bYVdQqi1oLEe0M7tX/2feS2wWhgruAtCAhfEnf/QuantityInput.js\";import PriceLabel from\"https://framerusercontent.com/modules/Ncx6rwHWSXe5kU34gWm3/SIazgVFLWprSHswCQ2h7/ProductInfoLabel.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import VariantButtons from\"https://framerusercontent.com/modules/tGueMWfVDCEvfQtSlUrd/WmqS4bhgQ4SMOqLKvQ9R/VariantButtons.js\";import AddToCartButton from\"https://framerusercontent.com/modules/xIS6qWCTGkDJXuKuDYIj/bxjBK3ndhAPj21lqInYZ/AddToCartButton.js\";import CardsCardProduct from\"#framer/local/canvasComponent/dCXyXvejB/dCXyXvejB.js\";import LayoutHeader from\"#framer/local/canvasComponent/DgAQdKBhu/DgAQdKBhu.js\";import PageElementsImageThumbnail from\"#framer/local/canvasComponent/HbFEZAffW/HbFEZAffW.js\";import ButtonsBtnSecondary from\"#framer/local/canvasComponent/IDTlr7vL9/IDTlr7vL9.js\";import PageElementsImageViewer from\"#framer/local/canvasComponent/J824VVhtA/J824VVhtA.js\";import PageElementsCapsule from\"#framer/local/canvasComponent/KjnMw0Fgf/KjnMw0Fgf.js\";import ButtonsBtnPrimary from\"#framer/local/canvasComponent/QdVX_JzVD/QdVX_JzVD.js\";import PageElementsBreadcrumb from\"#framer/local/canvasComponent/RLra3sJhh/RLra3sJhh.js\";import LayoutFooter from\"#framer/local/canvasComponent/YkfeFqMSQ/YkfeFqMSQ.js\";import AspectRatioImage from\"#framer/local/codeFile/jy04LXf/Image_aspect_ratio.js\";import Inspirations from\"#framer/local/collection/dXUxhivbr/dXUxhivbr.js\";import Team from\"#framer/local/collection/Unp_oN1bj/Unp_oN1bj.js\";import Shopify from\"#framer/local/collection/VypAg3VdR/VypAg3VdR.js\";import*as sharedStyle2 from\"#framer/local/css/cgzIWZi4i/cgzIWZi4i.js\";import*as sharedStyle5 from\"#framer/local/css/Dst5AiJf3/Dst5AiJf3.js\";import*as sharedStyle1 from\"#framer/local/css/NA60vrvYM/NA60vrvYM.js\";import*as sharedStyle10 from\"#framer/local/css/PjCXEC5r6/PjCXEC5r6.js\";import*as sharedStyle8 from\"#framer/local/css/q62M7JeB5/q62M7JeB5.js\";import*as sharedStyle from\"#framer/local/css/qARUQRVRS/qARUQRVRS.js\";import*as sharedStyle4 from\"#framer/local/css/SGGN0S1aS/SGGN0S1aS.js\";import*as sharedStyle9 from\"#framer/local/css/UfcyUE8c8/UfcyUE8c8.js\";import*as sharedStyle3 from\"#framer/local/css/UzZ0f5QdC/UzZ0f5QdC.js\";import*as sharedStyle6 from\"#framer/local/css/VNBhbY7Lo/VNBhbY7Lo.js\";import*as sharedStyle7 from\"#framer/local/css/xrxbc5Baj/xrxbc5Baj.js\";import metadataProvider from\"#framer/local/webPageMetadata/oApf03t7c/oApf03t7c.js\";const FrameshipShopifyFonts=getFonts(FrameshipShopify);const LayoutHeaderFonts=getFonts(LayoutHeader);const PageElementsImageViewerFonts=getFonts(PageElementsImageViewer);const AspectRatioImageFonts=getFonts(AspectRatioImage);const PageElementsBreadcrumbFonts=getFonts(PageElementsBreadcrumb);const VariantButtonsFonts=getFonts(VariantButtons);const PriceLabelFonts=getFonts(PriceLabel);const PageElementsCapsuleFonts=getFonts(PageElementsCapsule);const EmbedFonts=getFonts(Embed);const QuantityInputFonts=getFonts(QuantityInput);const AddToCartButtonFonts=getFonts(AddToCartButton);const PageElementsImageThumbnailFonts=getFonts(PageElementsImageThumbnail);const ButtonsBtnSecondaryFonts=getFonts(ButtonsBtnSecondary);const CardsCardProductFonts=getFonts(CardsCardProduct);const ButtonsBtnPrimaryFonts=getFonts(ButtonsBtnPrimary);const LayoutFooterFonts=getFonts(LayoutFooter);const breakpoints={AbG_iKCGQ:\"(max-width: 809px)\",qXjSdDH6x:\"(min-width: 810px) and (max-width: 1199px)\",tglf3slcr:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5WeCW\";const variantClassNames={AbG_iKCGQ:\"framer-v-tfjmls\",qXjSdDH6x:\"framer-v-1jec6zo\",tglf3slcr:\"framer-v-s09tnv\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromString=(value,activeLocale)=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"seating\":return{webPageId:\"rI9Ccvyxw\"};case\"storage\":return{webPageId:\"Xf0Jygk3j\"};case\"tables & desks\":return{webPageId:\"sIsR3oTYr\"};case\"accessories\":return{webPageId:\"OLYg6gwwX\"};default:return undefined;}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const greaterThan=(a,b)=>{return typeof a===\"number\"&&typeof b===\"number\"?a>b:false;};const contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const transition1={bounce:.2,delay:0,duration:.3,type:\"spring\"};const animation={backgroundColor:'var(--token-e3814588-0466-4cbc-91aa-c3eb44f1140e, rgb(241, 243, 243)) /* {\"name\":\"Gray 50\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"tglf3slcr\",Phone:\"AbG_iKCGQ\",Tablet:\"qXjSdDH6x\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tglf3slcr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"oApf03t7c\",data:Shopify,type:\"Collection\"},select:[{collection:\"oApf03t7c\",name:\"id\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"jeMs6azXT\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"gAC0SCYUy\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"DIXwGASOW\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"Hd38LFMnR\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"lN2vUywHx\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"eRlv79Yd2\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"l0OWGy_Ha\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"VM4Sqz3uV\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"ONH1RE0Uw\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"aKCHKFVsl\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"LuUrPT4_O\",type:\"Identifier\"},{collection:\"oApf03t7c\",name:\"AWXVuu0iu\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"oApf03t7c\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7;const{style,className,layoutId,variant,Hd38LFMnR=getFromCurrentRouteData(\"Hd38LFMnR\"),lN2vUywHx=getFromCurrentRouteData(\"lN2vUywHx\"),eRlv79Yd2=getFromCurrentRouteData(\"eRlv79Yd2\"),l0OWGy_Ha=getFromCurrentRouteData(\"l0OWGy_Ha\"),ONH1RE0Uw=(_getFromCurrentRouteData=getFromCurrentRouteData(\"ONH1RE0Uw\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",jeMs6azXT=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"jeMs6azXT\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",UeeCY54vOI2x25WlFG,E6YeTIAUMI2x25WlFG,woO8FCT8lI2x25WlFG,idI2x25WlFG,id=getFromCurrentRouteData(\"id\"),AWXVuu0iu=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"AWXVuu0iu\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",LuUrPT4_O=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"LuUrPT4_O\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",VM4Sqz3uV=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"VM4Sqz3uV\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:0,aKCHKFVsl=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"aKCHKFVsl\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",DIXwGASOW=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"DIXwGASOW\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",d_MET_RdhTczRdpLPJ,GOUdyCLugTczRdpLPJ,idTczRdpLPJ,gAC0SCYUyL8GjI5_Cj,Hd38LFMnRL8GjI5_Cj,jeMs6azXTL8GjI5_Cj,AWXVuu0iuL8GjI5_Cj,VM4Sqz3uVL8GjI5_Cj,aKCHKFVslL8GjI5_Cj,idL8GjI5_Cj,gAC0SCYUy=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"gAC0SCYUy\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-5WeCW`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-5WeCW`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"qXjSdDH6x\",\"AbG_iKCGQ\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"MLWRvhxFq\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"qXjSdDH6x\",\"AbG_iKCGQ\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"C5vwKOnKp\");const ref3=React.useRef(null);const visible=greaterThan(VM4Sqz3uV,0);const visible1=contains(aKCHKFVsl,\"new arrival\");const elementId2=useRouteElementId(\"ANxLLFZ2b\");const ref4=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"UHrQ3B9JG\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"rsbxAxIyf\");const ref6=React.useRef(null);const visible2=equals(ONH1RE0Uw,\"Seating\");const visible3=equals(ONH1RE0Uw,\"Tables & Desks\");const visible4=equals(ONH1RE0Uw,\"Storage\");const visible5=equals(ONH1RE0Uw,\"Accessories\");const elementId5=useRouteElementId(\"PLBbJeObs\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tglf3slcr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-s09tnv\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1efnok6-container\",children:/*#__PURE__*/_jsx(FrameshipShopify,{height:\"100%\",id:\"oXhG5R0S6\",layoutId:\"oXhG5R0S6\",note:\"IMPORTANT\",productionDomain:\"https://tilesandsquaresplus.framer.website\",projectId:\"3507599e-2034-4246-8a48-77636e4e7d9a\",shopifyAccessToken:\"45c1742021c512db134aca065a7f8899\",shopUrl:\"tiles-n-squares.myshopify.com\",stagingDomain:\"https://magenta-motivation-290468.framer.app\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xiq2yr-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{variant:\"QPJkFk82K\"},qXjSdDH6x:{variant:\"QPJkFk82K\"}},children:/*#__PURE__*/_jsx(LayoutHeader,{height:\"100%\",id:\"hLXRx20Bt\",layoutId:\"hLXRx20Bt\",style:{width:\"100%\"},variant:\"Atv60UeBd\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-gj4dzg\",\"data-framer-name\":\"main\",name:\"main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zjutta\",\"data-framer-name\":\"product-details\",name:\"product-details\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-h4koiu hidden-s09tnv\",\"data-framer-name\":\"images (mobile)\",id:elementId,name:\"images (mobile)\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{height:500,width:\"100vw\"},qXjSdDH6x:{height:600,width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k6haou-container\",children:/*#__PURE__*/_jsx(PageElementsImageViewer,{dyaGNvBeE:toResponsiveImage(Hd38LFMnR),height:\"100%\",HPGIyRlXg:isSet(lN2vUywHx),id:\"zGI8jlZ_a\",layoutId:\"zGI8jlZ_a\",m5vzgfpcW:isSet(l0OWGy_Ha),MKhlsYmqJ:isSet(eRlv79Yd2),OCMMmjl7C:toResponsiveImage(l0OWGy_Ha),style:{height:\"100%\",width:\"100%\"},TmZH3KyV2:toResponsiveImage(lN2vUywHx),width:\"100%\",Z6PUwbyjh:toResponsiveImage(eRlv79Yd2)})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpk1vt hidden-1jec6zo hidden-tfjmls\",\"data-framer-name\":\"images\",id:elementId1,name:\"images\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qlt0aw\",\"data-framer-name\":\"main-image\",name:\"main-image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-px940h-container\",\"data-framer-name\":\"media-1\",name:\"media-1\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"Dw526f8mS\",image:toResponsiveImage(Hd38LFMnR),layoutId:\"Dw526f8mS\",name:\"media-1\",newTab:false,radius:\"0px\",shadows:\"\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a3w7uc-container\",\"data-framer-name\":\"media-2\",name:\"media-2\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"HOAOl894u\",image:toResponsiveImage(lN2vUywHx),layoutId:\"HOAOl894u\",name:\"media-2\",newTab:false,radius:\"0px\",shadows:\"\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqleqa-container\",\"data-framer-name\":\"media-3\",name:\"media-3\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"czrx_nJlP\",image:toResponsiveImage(eRlv79Yd2),layoutId:\"czrx_nJlP\",name:\"media-3\",newTab:false,radius:\"0px\",shadows:\"\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gxz8i2-container\",\"data-framer-name\":\"media-4\",name:\"media-4\",children:/*#__PURE__*/_jsx(AspectRatioImage,{height:\"100%\",id:\"Bqf3SruYA\",image:toResponsiveImage(l0OWGy_Ha),layoutId:\"Bqf3SruYA\",name:\"media-4\",newTab:false,radius:\"0px\",shadows:\"\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-102foqj\",\"data-framer-name\":\"layout\",name:\"layout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0ej9f\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3fhmcw\",\"data-framer-name\":\"navigation\",name:\"navigation\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(ONH1RE0Uw,activeLocale),implicitPathVariables:undefined},{href:convertFromString(ONH1RE0Uw,activeLocale),implicitPathVariables:undefined},{href:convertFromString(ONH1RE0Uw,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q2493c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{Rd1qgzwlp:resolvedLinks[2]},qXjSdDH6x:{Rd1qgzwlp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(PageElementsBreadcrumb,{ddL0C2MgH:\"Label\",height:\"100%\",i1fkpsKp1:\"Label\",id:\"EwYpnzs7b\",layoutId:\"EwYpnzs7b\",Rd1qgzwlp:resolvedLinks[0],variant:\"kdHTXbmxq\",width:\"100%\",ycYiGWwtM:ONH1RE0Uw})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ybyuor\",\"data-framer-name\":\"product-title\",name:\"product-title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9uw59v\",\"data-styles-preset\":\"qARUQRVRS\",children:\"Fina Lowboard\"})}),className:\"framer-1y0yx4b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:jeMs6azXT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kg9m5f\",\"data-framer-name\":\"details\",name:\"details\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tuvufc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"I2x25WlFG\",data:Team,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"I2x25WlFG\",name:\"UeeCY54vO\",type:\"Identifier\"},{collection:\"I2x25WlFG\",name:\"E6YeTIAUM\",type:\"Identifier\"},{collection:\"I2x25WlFG\",name:\"woO8FCT8l\",type:\"Identifier\"},{collection:\"I2x25WlFG\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:id},operator:\"in\",right:{arguments:[{from:{alias:\"HzJbgVoO0\",data:Shopify,type:\"Collection\"},orderBy:[{arguments:[{collection:\"I2x25WlFG\",name:\"HzJbgVoO0\",type:\"Identifier\"},{collection:\"HzJbgVoO0\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"HzJbgVoO0\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"HzJbgVoO0\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"I2x25WlFG\",name:\"HzJbgVoO0\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({E6YeTIAUM:E6YeTIAUMI2x25WlFG,id:idI2x25WlFG,UeeCY54vO:UeeCY54vOI2x25WlFG,woO8FCT8l:woO8FCT8lI2x25WlFG},i)=>{E6YeTIAUMI2x25WlFG!==null&&E6YeTIAUMI2x25WlFG!==void 0?E6YeTIAUMI2x25WlFG:E6YeTIAUMI2x25WlFG=\"\";woO8FCT8lI2x25WlFG!==null&&woO8FCT8lI2x25WlFG!==void 0?woO8FCT8lI2x25WlFG:woO8FCT8lI2x25WlFG=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`I2x25WlFG-${idI2x25WlFG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E6YeTIAUM:E6YeTIAUMI2x25WlFG},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rtblyl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwacc\",\"data-styles-preset\":\"NA60vrvYM\",children:\"by\"})}),className:\"framer-w1hmzu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(UeeCY54vOI2x25WlFG)},className:\"framer-1aa7hna\",\"data-border\":true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwacc\",\"data-styles-preset\":\"NA60vrvYM\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{E6YeTIAUM:E6YeTIAUMI2x25WlFG},webPageId:\"oQW1ZEW9g\"},nodeId:\"osmZXWr5f\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-2zoaqd\",\"data-styles-preset\":\"cgzIWZi4i\",children:\"Salih Teskeredzic\"})})})}),className:\"framer-asulbr\",fonts:[\"Inter\"],text:woO8FCT8lI2x25WlFG,verticalAlignment:\"top\",withExternalLayout:true})]})})},idI2x25WlFG);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o6f3hz\",\"data-framer-name\":\"variant\",name:\"variant\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jqv04z-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{textButtons:{border:{defaultColor:\"rgba(205, 209, 209, 0)\",disabledColor:\"rgba(205, 209, 209, 0)\",selectedColor:\"var(--token-e49c370a-ffa8-479c-99a3-9672f3441c42, rgb(205, 209, 209))\",style:\"solid\",width:\"0px 0px 2px 0px\"},color:{defaultColor:\"rgba(19, 20, 20, 0.6)\",disabledColor:\"rgba(19, 20, 20, 0.2)\",selectedColor:\"var(--token-7a184f50-36b4-4cb5-a14f-51ebe2d58ba6, rgb(19, 20, 20))\"},fill:{defaultColor:\"var(--token-ddd3cd76-d40b-4af8-b270-5aadcb28321e, rgb(255, 255, 255))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,selectedColor:\"var(--token-ddd3cd76-d40b-4af8-b270-5aadcb28321e, rgb(255, 255, 255))\",selectedColorA:\"rgb(94, 94, 94)\",selectedColorB:\"rgb(17, 17, 17)\",type:\"color\"},fixedWidth:100,font:{fontFamily:'\"Inter\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"17px\",fontStyle:\"normal\",letterSpacing:\"-0.02em\",lineHeight:\"1em\"},outOfStock:{disable:true,opacity:.5},padding:\"0px 0px 12px 0px\",radius:\"0px\",transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"fit\"},titles:{color:\"rgba(19, 20, 20, 0.6)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.5em\"},gap:12,location:\"top\"}}},children:/*#__PURE__*/_jsx(VariantButtons,{gap:24,height:\"100%\",id:\"ADaVP1p4u\",layout:{direction:\"horizontal\",distribute:\"start\",gapH:24,gapV:12,verticalAlignment:\"center\",wrap:true},layoutId:\"ADaVP1p4u\",shopifyData:AWXVuu0iu,style:{width:\"100%\"},textButtons:{border:{defaultColor:\"rgba(205, 209, 209, 0)\",disabledColor:\"rgba(205, 209, 209, 0)\",selectedColor:\"var(--token-e49c370a-ffa8-479c-99a3-9672f3441c42, rgb(205, 209, 209))\",style:\"solid\",width:\"0px 0px 2px 0px\"},color:{defaultColor:\"rgba(19, 20, 20, 0.6)\",disabledColor:\"rgba(19, 20, 20, 0.2)\",selectedColor:\"var(--token-7a184f50-36b4-4cb5-a14f-51ebe2d58ba6, rgb(19, 20, 20))\"},fill:{defaultColor:\"var(--token-ddd3cd76-d40b-4af8-b270-5aadcb28321e, rgb(255, 255, 255))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,selectedColor:\"var(--token-ddd3cd76-d40b-4af8-b270-5aadcb28321e, rgb(255, 255, 255))\",selectedColorA:\"rgb(94, 94, 94)\",selectedColorB:\"rgb(17, 17, 17)\",type:\"color\"},fixedWidth:100,font:{fontFamily:'\"Inter\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"-0.02em\",lineHeight:\"1em\"},outOfStock:{disable:true,opacity:.5},padding:\"0px 0px 12px 0px\",radius:\"0px\",transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"fit\"},titles:{color:\"rgba(19, 20, 20, 0.6)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.5em\"},gap:12,location:\"top\"},variantOptions:LuUrPT4_O,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ojjy3c\",\"data-framer-name\":\"price\",name:\"price\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ur1ih5-container\",\"data-framer-name\":\"Compare-at Price\",name:\"Compare-at Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"21px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.025em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(PriceLabel,{color:\"var(--token-4421fb7a-f8a8-43d9-bc72-1df7b4903084, rgb(178, 184, 184))\",currency:\"USD\",currencyFormat:{decimals:\"auto\",formatted:true,locale:\"\",location:\"after\",style:\"symbol\"},decoration:\"strikethrough\",font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.025em\",lineHeight:\"1em\"},height:\"100%\",htmlTag:\"p\",id:\"OICiQl3yE\",layoutId:\"OICiQl3yE\",name:\"Compare-at Price\",prefix:\"\",selectable:true,shopifyData:AWXVuu0iu,suffix:\"\",textWhenZero:\"Free\",type:\"compareAtPrice\",whenZero:\"hide\",width:\"100%\"})})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k98m1p-container\",children:/*#__PURE__*/_jsx(PageElementsCapsule,{DjHSOzOEp:\"Sale\",height:\"100%\",id:\"dZajFIszg\",layoutId:\"dZajFIszg\",variant:\"o0loCLUhu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yii90a-container\",\"data-framer-name\":\"Price\",name:\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"21px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.025em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(PriceLabel,{color:\"var(--token-7a184f50-36b4-4cb5-a14f-51ebe2d58ba6, rgb(19, 20, 20))\",currency:\"USD\",currencyFormat:{decimals:\"auto\",formatted:true,locale:\"\",location:\"after\",style:\"symbol\"},decoration:\"none\",font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.025em\",lineHeight:\"1em\"},height:\"100%\",htmlTag:\"p\",id:\"AkDHJdutZ\",layoutId:\"AkDHJdutZ\",name:\"Price\",prefix:\"\",selectable:true,shopifyData:AWXVuu0iu,suffix:\"\",textWhenZero:\"Free\",type:\"price\",whenZero:\"show\",width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xw9798-container\",children:/*#__PURE__*/_jsx(PageElementsCapsule,{DjHSOzOEp:\"New\",height:\"100%\",id:\"YqvmZx5dT\",layoutId:\"YqvmZx5dT\",variant:\"L8EH582_7\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-166tc45\",\"data-framer-name\":\"description\",name:\"description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:DIXwGASOW,className:\"framer-13plzno\",\"data-framer-name\":\"Product Description (Full)\",fonts:[\"Inter\"],name:\"Product Description (Full)\",stylesPresetsClassNames:{a:\"framer-styles-preset-2zoaqd\",h1:\"framer-styles-preset-1bw3ih\",h2:\"framer-styles-preset-1vs1z3p\",h3:\"framer-styles-preset-9uw59v\",h4:\"framer-styles-preset-15bw6j4\",h5:\"framer-styles-preset-1fn5ho0\",h6:\"framer-styles-preset-1ua7rkg\",p:\"framer-styles-preset-bl07hl\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7y1n1\",\"data-framer-name\":\"services\",name:\"services\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fwl1oi\",\"data-framer-name\":\"Page elements/benefit\",name:\"Page elements/benefit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qmeic8\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-un6tlv-container\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"20\" height=\"20\" color=\"#000000\" fill=\"none\">\\n    <path d=\"M15 2C15.944 6.19089 17.579 8.00412 22 9C17.8091 9.94405 15.9959 11.579 15 16C14.056 11.8091 12.421 9.99588 8 9C12.421 8.00412 14.056 6.19089 15 2Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n    <path d=\"M7 12C7.71134 15.1579 9.00651 16.3257 12 17C8.84214 17.7113 7.67432 19.0065 7 22C6.28866 18.8421 4.99349 17.6743 2 17C5.15786 16.2887 6.32568 14.9935 7 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n</svg>',id:\"kRpFhp1tI\",layoutId:\"kRpFhp1tI\",name:\"icon\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwacc\",\"data-styles-preset\":\"NA60vrvYM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Y0bdYYjgW\"},nodeId:\"nxYapoFSQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-2zoaqd\",\"data-styles-preset\":\"cgzIWZi4i\",children:\"Materials & Care\"})})})}),className:\"framer-jkhxmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7oqz68\",\"data-framer-name\":\"Page elements/benefit\",name:\"Page elements/benefit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lt6k6e\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1712hjf-container\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"20\" height=\"20\" color=\"#000000\" fill=\"none\">\\n    <path d=\"M11.998 10L20.998 6L11.998 2L2.99805 6L11.998 10Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n    <path d=\"M16.498 4L7.49805 8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\" />\\n    <path d=\"M3.00195 6V18L11.998 22M11.998 22L21.002 18V6.01357M11.998 22V10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n    <path d=\"M5.99805 11L8.49805 12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n</svg>',id:\"mHEW1wcgC\",layoutId:\"mHEW1wcgC\",name:\"icon\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwacc\",\"data-styles-preset\":\"NA60vrvYM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Y0bdYYjgW\"},nodeId:\"HDdrHrgS7\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-2zoaqd\",\"data-styles-preset\":\"cgzIWZi4i\",children:\"Shipping & Returns\"})})})}),className:\"framer-p4rn23\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6kh0x\",\"data-framer-name\":\"Page elements/benefit\",name:\"Page elements/benefit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eyjk6f\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kyhyqv-container\",\"data-framer-name\":\"icon\",name:\"icon\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"20\" height=\"20\" color=\"#000000\" fill=\"none\">\\n    <path d=\"M12.0002 16V16.5M12.0002 13.5V13L13.678 10.4834C13.8881 10.1682 14.0002 9.79783 14.0002 9.41898C14.0002 8.30976 13.0748 7.5 12.0002 7.5C10.8957 7.5 10.0002 8.39543 10.0002 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n    <path d=\"M12.0002 22C17.5231 22 22.0002 17.5228 22.0002 12C22.0002 6.47715 17.5231 2 12.0002 2C6.4774 2 2.00024 6.47715 2.00024 12C2.00024 13.5759 2.40237 14.9412 3.06442 16.2246C3.32403 16.7279 3.40735 17.3096 3.24463 17.8521L2.53389 20.2212C2.30505 20.984 3.01626 21.6952 3.77906 21.4664L6.14818 20.7556C6.69061 20.5929 7.27231 20.6762 7.7756 20.9358C9.05904 21.5979 10.4244 22 12.0002 22Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\\n</svg>',id:\"HhFfhTcyZ\",layoutId:\"HhFfhTcyZ\",name:\"icon\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cqwacc\",\"data-styles-preset\":\"NA60vrvYM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Y0bdYYjgW\"},nodeId:\"QqLtUMF77\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-2zoaqd\",\"data-styles-preset\":\"cgzIWZi4i\",children:\"Support\"})})})}),className:\"framer-1nmb6af\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bbfac7\",\"data-framer-name\":\"order\",name:\"order\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hk3y23\",\"data-framer-name\":\"qty-input\",name:\"qty-input\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxtk0q-container\",\"data-framer-name\":\"Subtract\",name:\"Subtract\",children:/*#__PURE__*/_jsx(QuantityInput,{color:{defaultColor:\"var(--token-7a184f50-36b4-4cb5-a14f-51ebe2d58ba6, rgb(19, 20, 20))\",disabledColor:\"rgba(19, 20, 20, 0.2)\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"center\"},height:\"100%\",icon:{rounded:true,size:12,strokeWidth:2},id:\"CURyLjEs2\",layoutId:\"CURyLjEs2\",maxValue:100,name:\"Subtract\",padding:\"10px\",placeholder:{},radius:\"0px\",shopifyData:AWXVuu0iu,style:{height:\"100%\",width:\"100%\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},type:\"subtract\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d07085-container\",\"data-framer-name\":\"Input\",name:\"Input\",children:/*#__PURE__*/_jsx(QuantityInput,{color:{defaultColor:\"rgb(0, 0, 0)\",disabledColor:\"rgba(0, 0, 0, 0.25)\"},font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontFeatureSettings:\"'tnum' on\",fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.01em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",icon:{rounded:true,size:16,strokeWidth:2},id:\"VRXMFKnWW\",layoutId:\"VRXMFKnWW\",maxValue:100,name:\"Input\",padding:\"10px\",placeholder:{},radius:\"8px\",shopifyData:AWXVuu0iu,style:{height:\"100%\",width:\"100%\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},type:\"input\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bns69k-container\",\"data-framer-name\":\"Add\",name:\"Add\",children:/*#__PURE__*/_jsx(QuantityInput,{color:{defaultColor:\"var(--token-7a184f50-36b4-4cb5-a14f-51ebe2d58ba6, rgb(19, 20, 20))\",disabledColor:\"rgba(19, 20, 20, 0.2)\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",icon:{rounded:false,size:12,strokeWidth:2},id:\"mqM_EQLk_\",layoutId:\"mqM_EQLk_\",maxValue:100,name:\"Add\",padding:\"10px\",placeholder:{},radius:\"0px\",shopifyData:AWXVuu0iu,style:{height:\"100%\",width:\"100%\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},type:\"add\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7t3apa-container\",children:/*#__PURE__*/_jsx(AddToCartButton,{color:{defaultColor:\"rgb(255, 255, 255)\",outOfStockColor:\"rgb(0, 0, 0)\"},fill:{defaultColor:\"rgb(17, 17, 17)\",defaultColorA:\"rgb(94, 94, 94)\",defaultColorB:\"rgb(17, 17, 17)\",gradientAngle:0,outOfStockColor:\"rgb(243, 243, 243)\",outOfStockColorA:\"rgb(243, 243, 243)\",outOfStockColorB:\"rgb(153, 153, 153)\",type:\"color\"},font:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.01em\",lineHeight:\"1em\"},height:\"100%\",id:\"pP2hy3Kt0\",layoutId:\"pP2hy3Kt0\",openCart:true,padding:\"16px 24px 16px 24px\",radius:\"0px\",shopifyData:AWXVuu0iu,style:{width:\"100%\"},text:{default:\"Add to Cart\",outOfStock:\"Out of Stock\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1srq1bl\",\"data-framer-name\":\"inspiration\",id:elementId2,name:\"inspiration\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jayj9y\",\"data-framer-name\":\"layout\",name:\"layout\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16nu3ph\",\"data-framer-name\":\"left\",name:\"left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fn5ho0\",\"data-styles-preset\":\"VNBhbY7Lo\",children:\"Get inspired\"})}),className:\"framer-1n44fv0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6h7tv\",\"data-framer-name\":\"center\",name:\"center\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wo8p2n\",\"data-framer-name\":\"text\",name:\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Get inspired by our projects and customer photos, where each piece brings warmth, elegance, and harmony to modern spaces. Explore real-life interiors and see how our furniture transforms homes, offices, and more with its minimalist design and natural beauty.\"})}),className:\"framer-d9bxw0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dk7asg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"TczRdpLPJ\",name:\"gJ_sZ8zEw\",type:\"Identifier\"},operator:\"==\",right:{collection:\"gJ_sZ8zEw\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"TczRdpLPJ\",data:Inspirations,type:\"Collection\"},right:{alias:\"gJ_sZ8zEw\",data:Shopify,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"TczRdpLPJ\",name:\"d_MET_Rdh\",type:\"Identifier\"},{collection:\"TczRdpLPJ\",name:\"GOUdyCLug\",type:\"Identifier\"},{collection:\"TczRdpLPJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"gJ_sZ8zEw\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:id},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({d_MET_Rdh:d_MET_RdhTczRdpLPJ,GOUdyCLug:GOUdyCLugTczRdpLPJ,id:idTczRdpLPJ},i)=>{d_MET_RdhTczRdpLPJ!==null&&d_MET_RdhTczRdpLPJ!==void 0?d_MET_RdhTczRdpLPJ:d_MET_RdhTczRdpLPJ=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TczRdpLPJ-${idTczRdpLPJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{d_MET_Rdh:d_MET_RdhTczRdpLPJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{d_MET_Rdh:d_MET_RdhTczRdpLPJ},webPageId:\"AJSxuiHm8\"},nodeId:\"nvc6UaADR\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-15i71yk framer-10fl9bq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{width:\"max((min(100vw, 720px) - 50px) / 2, 50px)\"},qXjSdDH6x:{width:\"max((min(max((100vw - 72px) / 1.5, 1px), 720px) - 2px) / 2, 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"max((min(max((100vw - 96px) / 2, 1px), 720px) - 2px) / 2, 50px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4b9o2-container\",children:/*#__PURE__*/_jsx(PageElementsImageThumbnail,{height:\"100%\",id:\"Qf0M1FtZw\",layoutId:\"Qf0M1FtZw\",style:{height:\"100%\",width:\"100%\"},tkOBLFBC8:toResponsiveImage(GOUdyCLugTczRdpLPJ),variant:\"KF6veMuNf\",width:\"100%\"})})})})})})})},idTczRdpLPJ);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f5hqp7\",\"data-framer-name\":\"action\",name:\"action\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JGlrcXMvI\"},implicitPathVariables:undefined},{href:{webPageId:\"JGlrcXMvI\"},implicitPathVariables:undefined},{href:{webPageId:\"JGlrcXMvI\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l88ybs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{ZqduoMLWi:resolvedLinks1[2]},qXjSdDH6x:{ZqduoMLWi:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsBtnSecondary,{cyL4LffZY:\"See Inspirations\",height:\"100%\",id:\"AVFiE6Ucu\",layoutId:\"AVFiE6Ucu\",style:{height:\"100%\"},TgsNbrqJK:false,variant:\"vtuR9dnfo\",width:\"100%\",ZqduoMLWi:resolvedLinks1[0]})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jnvu1e hidden-1jec6zo hidden-tfjmls\",\"data-framer-name\":\"right\",name:\"right\"})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1rsdplt\",\"data-framer-name\":\"recommendations\",id:elementId3,name:\"recommendations\",ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejfj7q\",\"data-framer-name\":\"title\",name:\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fn5ho0\",\"data-styles-preset\":\"VNBhbY7Lo\",children:\"You might also like\"})}),className:\"framer-vb1ihq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-owu3op\",\"data-framer-name\":\"list\",name:\"list\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v8a6fx\",\"data-border\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qXjSdDH6x:{query:{from:{alias:\"L8GjI5_Cj\",data:Shopify,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"L8GjI5_Cj\",name:\"gAC0SCYUy\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"Hd38LFMnR\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"jeMs6azXT\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"AWXVuu0iu\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"VM4Sqz3uV\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"aKCHKFVsl\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"L8GjI5_Cj\",name:\"ONH1RE0Uw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ONH1RE0Uw},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"L8GjI5_Cj\",name:\"gAC0SCYUy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gAC0SCYUy},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"L8GjI5_Cj\",data:Shopify,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"L8GjI5_Cj\",name:\"gAC0SCYUy\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"Hd38LFMnR\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"jeMs6azXT\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"AWXVuu0iu\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"VM4Sqz3uV\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"aKCHKFVsl\",type:\"Identifier\"},{collection:\"L8GjI5_Cj\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"L8GjI5_Cj\",name:\"ONH1RE0Uw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ONH1RE0Uw},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"L8GjI5_Cj\",name:\"gAC0SCYUy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gAC0SCYUy},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({aKCHKFVsl:aKCHKFVslL8GjI5_Cj,AWXVuu0iu:AWXVuu0iuL8GjI5_Cj,gAC0SCYUy:gAC0SCYUyL8GjI5_Cj,Hd38LFMnR:Hd38LFMnRL8GjI5_Cj,id:idL8GjI5_Cj,jeMs6azXT:jeMs6azXTL8GjI5_Cj,VM4Sqz3uV:VM4Sqz3uVL8GjI5_Cj},i)=>{gAC0SCYUyL8GjI5_Cj!==null&&gAC0SCYUyL8GjI5_Cj!==void 0?gAC0SCYUyL8GjI5_Cj:gAC0SCYUyL8GjI5_Cj=\"\";jeMs6azXTL8GjI5_Cj!==null&&jeMs6azXTL8GjI5_Cj!==void 0?jeMs6azXTL8GjI5_Cj:jeMs6azXTL8GjI5_Cj=\"\";AWXVuu0iuL8GjI5_Cj!==null&&AWXVuu0iuL8GjI5_Cj!==void 0?AWXVuu0iuL8GjI5_Cj:AWXVuu0iuL8GjI5_Cj=\"\";VM4Sqz3uVL8GjI5_Cj!==null&&VM4Sqz3uVL8GjI5_Cj!==void 0?VM4Sqz3uVL8GjI5_Cj:VM4Sqz3uVL8GjI5_Cj=0;aKCHKFVslL8GjI5_Cj!==null&&aKCHKFVslL8GjI5_Cj!==void 0?aKCHKFVslL8GjI5_Cj:aKCHKFVslL8GjI5_Cj=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`L8GjI5_Cj-${idL8GjI5_Cj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{gAC0SCYUy:gAC0SCYUyL8GjI5_Cj},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{gAC0SCYUy:gAC0SCYUyL8GjI5_Cj},webPageId:\"oApf03t7c\"},nodeId:\"Vn9OHMbZr\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-wnpiz6 framer-10fl9bq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{width:\"max(max(max(100vw - 48px, 1px), 50px), 320px)\"},qXjSdDH6x:{width:\"380.75px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"max(max(100vw - 48px, 1px) / 3, 50px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5ps62-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{variant:\"n3M04e8su\"},qXjSdDH6x:{variant:\"n3M04e8su\"}},children:/*#__PURE__*/_jsx(CardsCardProduct,{DzOmbcSWT:contains(aKCHKFVslL8GjI5_Cj,\"new arrival\"),height:\"100%\",Ht12LIcsz:AWXVuu0iuL8GjI5_Cj,id:\"uZq3h9vXZ\",layoutId:\"uZq3h9vXZ\",S5jD9ArHO:jeMs6azXTL8GjI5_Cj,style:{width:\"100%\"},TAnzNNx7b:greaterThan(VM4Sqz3uVL8GjI5_Cj,0),variant:\"qfH7mf4Px\",width:\"100%\",WpzmuPYXT:toResponsiveImage(Hd38LFMnRL8GjI5_Cj)})})})})})})})})},idL8GjI5_Cj);})})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1tdzpia\",\"data-framer-name\":\"seo-panel\",id:elementId4,name:\"seo-panel\",ref:ref6,children:[visible2&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-15odmuw\",\"data-framer-name\":\"show if: section-1\",name:\"show if: section-1\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-gd3877\",\"data-framer-name\":\"layout\",name:\"layout\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-33g7dq\",\"data-framer-name\":\"small-text\",name:\"small-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyvbbn\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Our seating collection merges timeless elegance with practical comfort, offering a diverse range of chairs, benches, and stools crafted for both modern and traditional interiors.\"})}),className:\"framer-1oh7z5p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":rXUeFTyhg\",webPageId:\"rI9Ccvyxw\"},implicitPathVariables:undefined},{href:{hash:\":rXUeFTyhg\",webPageId:\"rI9Ccvyxw\"},implicitPathVariables:undefined},{href:{hash:\":rXUeFTyhg\",webPageId:\"rI9Ccvyxw\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wqt5d1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{ZqduoMLWi:resolvedLinks2[2]},qXjSdDH6x:{ZqduoMLWi:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsBtnPrimary,{cyL4LffZY:\"Shop Seating\",height:\"100%\",id:\"Zzo5_Dwel\",layoutId:\"Zzo5_Dwel\",meJL2ATKG:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" color=\"#FFF\" fill=\"none\">\\n    <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.2723 1.35235C12.6673 0.882548 11.8327 0.882549 11.2277 1.35235C10.2594 2.10421 8.23017 3.77604 6.43589 5.88816C4.66736 7.96996 3 10.6255 3 13.3309C3 17.8466 6.50744 22.5 12.25 22.5C17.9926 22.5 21.5 17.8466 21.5 13.3309C21.5 10.6255 19.8326 7.96996 18.0641 5.88816C16.2698 3.77604 14.2406 2.10421 13.2723 1.35235ZM18 14.75C18 14.3358 17.6642 14 17.25 14C16.8358 14 16.5 14.3358 16.5 14.75C16.5 16.5449 15.0449 18 13.25 18C12.8358 18 12.5 18.3358 12.5 18.75C12.5 19.1642 12.8358 19.5 13.25 19.5C15.8734 19.5 18 17.3734 18 14.75Z\" fill=\"currentColor\" />\\n</svg>',Qtft_3hZ2:false,QY46MpMMc:false,style:{height:\"100%\"},T6x_ci0ZZ:true,TgsNbrqJK:false,width:\"100%\",ZqduoMLWi:resolvedLinks2[0]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79cv41\",\"data-framer-name\":\"big-text\",name:\"big-text\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-yssnnd\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1753,pixelWidth:1315,sizes:\"calc(100vw - 72px)\",src:\"https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg\",srcSet:\"https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg 1315w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1753,pixelWidth:1315,sizes:\"max((100vw - 96px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg\",srcSet:\"https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/mPeXqzeXn9pujewQhs7R7pKMk.jpg 1315w\"},className:\"framer-iw7a3k\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ji8pv6\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Modern Design\"})}),className:\"framer-ye1evf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pskqx2\",\"data-styles-preset\":\"PjCXEC5r6\",children:\"Our seating is crafted with a minimalist aesthetic that emphasizes the natural flow of the materials. Each design, from the delicate curves of the Fawn Chair to the robust structure of the Dedo Easy Chair, is made to blend seamlessly into any environment, bringing both style and comfort\u200B.\"})}),className:\"framer-gc1tsu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1s16gqf\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1obuzy3\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1613,pixelWidth:1075,src:\"https://framerusercontent.com/images/a4T4bUbvdde0uHnJVbsdRCnU.jpg?scale-down-to=1024\"},className:\"framer-xx6tky\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19qh67k\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Craftsmanship\"})}),className:\"framer-1mi1dk1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Our seating pieces are meticulously hand-crafted using traditional techniques like mortise and tenon joints, ensuring durability and elegance. The natural beauty of solid wood is enhanced by artisanal details, making each chair not just functional but a work of art.\"})}),className:\"framer-1azp8gp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-p1nthq\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1416,pixelWidth:1099,src:\"https://framerusercontent.com/images/p8G01zO7RRQoH55BvgRjzio149Q.jpg?scale-down-to=1024\"},className:\"framer-11re2fi\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pu989i\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"High-Quality Materials\"})}),className:\"framer-1as5tvr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"We use premium, sustainably-sourced materials, such as solid oak and European walnut, ensuring that each piece not only looks beautiful but is also built to last. The seats are often made with cotton webbing or leather, combining durability with comfort.\"})}),className:\"framer-wnfwze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),visible3&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1fii6lg\",\"data-framer-name\":\"show if: section-2\",name:\"show if: section-2\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-15hxp9i\",\"data-framer-name\":\"layout\",name:\"layout\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1pk32v6\",\"data-framer-name\":\"small-text\",name:\"small-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8dq3r0\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Our table and desk collection embodies a perfect balance of minimalist design and functionality, creating pieces that enhance both home and office environments. \"})}),className:\"framer-1f1j9a4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":eFHN2ZHns\",webPageId:\"sIsR3oTYr\"},implicitPathVariables:undefined},{href:{hash:\":eFHN2ZHns\",webPageId:\"sIsR3oTYr\"},implicitPathVariables:undefined},{href:{hash:\":eFHN2ZHns\",webPageId:\"sIsR3oTYr\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdcv2q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{ZqduoMLWi:resolvedLinks3[2]},qXjSdDH6x:{ZqduoMLWi:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonsBtnPrimary,{cyL4LffZY:\"Shop Tables & Desks\",height:\"100%\",id:\"lK6YZ3alr\",layoutId:\"lK6YZ3alr\",meJL2ATKG:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" color=\"#FFF\" fill=\"none\">\\n    <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.2723 1.35235C12.6673 0.882548 11.8327 0.882549 11.2277 1.35235C10.2594 2.10421 8.23017 3.77604 6.43589 5.88816C4.66736 7.96996 3 10.6255 3 13.3309C3 17.8466 6.50744 22.5 12.25 22.5C17.9926 22.5 21.5 17.8466 21.5 13.3309C21.5 10.6255 19.8326 7.96996 18.0641 5.88816C16.2698 3.77604 14.2406 2.10421 13.2723 1.35235ZM18 14.75C18 14.3358 17.6642 14 17.25 14C16.8358 14 16.5 14.3358 16.5 14.75C16.5 16.5449 15.0449 18 13.25 18C12.8358 18 12.5 18.3358 12.5 18.75C12.5 19.1642 12.8358 19.5 13.25 19.5C15.8734 19.5 18 17.3734 18 14.75Z\" fill=\"currentColor\" />\\n</svg>',Qtft_3hZ2:false,QY46MpMMc:false,style:{height:\"100%\"},T6x_ci0ZZ:true,TgsNbrqJK:false,width:\"100%\",ZqduoMLWi:resolvedLinks3[0]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aklvr1\",\"data-framer-name\":\"big-text\",name:\"big-text\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kgttum\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:851,pixelWidth:638,sizes:\"calc(100vw - 72px)\",src:\"https://framerusercontent.com/images/HrdOsPwyEPCRJgG5kUW7Gw5bMA.jpg\",srcSet:\"https://framerusercontent.com/images/HrdOsPwyEPCRJgG5kUW7Gw5bMA.jpg 638w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:851,pixelWidth:638,sizes:\"max((100vw - 96px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/HrdOsPwyEPCRJgG5kUW7Gw5bMA.jpg\",srcSet:\"https://framerusercontent.com/images/HrdOsPwyEPCRJgG5kUW7Gw5bMA.jpg 638w\"},className:\"framer-pas648\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-daabt9\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Modern Design\"})}),className:\"framer-10j34wz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pskqx2\",\"data-styles-preset\":\"PjCXEC5r6\",children:\"With sleek profiles and thoughtful construction, our tables and desks, like the Stafa and Ava collections, deliver practical workspace solutions with minimalist aesthetics. They provide ample legroom and maintain a light, airy presence, making them ideal for both small and large spaces\"})}),className:\"framer-ftqfvl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-10joiev\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-2fucv2\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1274,pixelWidth:974,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg\",srcSet:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg?scale-down-to=1024 782w,https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg 974w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1274,pixelWidth:974,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg\",srcSet:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg?scale-down-to=1024 782w,https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg 974w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1274,pixelWidth:974,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg\",srcSet:\"https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg?scale-down-to=1024 782w,https://framerusercontent.com/images/y8FpyqQySBgOSbiYFWCIEzNk.jpg 974w\"},className:\"framer-1q2uyun\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11z66ck\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Craftsmanship\"})}),className:\"framer-1efrcji\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Each table is made with the finest solid oak, showcasing both durability and beauty. The handcrafted designs use traditional joinery techniques combined with modern functionality, like steel stiffeners underneath the table plates to prevent warping over time\u200B.\"})}),className:\"framer-19unlbs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15tqpbb\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1415,pixelWidth:1258,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg\",srcSet:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg?scale-down-to=1024 910w,https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg 1258w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1415,pixelWidth:1258,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg\",srcSet:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg?scale-down-to=1024 910w,https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg 1258w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1415,pixelWidth:1258,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg\",srcSet:\"https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg?scale-down-to=1024 910w,https://framerusercontent.com/images/YfsoGtand5Ubsnjva6zrmBuD60.jpg 1258w\"},className:\"framer-1h7pdtt\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-on4vmk\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"High-Quality Materials\"})}),className:\"framer-1yuwp52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"We use sustainably sourced materials, including oak and natural linoleum, offering smooth, warm surfaces that are antibacterial and easy to maintain. The available finishes highlight the natural elegance of the wood.\"})}),className:\"framer-11aopo1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),visible4&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-14lfgpm\",\"data-framer-name\":\"show if: section-3\",name:\"show if: section-3\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-z1uvpl\",\"data-framer-name\":\"layout\",name:\"layout\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lnmwk3\",\"data-framer-name\":\"small-text\",name:\"small-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7fpx2f\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Our storage units combine functionality with minimalist design, offering pieces that seamlessly blend into any living space while providing practical storage solutions. \"})}),className:\"framer-r3y6qo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":h1RmSBNvq\",webPageId:\"Xf0Jygk3j\"},implicitPathVariables:undefined},{href:{hash:\":h1RmSBNvq\",webPageId:\"Xf0Jygk3j\"},implicitPathVariables:undefined},{href:{hash:\":h1RmSBNvq\",webPageId:\"Xf0Jygk3j\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j02mse-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{ZqduoMLWi:resolvedLinks4[2]},qXjSdDH6x:{ZqduoMLWi:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonsBtnPrimary,{cyL4LffZY:\"Shop Storage\",height:\"100%\",id:\"Sd_dMaeaq\",layoutId:\"Sd_dMaeaq\",meJL2ATKG:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" color=\"#FFF\" fill=\"none\">\\n    <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.2723 1.35235C12.6673 0.882548 11.8327 0.882549 11.2277 1.35235C10.2594 2.10421 8.23017 3.77604 6.43589 5.88816C4.66736 7.96996 3 10.6255 3 13.3309C3 17.8466 6.50744 22.5 12.25 22.5C17.9926 22.5 21.5 17.8466 21.5 13.3309C21.5 10.6255 19.8326 7.96996 18.0641 5.88816C16.2698 3.77604 14.2406 2.10421 13.2723 1.35235ZM18 14.75C18 14.3358 17.6642 14 17.25 14C16.8358 14 16.5 14.3358 16.5 14.75C16.5 16.5449 15.0449 18 13.25 18C12.8358 18 12.5 18.3358 12.5 18.75C12.5 19.1642 12.8358 19.5 13.25 19.5C15.8734 19.5 18 17.3734 18 14.75Z\" fill=\"currentColor\" />\\n</svg>',Qtft_3hZ2:false,QY46MpMMc:false,style:{height:\"100%\"},T6x_ci0ZZ:true,TgsNbrqJK:false,width:\"100%\",ZqduoMLWi:resolvedLinks4[0]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzvohg\",\"data-framer-name\":\"big-text\",name:\"big-text\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1egx8hu\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1150,pixelWidth:857,sizes:\"calc(100vw - 72px)\",src:\"https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg\",srcSet:\"https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg?scale-down-to=1024 763w,https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg 857w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1150,pixelWidth:857,sizes:\"max((100vw - 96px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg\",srcSet:\"https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg?scale-down-to=1024 763w,https://framerusercontent.com/images/L0O6SlZCZteT5LmzZxS6APss0.jpg 857w\"},className:\"framer-7aeux2\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nycqxi\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Modern Design\"})}),className:\"framer-k1m505\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pskqx2\",\"data-styles-preset\":\"PjCXEC5r6\",children:\"Designed with both aesthetics and functionality in mind, the storage units, like the Fawn and Ena collections, feature smooth, hand-polished surfaces and practical push-to-open drawers. These pieces fit effortlessly into modern spaces, with their sleek frames and elevated profiles giving a sense of airiness.\"})}),className:\"framer-o693ia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1dnk3aw\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1pdwpx6\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1580,pixelWidth:1053,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg\",srcSet:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg 1053w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1580,pixelWidth:1053,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg\",srcSet:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg 1053w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1580,pixelWidth:1053,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg\",srcSet:\"https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lYT1hi2jniCM1Gn93H6Z0RxmbE.jpg 1053w\"},className:\"framer-1ugiwo6\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ra8d4k\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Craftsmanship\"})}),className:\"framer-1rddkg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Each unit is expertly crafted using high-quality solid oak, ensuring durability and timeless appeal. The thoughtful construction includes details like internal stiffeners in drawer panels, designed to maintain the wood\u2019s integrity over time.\"})}),className:\"framer-1kzn1oc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-13tgths\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1037,pixelWidth:743,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg\",srcSet:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg?scale-down-to=1024 733w,https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg 743w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1037,pixelWidth:743,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg\",srcSet:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg?scale-down-to=1024 733w,https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg 743w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1037,pixelWidth:743,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg\",srcSet:\"https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg?scale-down-to=1024 733w,https://framerusercontent.com/images/psZ95wu6fYYTRtbJrEtwj0f8sLI.jpg 743w\"},className:\"framer-1e7hbdb\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1urcf\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"High-Quality Materials\"})}),className:\"framer-mn8536\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Our storage pieces are made from sustainably sourced oak, with options for plant-based Hardwax oil finishes that preserve the natural beauty of the wood. The combination of wood and sleek MDF or linoleum fronts adds a modern touch.\"})}),className:\"framer-1prroco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),visible5&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1l7rkqz\",\"data-framer-name\":\"show if: section-4\",name:\"show if: section-4\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-srj4x8\",\"data-framer-name\":\"layout\",name:\"layout\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-kta11w\",\"data-framer-name\":\"small-text\",name:\"small-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hab3gh\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Our accessories collection brings the finishing touches that turn a house into a home, offering both aesthetic value and functionality. \"})}),className:\"framer-jqhkb8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":eoHkdauXE\",webPageId:\"OLYg6gwwX\"},implicitPathVariables:undefined},{href:{hash:\":eoHkdauXE\",webPageId:\"OLYg6gwwX\"},implicitPathVariables:undefined},{href:{hash:\":eoHkdauXE\",webPageId:\"OLYg6gwwX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fipwyr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{ZqduoMLWi:resolvedLinks5[2]},qXjSdDH6x:{ZqduoMLWi:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonsBtnPrimary,{cyL4LffZY:\"Shop Accessories\",height:\"100%\",id:\"calheaQZx\",layoutId:\"calheaQZx\",meJL2ATKG:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" color=\"#FFF\" fill=\"none\">\\n    <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.2723 1.35235C12.6673 0.882548 11.8327 0.882549 11.2277 1.35235C10.2594 2.10421 8.23017 3.77604 6.43589 5.88816C4.66736 7.96996 3 10.6255 3 13.3309C3 17.8466 6.50744 22.5 12.25 22.5C17.9926 22.5 21.5 17.8466 21.5 13.3309C21.5 10.6255 19.8326 7.96996 18.0641 5.88816C16.2698 3.77604 14.2406 2.10421 13.2723 1.35235ZM18 14.75C18 14.3358 17.6642 14 17.25 14C16.8358 14 16.5 14.3358 16.5 14.75C16.5 16.5449 15.0449 18 13.25 18C12.8358 18 12.5 18.3358 12.5 18.75C12.5 19.1642 12.8358 19.5 13.25 19.5C15.8734 19.5 18 17.3734 18 14.75Z\" fill=\"currentColor\" />\\n</svg>',Qtft_3hZ2:false,QY46MpMMc:false,style:{height:\"100%\"},T6x_ci0ZZ:true,TgsNbrqJK:false,width:\"100%\",ZqduoMLWi:resolvedLinks5[0]})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1efvadf\",\"data-framer-name\":\"big-text\",name:\"big-text\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-abaluc\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:2017,pixelWidth:1673,sizes:\"calc(100vw - 72px)\",src:\"https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg\",srcSet:\"https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg?scale-down-to=1024 849w,https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg 1673w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2017,pixelWidth:1673,sizes:\"max((100vw - 96px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg\",srcSet:\"https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg?scale-down-to=1024 849w,https://framerusercontent.com/images/Lh9viHB2el87PeyrgxdXFUnU0H4.jpg 1673w\"},className:\"framer-fv7l3a\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tihp6o\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Modern Design\"})}),className:\"framer-mbn8qn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pskqx2\",\"data-styles-preset\":\"PjCXEC5r6\",children:\"Each accessory, like the Look Mirror or the Hook Wall Shelf, combines simplicity with thoughtful design. These pieces are versatile, space-saving, and serve a decorative purpose while offering practical solutions for modern living.\"})}),className:\"framer-12nlgsp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1dmue54\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-168s8a4\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1791,pixelWidth:1607,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg\",srcSet:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg?scale-down-to=1024 918w,https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg 1607w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1791,pixelWidth:1607,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg\",srcSet:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg?scale-down-to=1024 918w,https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg 1607w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1791,pixelWidth:1607,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg\",srcSet:\"https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg?scale-down-to=1024 918w,https://framerusercontent.com/images/dVOLCZQ5XeO9OfHDvc9Vt4R1V5g.jpg 1607w\"},className:\"framer-9b57sq\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5atp9d\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"Craftsmanship\"})}),className:\"framer-usw701\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"Our pieces, such as the Tica wooden bird decoration, are meticulously crafted with traditional techniques. These minimalist designs are made from solid oak or walnut and add a playful, artistic touch to any room.\"})}),className:\"framer-vu6u0i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-uorsfb\",\"data-framer-name\":\"section\",name:\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1679,pixelWidth:1259,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg\",srcSet:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg 1259w\"}},qXjSdDH6x:{background:{alt:\"\",fit:\"fill\",pixelHeight:1679,pixelWidth:1259,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 36px) / 2, 1px)\",src:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg\",srcSet:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg 1259w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1679,pixelWidth:1259,sizes:\"max((max((100vw - 96px) / 1.5, 1px) - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg\",srcSet:\"https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/wuVNcFpOsCNUvcGtnx3ogUyOt3M.jpg 1259w\"},className:\"framer-1iv59v0\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7w6kbo\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15bw6j4\",\"data-styles-preset\":\"Dst5AiJf3\",children:\"High-Quality Materials\"})}),className:\"framer-wxe5wm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f49ezb\",\"data-styles-preset\":\"UfcyUE8c8\",children:\"We use premium, sustainably sourced woods with plant-based Hardwax oil finishes that maintain the natural beauty of the material. The Mu Floating Shelves are a perfect example, providing both functionality and visual appeal while seamlessly fitting into any style.\"})}),className:\"framer-xdceib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:585,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vsfzgm-container\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AbG_iKCGQ:{variant:\"kNPZfm2ha\"},qXjSdDH6x:{variant:\"p61QjsCdt\"}},children:/*#__PURE__*/_jsx(LayoutFooter,{height:\"100%\",id:\"PLBbJeObs\",layoutId:\"PLBbJeObs\",style:{width:\"100%\"},variant:\"NSUxJfV3D\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-5WeCW { background: white; }`,\".framer-5WeCW.framer-10fl9bq, .framer-5WeCW .framer-10fl9bq { display: block; }\",\".framer-5WeCW.framer-s09tnv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-5WeCW .framer-1efnok6-container, .framer-5WeCW .framer-1q2493c-container, .framer-5WeCW .framer-ur1ih5-container, .framer-5WeCW .framer-1k98m1p-container, .framer-5WeCW .framer-1yii90a-container, .framer-5WeCW .framer-1xw9798-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5WeCW .framer-xiq2yr-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-5WeCW .framer-gj4dzg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-zjutta { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-h4koiu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1k6haou-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-kpk1vt { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1qlt0aw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-px940h-container, .framer-5WeCW .framer-7t3apa-container, .framer-5WeCW .framer-o5ps62-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1a3w7uc-container, .framer-5WeCW .framer-dqleqa-container, .framer-5WeCW .framer-1gxz8i2-container, .framer-5WeCW .framer-1jqv04z-container, .framer-5WeCW .framer-vsfzgm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5WeCW .framer-102foqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-5WeCW .framer-1t0ej9f { align-content: flex-start; align-items: flex-start; background-color: var(--token-d044e4c7-bda8-488a-b3bd-ea0eb0eb4588, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 480px; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-3fhmcw, .framer-5WeCW .framer-bbfac7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-ybyuor { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1y0yx4b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5WeCW .framer-kg9m5f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1tuvufc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-5WeCW .framer-1rtblyl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-5WeCW .framer-w1hmzu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-5WeCW .framer-1aa7hna { --border-bottom-width: 1px; --border-color: rgba(19, 20, 20, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5WeCW .framer-asulbr, .framer-5WeCW .framer-jkhxmu, .framer-5WeCW .framer-p4rn23, .framer-5WeCW .framer-1nmb6af { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5WeCW .framer-1o6f3hz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1ojjy3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-166tc45 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-13plzno { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5WeCW .framer-1l7y1n1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-fwl1oi, .framer-5WeCW .framer-7oqz68, .framer-5WeCW .framer-1a6kh0x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5WeCW .framer-qmeic8, .framer-5WeCW .framer-1lt6k6e, .framer-5WeCW .framer-1eyjk6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5WeCW .framer-un6tlv-container, .framer-5WeCW .framer-1712hjf-container, .framer-5WeCW .framer-kyhyqv-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); opacity: 0.6; position: relative; width: 20px; }\",\".framer-5WeCW .framer-1hk3y23 { align-content: center; align-items: center; align-self: stretch; background-color: rgba(241, 243, 243, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5WeCW .framer-1jxtk0q-container, .framer-5WeCW .framer-bns69k-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-5WeCW .framer-1d07085-container { flex: none; height: 36px; position: relative; width: 40px; }\",\".framer-5WeCW .framer-1srq1bl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1jayj9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 144px 24px 144px 24px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-16nu3ph { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1n44fv0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: sticky; top: 112px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-5WeCW .framer-s6h7tv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 720px; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1wo8p2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-d9bxw0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1dk7asg { display: grid; flex: none; gap: 2px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-15i71yk { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-5WeCW .framer-y4b9o2-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 1px; }\",\".framer-5WeCW .framer-f5hqp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-l88ybs-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-5WeCW .framer-1jnvu1e { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-1rsdplt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1ejfj7q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 0px 24px 24px 24px; position: relative; width: 50%; }\",\".framer-5WeCW .framer-vb1ihq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5WeCW .framer-owu3op { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-v8a6fx { --border-bottom-width: 0px; --border-color: var(--token-e3814588-0466-4cbc-91aa-c3eb44f1140e, #f1f3f3); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; display: grid; flex: 1 0 0px; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-wnpiz6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-5WeCW .framer-1tdzpia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 1685px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-15odmuw, .framer-5WeCW .framer-1fii6lg, .framer-5WeCW .framer-14lfgpm, .framer-5WeCW .framer-1l7rkqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 90vh; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-gd3877, .framer-5WeCW .framer-15hxp9i, .framer-5WeCW .framer-z1uvpl, .framer-5WeCW .framer-srj4x8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 104px 24px 104px 24px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-33g7dq, .framer-5WeCW .framer-1pk32v6, .framer-5WeCW .framer-1lnmwk3, .framer-5WeCW .framer-kta11w { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-gyvbbn, .framer-5WeCW .framer-8dq3r0, .framer-5WeCW .framer-7fpx2f, .framer-5WeCW .framer-hab3gh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px; position: sticky; top: 76px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-5WeCW .framer-1oh7z5p, .framer-5WeCW .framer-1f1j9a4, .framer-5WeCW .framer-r3y6qo, .framer-5WeCW .framer-jqhkb8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 440px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-wqt5d1-container, .framer-5WeCW .framer-1kdcv2q-container, .framer-5WeCW .framer-1j02mse-container, .framer-5WeCW .framer-1fipwyr-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-5WeCW .framer-79cv41, .framer-5WeCW .framer-aklvr1, .framer-5WeCW .framer-qzvohg, .framer-5WeCW .framer-1efvadf { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-yssnnd, .framer-5WeCW .framer-kgttum, .framer-5WeCW .framer-1egx8hu, .framer-5WeCW .framer-abaluc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-iw7a3k, .framer-5WeCW .framer-xx6tky, .framer-5WeCW .framer-11re2fi, .framer-5WeCW .framer-pas648, .framer-5WeCW .framer-1q2uyun, .framer-5WeCW .framer-1h7pdtt, .framer-5WeCW .framer-7aeux2, .framer-5WeCW .framer-1ugiwo6, .framer-5WeCW .framer-1e7hbdb, .framer-5WeCW .framer-fv7l3a, .framer-5WeCW .framer-9b57sq, .framer-5WeCW .framer-1iv59v0 { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 267px); overflow: hidden; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1ji8pv6, .framer-5WeCW .framer-daabt9, .framer-5WeCW .framer-1nycqxi, .framer-5WeCW .framer-1tihp6o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 36px 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-ye1evf, .framer-5WeCW .framer-1mi1dk1, .framer-5WeCW .framer-1as5tvr, .framer-5WeCW .framer-10j34wz, .framer-5WeCW .framer-1efrcji, .framer-5WeCW .framer-1yuwp52, .framer-5WeCW .framer-k1m505, .framer-5WeCW .framer-1rddkg3, .framer-5WeCW .framer-mn8536, .framer-5WeCW .framer-mbn8qn, .framer-5WeCW .framer-usw701, .framer-5WeCW .framer-wxe5wm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: text; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5WeCW .framer-gc1tsu, .framer-5WeCW .framer-1azp8gp, .framer-5WeCW .framer-wnfwze, .framer-5WeCW .framer-ftqfvl, .framer-5WeCW .framer-19unlbs, .framer-5WeCW .framer-11aopo1, .framer-5WeCW .framer-o693ia, .framer-5WeCW .framer-1kzn1oc, .framer-5WeCW .framer-1prroco, .framer-5WeCW .framer-12nlgsp, .framer-5WeCW .framer-vu6u0i, .framer-5WeCW .framer-xdceib { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; cursor: text; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-1dmue54 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WeCW .framer-1obuzy3, .framer-5WeCW .framer-p1nthq, .framer-5WeCW .framer-2fucv2, .framer-5WeCW .framer-15tqpbb, .framer-5WeCW .framer-1pdwpx6, .framer-5WeCW .framer-13tgths, .framer-5WeCW .framer-168s8a4, .framer-5WeCW .framer-uorsfb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5WeCW .framer-19qh67k, .framer-5WeCW .framer-pu989i, .framer-5WeCW .framer-11z66ck, .framer-5WeCW .framer-on4vmk, .framer-5WeCW .framer-ra8d4k, .framer-5WeCW .framer-a1urcf, .framer-5WeCW .framer-5atp9d, .framer-5WeCW .framer-7w6kbo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WeCW.framer-s09tnv, .framer-5WeCW .framer-gj4dzg, .framer-5WeCW .framer-zjutta, .framer-5WeCW .framer-h4koiu, .framer-5WeCW .framer-kpk1vt, .framer-5WeCW .framer-1qlt0aw, .framer-5WeCW .framer-102foqj, .framer-5WeCW .framer-1t0ej9f, .framer-5WeCW .framer-3fhmcw, .framer-5WeCW .framer-ybyuor, .framer-5WeCW .framer-kg9m5f, .framer-5WeCW .framer-1tuvufc, .framer-5WeCW .framer-1rtblyl, .framer-5WeCW .framer-1o6f3hz, .framer-5WeCW .framer-1ojjy3c, .framer-5WeCW .framer-166tc45, .framer-5WeCW .framer-1l7y1n1, .framer-5WeCW .framer-fwl1oi, .framer-5WeCW .framer-qmeic8, .framer-5WeCW .framer-7oqz68, .framer-5WeCW .framer-1lt6k6e, .framer-5WeCW .framer-1a6kh0x, .framer-5WeCW .framer-1eyjk6f, .framer-5WeCW .framer-bbfac7, .framer-5WeCW .framer-1hk3y23, .framer-5WeCW .framer-1srq1bl, .framer-5WeCW .framer-1jayj9y, .framer-5WeCW .framer-16nu3ph, .framer-5WeCW .framer-s6h7tv, .framer-5WeCW .framer-1wo8p2n, .framer-5WeCW .framer-15i71yk, .framer-5WeCW .framer-f5hqp7, .framer-5WeCW .framer-1jnvu1e, .framer-5WeCW .framer-1rsdplt, .framer-5WeCW .framer-1ejfj7q, .framer-5WeCW .framer-owu3op, .framer-5WeCW .framer-wnpiz6, .framer-5WeCW .framer-1tdzpia, .framer-5WeCW .framer-15odmuw, .framer-5WeCW .framer-gd3877, .framer-5WeCW .framer-33g7dq, .framer-5WeCW .framer-gyvbbn, .framer-5WeCW .framer-79cv41, .framer-5WeCW .framer-yssnnd, .framer-5WeCW .framer-1ji8pv6, .framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-1obuzy3, .framer-5WeCW .framer-19qh67k, .framer-5WeCW .framer-p1nthq, .framer-5WeCW .framer-pu989i, .framer-5WeCW .framer-1fii6lg, .framer-5WeCW .framer-15hxp9i, .framer-5WeCW .framer-1pk32v6, .framer-5WeCW .framer-8dq3r0, .framer-5WeCW .framer-aklvr1, .framer-5WeCW .framer-kgttum, .framer-5WeCW .framer-daabt9, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-2fucv2, .framer-5WeCW .framer-11z66ck, .framer-5WeCW .framer-15tqpbb, .framer-5WeCW .framer-on4vmk, .framer-5WeCW .framer-14lfgpm, .framer-5WeCW .framer-z1uvpl, .framer-5WeCW .framer-1lnmwk3, .framer-5WeCW .framer-7fpx2f, .framer-5WeCW .framer-qzvohg, .framer-5WeCW .framer-1egx8hu, .framer-5WeCW .framer-1nycqxi, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-1pdwpx6, .framer-5WeCW .framer-ra8d4k, .framer-5WeCW .framer-13tgths, .framer-5WeCW .framer-a1urcf, .framer-5WeCW .framer-1l7rkqz, .framer-5WeCW .framer-srj4x8, .framer-5WeCW .framer-kta11w, .framer-5WeCW .framer-hab3gh, .framer-5WeCW .framer-1efvadf, .framer-5WeCW .framer-abaluc, .framer-5WeCW .framer-1tihp6o, .framer-5WeCW .framer-1dmue54, .framer-5WeCW .framer-168s8a4, .framer-5WeCW .framer-5atp9d, .framer-5WeCW .framer-uorsfb, .framer-5WeCW .framer-7w6kbo { gap: 0px; } .framer-5WeCW.framer-s09tnv > *, .framer-5WeCW .framer-gj4dzg > *, .framer-5WeCW .framer-h4koiu > *, .framer-5WeCW .framer-kpk1vt > *, .framer-5WeCW .framer-1t0ej9f > *, .framer-5WeCW .framer-kg9m5f > *, .framer-5WeCW .framer-fwl1oi > *, .framer-5WeCW .framer-7oqz68 > *, .framer-5WeCW .framer-1a6kh0x > *, .framer-5WeCW .framer-1srq1bl > *, .framer-5WeCW .framer-s6h7tv > *, .framer-5WeCW .framer-f5hqp7 > *, .framer-5WeCW .framer-1rsdplt > *, .framer-5WeCW .framer-1tdzpia > *, .framer-5WeCW .framer-15odmuw > *, .framer-5WeCW .framer-1fii6lg > *, .framer-5WeCW .framer-14lfgpm > *, .framer-5WeCW .framer-1l7rkqz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5WeCW.framer-s09tnv > :first-child, .framer-5WeCW .framer-gj4dzg > :first-child, .framer-5WeCW .framer-h4koiu > :first-child, .framer-5WeCW .framer-kpk1vt > :first-child, .framer-5WeCW .framer-102foqj > :first-child, .framer-5WeCW .framer-1t0ej9f > :first-child, .framer-5WeCW .framer-ybyuor > :first-child, .framer-5WeCW .framer-kg9m5f > :first-child, .framer-5WeCW .framer-1tuvufc > :first-child, .framer-5WeCW .framer-1o6f3hz > :first-child, .framer-5WeCW .framer-166tc45 > :first-child, .framer-5WeCW .framer-fwl1oi > :first-child, .framer-5WeCW .framer-7oqz68 > :first-child, .framer-5WeCW .framer-1a6kh0x > :first-child, .framer-5WeCW .framer-1srq1bl > :first-child, .framer-5WeCW .framer-16nu3ph > :first-child, .framer-5WeCW .framer-s6h7tv > :first-child, .framer-5WeCW .framer-f5hqp7 > :first-child, .framer-5WeCW .framer-1jnvu1e > :first-child, .framer-5WeCW .framer-1rsdplt > :first-child, .framer-5WeCW .framer-1ejfj7q > :first-child, .framer-5WeCW .framer-1tdzpia > :first-child, .framer-5WeCW .framer-15odmuw > :first-child, .framer-5WeCW .framer-33g7dq > :first-child, .framer-5WeCW .framer-gyvbbn > :first-child, .framer-5WeCW .framer-79cv41 > :first-child, .framer-5WeCW .framer-yssnnd > :first-child, .framer-5WeCW .framer-1ji8pv6 > :first-child, .framer-5WeCW .framer-1obuzy3 > :first-child, .framer-5WeCW .framer-19qh67k > :first-child, .framer-5WeCW .framer-p1nthq > :first-child, .framer-5WeCW .framer-pu989i > :first-child, .framer-5WeCW .framer-1fii6lg > :first-child, .framer-5WeCW .framer-1pk32v6 > :first-child, .framer-5WeCW .framer-8dq3r0 > :first-child, .framer-5WeCW .framer-aklvr1 > :first-child, .framer-5WeCW .framer-kgttum > :first-child, .framer-5WeCW .framer-daabt9 > :first-child, .framer-5WeCW .framer-2fucv2 > :first-child, .framer-5WeCW .framer-11z66ck > :first-child, .framer-5WeCW .framer-15tqpbb > :first-child, .framer-5WeCW .framer-on4vmk > :first-child, .framer-5WeCW .framer-14lfgpm > :first-child, .framer-5WeCW .framer-1lnmwk3 > :first-child, .framer-5WeCW .framer-7fpx2f > :first-child, .framer-5WeCW .framer-qzvohg > :first-child, .framer-5WeCW .framer-1egx8hu > :first-child, .framer-5WeCW .framer-1nycqxi > :first-child, .framer-5WeCW .framer-1pdwpx6 > :first-child, .framer-5WeCW .framer-ra8d4k > :first-child, .framer-5WeCW .framer-13tgths > :first-child, .framer-5WeCW .framer-a1urcf > :first-child, .framer-5WeCW .framer-1l7rkqz > :first-child, .framer-5WeCW .framer-kta11w > :first-child, .framer-5WeCW .framer-hab3gh > :first-child, .framer-5WeCW .framer-1efvadf > :first-child, .framer-5WeCW .framer-abaluc > :first-child, .framer-5WeCW .framer-1tihp6o > :first-child, .framer-5WeCW .framer-168s8a4 > :first-child, .framer-5WeCW .framer-5atp9d > :first-child, .framer-5WeCW .framer-uorsfb > :first-child, .framer-5WeCW .framer-7w6kbo > :first-child { margin-top: 0px; } .framer-5WeCW.framer-s09tnv > :last-child, .framer-5WeCW .framer-gj4dzg > :last-child, .framer-5WeCW .framer-h4koiu > :last-child, .framer-5WeCW .framer-kpk1vt > :last-child, .framer-5WeCW .framer-102foqj > :last-child, .framer-5WeCW .framer-1t0ej9f > :last-child, .framer-5WeCW .framer-ybyuor > :last-child, .framer-5WeCW .framer-kg9m5f > :last-child, .framer-5WeCW .framer-1tuvufc > :last-child, .framer-5WeCW .framer-1o6f3hz > :last-child, .framer-5WeCW .framer-166tc45 > :last-child, .framer-5WeCW .framer-fwl1oi > :last-child, .framer-5WeCW .framer-7oqz68 > :last-child, .framer-5WeCW .framer-1a6kh0x > :last-child, .framer-5WeCW .framer-1srq1bl > :last-child, .framer-5WeCW .framer-16nu3ph > :last-child, .framer-5WeCW .framer-s6h7tv > :last-child, .framer-5WeCW .framer-f5hqp7 > :last-child, .framer-5WeCW .framer-1jnvu1e > :last-child, .framer-5WeCW .framer-1rsdplt > :last-child, .framer-5WeCW .framer-1ejfj7q > :last-child, .framer-5WeCW .framer-1tdzpia > :last-child, .framer-5WeCW .framer-15odmuw > :last-child, .framer-5WeCW .framer-33g7dq > :last-child, .framer-5WeCW .framer-gyvbbn > :last-child, .framer-5WeCW .framer-79cv41 > :last-child, .framer-5WeCW .framer-yssnnd > :last-child, .framer-5WeCW .framer-1ji8pv6 > :last-child, .framer-5WeCW .framer-1obuzy3 > :last-child, .framer-5WeCW .framer-19qh67k > :last-child, .framer-5WeCW .framer-p1nthq > :last-child, .framer-5WeCW .framer-pu989i > :last-child, .framer-5WeCW .framer-1fii6lg > :last-child, .framer-5WeCW .framer-1pk32v6 > :last-child, .framer-5WeCW .framer-8dq3r0 > :last-child, .framer-5WeCW .framer-aklvr1 > :last-child, .framer-5WeCW .framer-kgttum > :last-child, .framer-5WeCW .framer-daabt9 > :last-child, .framer-5WeCW .framer-2fucv2 > :last-child, .framer-5WeCW .framer-11z66ck > :last-child, .framer-5WeCW .framer-15tqpbb > :last-child, .framer-5WeCW .framer-on4vmk > :last-child, .framer-5WeCW .framer-14lfgpm > :last-child, .framer-5WeCW .framer-1lnmwk3 > :last-child, .framer-5WeCW .framer-7fpx2f > :last-child, .framer-5WeCW .framer-qzvohg > :last-child, .framer-5WeCW .framer-1egx8hu > :last-child, .framer-5WeCW .framer-1nycqxi > :last-child, .framer-5WeCW .framer-1pdwpx6 > :last-child, .framer-5WeCW .framer-ra8d4k > :last-child, .framer-5WeCW .framer-13tgths > :last-child, .framer-5WeCW .framer-a1urcf > :last-child, .framer-5WeCW .framer-1l7rkqz > :last-child, .framer-5WeCW .framer-kta11w > :last-child, .framer-5WeCW .framer-hab3gh > :last-child, .framer-5WeCW .framer-1efvadf > :last-child, .framer-5WeCW .framer-abaluc > :last-child, .framer-5WeCW .framer-1tihp6o > :last-child, .framer-5WeCW .framer-168s8a4 > :last-child, .framer-5WeCW .framer-5atp9d > :last-child, .framer-5WeCW .framer-uorsfb > :last-child, .framer-5WeCW .framer-7w6kbo > :last-child { margin-bottom: 0px; } .framer-5WeCW .framer-zjutta > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-5WeCW .framer-zjutta > :first-child, .framer-5WeCW .framer-1qlt0aw > :first-child, .framer-5WeCW .framer-3fhmcw > :first-child, .framer-5WeCW .framer-1rtblyl > :first-child, .framer-5WeCW .framer-1ojjy3c > :first-child, .framer-5WeCW .framer-1l7y1n1 > :first-child, .framer-5WeCW .framer-qmeic8 > :first-child, .framer-5WeCW .framer-1lt6k6e > :first-child, .framer-5WeCW .framer-1eyjk6f > :first-child, .framer-5WeCW .framer-bbfac7 > :first-child, .framer-5WeCW .framer-1hk3y23 > :first-child, .framer-5WeCW .framer-1jayj9y > :first-child, .framer-5WeCW .framer-1wo8p2n > :first-child, .framer-5WeCW .framer-15i71yk > :first-child, .framer-5WeCW .framer-owu3op > :first-child, .framer-5WeCW .framer-wnpiz6 > :first-child, .framer-5WeCW .framer-gd3877 > :first-child, .framer-5WeCW .framer-1s16gqf > :first-child, .framer-5WeCW .framer-15hxp9i > :first-child, .framer-5WeCW .framer-10joiev > :first-child, .framer-5WeCW .framer-z1uvpl > :first-child, .framer-5WeCW .framer-1dnk3aw > :first-child, .framer-5WeCW .framer-srj4x8 > :first-child, .framer-5WeCW .framer-1dmue54 > :first-child { margin-left: 0px; } .framer-5WeCW .framer-zjutta > :last-child, .framer-5WeCW .framer-1qlt0aw > :last-child, .framer-5WeCW .framer-3fhmcw > :last-child, .framer-5WeCW .framer-1rtblyl > :last-child, .framer-5WeCW .framer-1ojjy3c > :last-child, .framer-5WeCW .framer-1l7y1n1 > :last-child, .framer-5WeCW .framer-qmeic8 > :last-child, .framer-5WeCW .framer-1lt6k6e > :last-child, .framer-5WeCW .framer-1eyjk6f > :last-child, .framer-5WeCW .framer-bbfac7 > :last-child, .framer-5WeCW .framer-1hk3y23 > :last-child, .framer-5WeCW .framer-1jayj9y > :last-child, .framer-5WeCW .framer-1wo8p2n > :last-child, .framer-5WeCW .framer-15i71yk > :last-child, .framer-5WeCW .framer-owu3op > :last-child, .framer-5WeCW .framer-wnpiz6 > :last-child, .framer-5WeCW .framer-gd3877 > :last-child, .framer-5WeCW .framer-1s16gqf > :last-child, .framer-5WeCW .framer-15hxp9i > :last-child, .framer-5WeCW .framer-10joiev > :last-child, .framer-5WeCW .framer-z1uvpl > :last-child, .framer-5WeCW .framer-1dnk3aw > :last-child, .framer-5WeCW .framer-srj4x8 > :last-child, .framer-5WeCW .framer-1dmue54 > :last-child { margin-right: 0px; } .framer-5WeCW .framer-1qlt0aw > *, .framer-5WeCW .framer-1hk3y23 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5WeCW .framer-102foqj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5WeCW .framer-3fhmcw > *, .framer-5WeCW .framer-1rtblyl > *, .framer-5WeCW .framer-qmeic8 > *, .framer-5WeCW .framer-1lt6k6e > *, .framer-5WeCW .framer-1eyjk6f > *, .framer-5WeCW .framer-bbfac7 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-5WeCW .framer-ybyuor > *, .framer-5WeCW .framer-1tuvufc > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5WeCW .framer-1o6f3hz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5WeCW .framer-1ojjy3c > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-5WeCW .framer-166tc45 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-5WeCW .framer-1l7y1n1 > *, .framer-5WeCW .framer-1jayj9y > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5WeCW .framer-16nu3ph > *, .framer-5WeCW .framer-1jnvu1e > *, .framer-5WeCW .framer-1ejfj7q > *, .framer-5WeCW .framer-79cv41 > *, .framer-5WeCW .framer-aklvr1 > *, .framer-5WeCW .framer-qzvohg > *, .framer-5WeCW .framer-1efvadf > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-5WeCW .framer-1wo8p2n > *, .framer-5WeCW .framer-owu3op > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5WeCW .framer-15i71yk > *, .framer-5WeCW .framer-wnpiz6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-5WeCW .framer-gd3877 > *, .framer-5WeCW .framer-1s16gqf > *, .framer-5WeCW .framer-15hxp9i > *, .framer-5WeCW .framer-10joiev > *, .framer-5WeCW .framer-z1uvpl > *, .framer-5WeCW .framer-1dnk3aw > *, .framer-5WeCW .framer-srj4x8 > *, .framer-5WeCW .framer-1dmue54 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-5WeCW .framer-33g7dq > *, .framer-5WeCW .framer-gyvbbn > *, .framer-5WeCW .framer-1ji8pv6 > *, .framer-5WeCW .framer-1obuzy3 > *, .framer-5WeCW .framer-p1nthq > *, .framer-5WeCW .framer-1pk32v6 > *, .framer-5WeCW .framer-8dq3r0 > *, .framer-5WeCW .framer-daabt9 > *, .framer-5WeCW .framer-2fucv2 > *, .framer-5WeCW .framer-15tqpbb > *, .framer-5WeCW .framer-1lnmwk3 > *, .framer-5WeCW .framer-7fpx2f > *, .framer-5WeCW .framer-1nycqxi > *, .framer-5WeCW .framer-1pdwpx6 > *, .framer-5WeCW .framer-13tgths > *, .framer-5WeCW .framer-kta11w > *, .framer-5WeCW .framer-hab3gh > *, .framer-5WeCW .framer-1tihp6o > *, .framer-5WeCW .framer-168s8a4 > *, .framer-5WeCW .framer-uorsfb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5WeCW .framer-yssnnd > *, .framer-5WeCW .framer-kgttum > *, .framer-5WeCW .framer-1egx8hu > *, .framer-5WeCW .framer-abaluc > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-5WeCW .framer-19qh67k > *, .framer-5WeCW .framer-pu989i > *, .framer-5WeCW .framer-11z66ck > *, .framer-5WeCW .framer-on4vmk > *, .framer-5WeCW .framer-ra8d4k > *, .framer-5WeCW .framer-a1urcf > *, .framer-5WeCW .framer-5atp9d > *, .framer-5WeCW .framer-7w6kbo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-5WeCW[data-border=\"true\"]::after, .framer-5WeCW [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; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-5WeCW { background: white; } .framer-5WeCW.framer-s09tnv, .framer-5WeCW .framer-owu3op { width: 810px; } .framer-5WeCW .framer-zjutta { flex-direction: column; } .framer-5WeCW .framer-h4koiu { flex: none; height: 60vh; width: 100%; } .framer-5WeCW .framer-102foqj { flex: none; height: min-content; padding: 24px; width: 100%; } .framer-5WeCW .framer-1t0ej9f { max-width: unset; } .framer-5WeCW .framer-v8a6fx { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-5WeCW .framer-15odmuw, .framer-5WeCW .framer-1fii6lg, .framer-5WeCW .framer-14lfgpm, .framer-5WeCW .framer-1l7rkqz { min-height: 80vh; } .framer-5WeCW .framer-gd3877, .framer-5WeCW .framer-15hxp9i, .framer-5WeCW .framer-z1uvpl, .framer-5WeCW .framer-srj4x8 { padding: 72px 24px 72px 24px; } .framer-5WeCW .framer-33g7dq, .framer-5WeCW .framer-1pk32v6, .framer-5WeCW .framer-1lnmwk3, .framer-5WeCW .framer-kta11w { align-content: center; align-items: center; order: 0; } .framer-5WeCW .framer-79cv41, .framer-5WeCW .framer-aklvr1, .framer-5WeCW .framer-qzvohg, .framer-5WeCW .framer-1efvadf { order: 1; } .framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-1dmue54 { gap: 36px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WeCW .framer-zjutta, .framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-1dmue54 { gap: 0px; } .framer-5WeCW .framer-zjutta > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5WeCW .framer-zjutta > :first-child { margin-top: 0px; } .framer-5WeCW .framer-zjutta > :last-child { margin-bottom: 0px; } .framer-5WeCW .framer-1s16gqf > *, .framer-5WeCW .framer-10joiev > *, .framer-5WeCW .framer-1dnk3aw > *, .framer-5WeCW .framer-1dmue54 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-5WeCW .framer-1s16gqf > :first-child, .framer-5WeCW .framer-10joiev > :first-child, .framer-5WeCW .framer-1dnk3aw > :first-child, .framer-5WeCW .framer-1dmue54 > :first-child { margin-left: 0px; } .framer-5WeCW .framer-1s16gqf > :last-child, .framer-5WeCW .framer-10joiev > :last-child, .framer-5WeCW .framer-1dnk3aw > :last-child, .framer-5WeCW .framer-1dmue54 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-5WeCW { background: white; } .framer-5WeCW.framer-s09tnv { width: 390px; } .framer-5WeCW .framer-zjutta, .framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-1dmue54 { flex-direction: column; } .framer-5WeCW .framer-h4koiu { flex: none; height: 50vh; width: 100%; } .framer-5WeCW .framer-102foqj { flex: none; height: min-content; padding: 36px 24px 36px 24px; position: relative; top: unset; width: 100%; } .framer-5WeCW .framer-1t0ej9f { max-width: unset; } .framer-5WeCW .framer-1o6f3hz { gap: 16px; } .framer-5WeCW .framer-1l7y1n1 { flex-direction: column; flex-wrap: nowrap; } .framer-5WeCW .framer-1jayj9y { flex-direction: column; padding: 48px 0px 0px 0px; } .framer-5WeCW .framer-16nu3ph { align-self: unset; flex: 1 0 0px; height: 1px; padding: 0px 24px 24px 24px; width: 100%; } .framer-5WeCW .framer-s6h7tv, .framer-5WeCW .framer-1obuzy3, .framer-5WeCW .framer-p1nthq, .framer-5WeCW .framer-2fucv2, .framer-5WeCW .framer-15tqpbb, .framer-5WeCW .framer-1pdwpx6, .framer-5WeCW .framer-13tgths, .framer-5WeCW .framer-168s8a4, .framer-5WeCW .framer-uorsfb { flex: none; width: 100%; } .framer-5WeCW .framer-1wo8p2n { padding: 0px 24px 36px 24px; } .framer-5WeCW .framer-1dk7asg { padding: 0px 24px 0px 24px; } .framer-5WeCW .framer-f5hqp7 { padding: 12px 24px 0px 24px; } .framer-5WeCW .framer-1rsdplt { padding: 72px 0px 0px 0px; } .framer-5WeCW .framer-1ejfj7q { width: 100%; } .framer-5WeCW .framer-owu3op { justify-content: flex-start; } .framer-5WeCW .framer-v8a6fx { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-5WeCW .framer-wnpiz6 { min-width: 320px; } .framer-5WeCW .framer-15odmuw, .framer-5WeCW .framer-1fii6lg, .framer-5WeCW .framer-14lfgpm, .framer-5WeCW .framer-1l7rkqz { min-height: 100vh; } .framer-5WeCW .framer-gd3877, .framer-5WeCW .framer-15hxp9i, .framer-5WeCW .framer-z1uvpl, .framer-5WeCW .framer-srj4x8 { flex-direction: column; gap: 72px; padding: 72px 24px 72px 24px; } .framer-5WeCW .framer-33g7dq, .framer-5WeCW .framer-1pk32v6, .framer-5WeCW .framer-1lnmwk3, .framer-5WeCW .framer-kta11w { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-5WeCW .framer-79cv41, .framer-5WeCW .framer-aklvr1, .framer-5WeCW .framer-qzvohg, .framer-5WeCW .framer-1efvadf { flex: none; order: 0; width: 100%; } .framer-5WeCW .framer-yssnnd, .framer-5WeCW .framer-kgttum, .framer-5WeCW .framer-1egx8hu, .framer-5WeCW .framer-abaluc { align-content: flex-start; align-items: flex-start; padding: 0px 24px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WeCW .framer-zjutta, .framer-5WeCW .framer-1o6f3hz, .framer-5WeCW .framer-1l7y1n1, .framer-5WeCW .framer-1jayj9y, .framer-5WeCW .framer-gd3877, .framer-5WeCW .framer-1s16gqf, .framer-5WeCW .framer-15hxp9i, .framer-5WeCW .framer-10joiev, .framer-5WeCW .framer-z1uvpl, .framer-5WeCW .framer-1dnk3aw, .framer-5WeCW .framer-srj4x8, .framer-5WeCW .framer-1dmue54 { gap: 0px; } .framer-5WeCW .framer-zjutta > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5WeCW .framer-zjutta > :first-child, .framer-5WeCW .framer-1o6f3hz > :first-child, .framer-5WeCW .framer-1l7y1n1 > :first-child, .framer-5WeCW .framer-1jayj9y > :first-child, .framer-5WeCW .framer-gd3877 > :first-child, .framer-5WeCW .framer-1s16gqf > :first-child, .framer-5WeCW .framer-15hxp9i > :first-child, .framer-5WeCW .framer-10joiev > :first-child, .framer-5WeCW .framer-z1uvpl > :first-child, .framer-5WeCW .framer-1dnk3aw > :first-child, .framer-5WeCW .framer-srj4x8 > :first-child, .framer-5WeCW .framer-1dmue54 > :first-child { margin-top: 0px; } .framer-5WeCW .framer-zjutta > :last-child, .framer-5WeCW .framer-1o6f3hz > :last-child, .framer-5WeCW .framer-1l7y1n1 > :last-child, .framer-5WeCW .framer-1jayj9y > :last-child, .framer-5WeCW .framer-gd3877 > :last-child, .framer-5WeCW .framer-1s16gqf > :last-child, .framer-5WeCW .framer-15hxp9i > :last-child, .framer-5WeCW .framer-10joiev > :last-child, .framer-5WeCW .framer-z1uvpl > :last-child, .framer-5WeCW .framer-1dnk3aw > :last-child, .framer-5WeCW .framer-srj4x8 > :last-child, .framer-5WeCW .framer-1dmue54 > :last-child { margin-bottom: 0px; } .framer-5WeCW .framer-1o6f3hz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5WeCW .framer-1l7y1n1 > *, .framer-5WeCW .framer-1jayj9y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5WeCW .framer-gd3877 > *, .framer-5WeCW .framer-15hxp9i > *, .framer-5WeCW .framer-z1uvpl > *, .framer-5WeCW .framer-srj4x8 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-5WeCW .framer-1s16gqf > *, .framer-5WeCW .framer-10joiev > *, .framer-5WeCW .framer-1dnk3aw > *, .framer-5WeCW .framer-1dmue54 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6244\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qXjSdDH6x\":{\"layout\":[\"fixed\",\"auto\"]},\"AbG_iKCGQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameroApf03t7c=withCSS(Component,css,\"framer-5WeCW\");export default FrameroApf03t7c;FrameroApf03t7c.displayName=\"Shopify\";FrameroApf03t7c.defaultProps={height:6244,width:1200};addFonts(FrameroApf03t7c,[{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\"},{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 Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...FrameshipShopifyFonts,...LayoutHeaderFonts,...PageElementsImageViewerFonts,...AspectRatioImageFonts,...PageElementsBreadcrumbFonts,...VariantButtonsFonts,...PriceLabelFonts,...PageElementsCapsuleFonts,...EmbedFonts,...QuantityInputFonts,...AddToCartButtonFonts,...PageElementsImageThumbnailFonts,...ButtonsBtnSecondaryFonts,...CardsCardProductFonts,...ButtonsBtnPrimaryFonts,...LayoutFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroApf03t7c\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6244\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qXjSdDH6x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AbG_iKCGQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["HIDDEN_CLASS", "SAMPLE_VARIANTS", "State", "alignmentMap", "VariantButtonsComponent", "props", "shopifyData", "variantOptions", "titles", "textButtons", "layout", "shopifyId", "tracksInventory", "variants", "parseShopifyData", "horizontal", "isCanvas", "RenderTarget", "selectedVariantOptions", "setSelectedVariantOption", "useProductStore", "state", "_state_products_shopifyId", "inventory", "inventoryIsLoading", "useAmountInStock", "options", "parseVariantOptions", "disabledOptionValues", "option", "disabledValues", "value", "matchingVariants", "variant", "o", "outOfStockVariants", "selectedOptions", "hasUpdatedGlobalState", "firstAvailableVariantOptions", "name", "values", "onVariantClicked", "optionName", "optionValue", "p", "u", "index", "_disabledOptionValues_option_name", "selected", "disabled", "Button", "VariantButtons", "withCSS", "VariantButtons_default", "addPropertyControls", "ControlType", "createButtonPropertyControls", "Colors", "variantOptionsCache", "cachedResult", "_options__values", "_options_", "result", "i", "parseShopifyId", "ShopifyDataType", "error", "State", "defaultText", "AddToCartButton", "props", "shopifyId", "tracksInventory", "variants", "parseShopifyData", "isCanvas", "RenderTarget", "state", "setState", "ye", "items", "addToCart", "useCartStore", "quantity", "selectedVariantOptions", "useProductStore", "_state_products", "inventory", "inventoryIsLoading", "useAmountInStock", "selectedVariant", "useSelectedVariant", "ue", "p", "Button", "window", "OPEN_CART_EVENT", "addPropertyControls", "ControlType", "createButtonPropertyControls", "Colors", "AspectRatioImageFonts", "getFonts", "AspectRatioImage", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "media1", "media2", "media21", "media3", "media31", "media4", "media41", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "dyaGNvBeE", "TmZH3KyV2", "Z6PUwbyjh", "OCMMmjl7C", "HPGIyRlXg", "MKhlsYmqJ", "m5vzgfpcW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "AspectRatioImage", "css", "FramerJ824VVhtA", "withCSS", "J824VVhtA_default", "addPropertyControls", "ControlType", "addFonts", "AspectRatioImageFonts", "FrameshipShopifyFonts", "getFonts", "Frameship", "LayoutHeaderFonts", "DgAQdKBhu_default", "PageElementsImageViewerFonts", "J824VVhtA_default", "AspectRatioImageFonts", "AspectRatioImage", "PageElementsBreadcrumbFonts", "RLra3sJhh_default", "VariantButtonsFonts", "VariantButtons_default", "PriceLabelFonts", "ProductInfoLabel_default", "PageElementsCapsuleFonts", "KjnMw0Fgf_default", "EmbedFonts", "Embed", "QuantityInputFonts", "QuantityInput_default", "AddToCartButtonFonts", "AddToCartButton", "PageElementsImageThumbnailFonts", "HbFEZAffW_default", "ButtonsBtnSecondaryFonts", "IDTlr7vL9_default", "CardsCardProductFonts", "dCXyXvejB_default", "ButtonsBtnPrimaryFonts", "QdVX_JzVD_default", "LayoutFooterFonts", "YkfeFqMSQ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "convertFromString", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "greaterThan", "a", "b", "contains", "transition1", "animation", "equals", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "VypAg3VdR_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "style", "className", "layoutId", "variant", "Hd38LFMnR", "lN2vUywHx", "eRlv79Yd2", "l0OWGy_Ha", "ONH1RE0Uw", "jeMs6azXT", "UeeCY54vOI2x25WlFG", "E6YeTIAUMI2x25WlFG", "woO8FCT8lI2x25WlFG", "idI2x25WlFG", "AWXVuu0iu", "LuUrPT4_O", "VM4Sqz3uV", "aKCHKFVsl", "DIXwGASOW", "d_MET_RdhTczRdpLPJ", "GOUdyCLugTczRdpLPJ", "idTczRdpLPJ", "gAC0SCYUyL8GjI5_Cj", "Hd38LFMnRL8GjI5_Cj", "jeMs6azXTL8GjI5_Cj", "AWXVuu0iuL8GjI5_Cj", "VM4Sqz3uVL8GjI5_Cj", "aKCHKFVslL8GjI5_Cj", "idL8GjI5_Cj", "gAC0SCYUy", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "isDisplayed1", "elementId1", "ref3", "visible", "visible1", "elementId2", "ref4", "router", "useRouter", "elementId3", "ref5", "elementId4", "ref6", "visible2", "visible3", "visible4", "visible5", "elementId5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "RichText2", "x", "ChildrenCanSuspend", "Unp_oN1bj_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Image2", "Link", "dXUxhivbr_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FrameroApf03t7c", "withCSS", "oApf03t7c_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
