{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Ncx6rwHWSXe5kU34gWm3/VHL0FeXAljZAY1ts13OM/ProductInfoLabel.js", "ssg:https://framerusercontent.com/modules/tGueMWfVDCEvfQtSlUrd/Br9USHyaCAqjdBr24HRj/VariantButtons.js", "ssg:https://framerusercontent.com/modules/xIS6qWCTGkDJXuKuDYIj/J7N4IRW31xrW0wJwrEHg/AddToCartButton.js", "ssg:https://framerusercontent.com/modules/Z3qqDD4F2SjBL90qlWKP/mpg80VM5M0CJzBeFtQMr/StockLabel.js", "ssg:https://framerusercontent.com/modules/HeRQaypAqhg3IaVEncai/2Bu3ZyBm2ZZzBXECEhGL/F7R0ojBID.js", "ssg:https://framerusercontent.com/modules/Ldzd1oZWCRhNaWmVAsS4/KPipicYMpOu0I4Il1gJZ/P5BY2DjXM.js", "ssg:https://framerusercontent.com/modules/7fEgLK9r4nwqtISaiUN9/RUvCkJ1KsNOEh6reAHdY/sO4MnPyC2.js", "ssg:https://framerusercontent.com/modules/cjJ1Q4LxBHVhR5fpQZD3/nyAwFTdJmEbRIkZZJpj5/rS37iHKxW.js", "ssg:https://framerusercontent.com/modules/cPijLLFO35fyrlVoJkb9/AHws8JHksqCHg8rgWcUb/UqIacifYi.js", "ssg:https://framerusercontent.com/modules/7fz5JiG0mgLorvhQvHBp/G6f5LGnGQ58TzpBInm5j/oweXZs32Y.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{useSelectedVariant}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/zVZvQ9nOjWTcixxwf7jy/ProductState.js\";import{useCartItem}from\"https://framerusercontent.com/modules/Be5mN5EUhdOwl54qCG8y/Icj1ZU450uFtWcyrdGTm/CartItemContext.js\";import{currencyFormatProp,formatCurrency}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/KUBggIcCct5y9ndEplYj/Shared.js\";import currencySymbols from\"https://framerusercontent.com/modules/pJIZxaEdKo1uS87sS4xM/4PSl3AVmNoISomoZ0s7m/CurrencySymbols.js\";const HIDDEN_CLASS=\"frameship-price-label-hidden\";var ProductInfoType;(function(ProductInfoType){ProductInfoType[\"Price\"]=\"price\";ProductInfoType[\"CompareAtPrice\"]=\"compareAtPrice\";})(ProductInfoType||(ProductInfoType={}));function ProductInfoLabelComponent(props){const{type,whenZero,textWhenZero,currencyFormat}=props;const Tag=props.htmlTag||\"p\";const variant=useSelectedVariant(props.shopifyData);const{inCart,price:cartPrice,compareAtPrice:cartCompareAtPrice}=useCartItem();let value=0;let currencyCode=props.currency;let hidden=false;if(inCart){if(type===\"price\"){if(isPriceV2(cartPrice)){value=cartPrice.amount||0;currencyCode=cartPrice.currencyCode||props.currency;}}else if(type===\"compareAtPrice\"){if(isPriceV2(cartCompareAtPrice)){value=cartCompareAtPrice.amount||0;currencyCode=cartCompareAtPrice.currencyCode||props.currency;}}}else if(variant){const price=variant[type];if(isPriceV2(price)){value=price.amount||0;currencyCode=price.currencyCode||props.currency;}else if(typeof price===\"number\"){value=price;}}let text=\"\";if(whenZero==\"hide\"&&!value){hidden=true;}else if(whenZero==\"showText\"&&!value){text=textWhenZero;}else{text=formatCurrency(value,currencyCode,currencyFormat);}return hidden?/*#__PURE__*/_jsx(\"div\",{className:HIDDEN_CLASS}):/*#__PURE__*/_jsxs(Tag,{style:{color:props.color,margin:0,whiteSpace:\"pre\",userSelect:props.selectable?undefined:\"none\",textDecoration:props.decoration===\"strikethrough\"?\"line-through\":props.decoration,textWrap:props.style?.width==\"100%\"?\"wrap\":\"nowrap\",...props.font,...props.style},children:[props.prefix,text,props.suffix]});}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */const ProductInfoLabel=withCSS(ProductInfoLabelComponent,[`.${HIDDEN_CLASS} { display: none !important; }`,`div:has(> .${HIDDEN_CLASS}) { display: none !important; }`]);export default ProductInfoLabel;ProductInfoLabel.displayName=\"Price Label\";addPropertyControls(ProductInfoLabel,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\",preventLocalization:true},type:{type:ControlType.Enum,defaultValue:\"price\",options:Object.values(ProductInfoType),optionTitles:[\"Price\",\"Compare-at Price\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},whenZero:{type:ControlType.Enum,defaultValue:\"show\",options:[\"show\",\"showText\",\"hide\"],optionTitles:[\"Show\",\"Show Text\",\"Hide\"],title:\"When Zero\"},textWhenZero:{type:ControlType.String,defaultValue:\"Free\",title:\"Text\",description:\"This text is shown when the price is 0\",hidden:props=>props.whenZero!==\"showText\"},currency:{type:ControlType.Enum,defaultValue:\"USD\",title:\"Default Currency\",options:Object.keys(currencySymbols)},currencyFormat:currencyFormatProp(),font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#999999\"},prefix:{type:ControlType.String,defaultValue:\"\"},suffix:{type:ControlType.String,defaultValue:\"\"},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"strikethrough\",\"underline\"],optionTitles:[\"None\",\"Strikethrough\",\"Underline\"]},selectable:{type:ControlType.Boolean,defaultValue:true,title:\"User Select\"},htmlTag:{type:ControlType.Enum,options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],title:\"Tag\"}});function isPriceV2(value){return value&&typeof value===\"object\"&&value.hasOwnProperty(\"amount\");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ProductInfoLabel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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/KUBggIcCct5y9ndEplYj/Shared.js\";import{useProductStore}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/zVZvQ9nOjWTcixxwf7jy/ProductState.js\";import{useAmountInStock}from\"https://framerusercontent.com/modules/ibjYTPLnMMPhPLNCj4uG/I4Tv6VD4v0SimymTsX9I/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=>[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?.name;const values=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?.location==\"bottom\"?\"column-reverse\":\"column\",gap:titles?.gap},children:[titles&&/*#__PURE__*/_jsx(\"p\",{style:{width:\"100%\",color:titles.color,whiteSpace:\"pre\",margin:0,textTransform:titles.transform,...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)=>{const selected=isCanvas?index===0:selectedOptions[option.name]==value;const disabled=isCanvas||!tracksInventory?false:textButtons.outOfStock.disable&&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\",textTransform:textButtons.transform,...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\",preventLocalization:true},variantOptions:{type:ControlType.String,defaultValue:\"\",placeholder:\"Variant Options\",preventLocalization:true,description:\"Connect to the Variant Options field from the products CMS\"},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},transform:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"None\",\"Capitalize\",\"Uppercase\",\"Lowercase\"]}}},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\"}],endProps:{transform:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"None\",\"Capitalize\",\"Uppercase\",\"Lowercase\"]}}})}},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{const options=JSON.parse(variantOptions);let result=options;if(options.length===1&&options[0]?.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\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__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/I4Tv6VD4v0SimymTsX9I/Cart.js\";import{parseShopifyData,OPEN_CART_EVENT,createButtonPropertyControls,Colors,Button}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/KUBggIcCct5y9ndEplYj/Shared.js\";import{useProductStore,useSelectedVariant}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/zVZvQ9nOjWTcixxwf7jy/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=>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\",userSelect:\"none\",...props.style},children:props.text[state]});}AddToCartButton.displayName=\"Add to Cart Button\";addPropertyControls(AddToCartButton,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\",preventLocalization:true},openCart:{type:ControlType.Boolean,defaultValue:true,description:\"If enabled, opens the cart after adding item\"},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\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS,RenderTarget}from\"framer\";import{useEffect,useState}from\"react\";import{useSelectedVariant}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/zVZvQ9nOjWTcixxwf7jy/ProductState.js\";import{useAmountInStock,getFrameshipInfo}from\"https://framerusercontent.com/modules/ibjYTPLnMMPhPLNCj4uG/I4Tv6VD4v0SimymTsX9I/Cart.js\";import{UPGRADE_LINK}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/KUBggIcCct5y9ndEplYj/Shared.js\";const HIDDEN_CLASS=\"frameship-stock-label-hidden\";const decorationProp={decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"strikethrough\",\"underline\"],optionTitles:[\"None\",\"Strikethrough\",\"Underline\"],hidden:props=>!props.visible}};function InventoryLabelComponent(props){const{inStock,outOfStock,loading}=props;const Tag=props.htmlTag||\"p\";const isCanvas=RenderTarget.current()===RenderTarget.canvas;const{hasAccess}=getFrameshipInfo();const[delayedHasAccess,setDelayedHasAccess]=useState(true);const variant=useSelectedVariant(props.shopifyData);const[inventory,inventoryIsLoading]=useAmountInStock(props.shopifyData);useEffect(()=>{if(hasAccess){setDelayedHasAccess(true);}else{const timer=setTimeout(()=>{setDelayedHasAccess(false);},500);return()=>clearTimeout(timer);}},[hasAccess]);let amountInStock=isCanvas?10:inventory[variant?.id]||0;let hidden=false;let color=null;let text=\"\";let decoration=null;let onClick=null;if(!delayedHasAccess&&!hasAccess){text=\"Upgrade to show inventory\";color=inStock.color;onClick=()=>window.open(UPGRADE_LINK,\"_blank\");}else if(!hasAccess&&delayedHasAccess||inventoryIsLoading&&!isCanvas){hidden=!loading.visible;color=loading.color;text=loading.text;decoration=loading.decoration;}else if(amountInStock===0){hidden=!outOfStock.visible;color=outOfStock.color;text=outOfStock.text;decoration=outOfStock.decoration;}else{hidden=!inStock.visible;color=inStock.color;text=inStock.text.replace(\"##\",amountInStock.toString());decoration=inStock.decoration;}return hidden?/*#__PURE__*/_jsx(\"div\",{className:HIDDEN_CLASS}):/*#__PURE__*/_jsx(Tag,{onClick:onClick,style:{color,margin:0,whiteSpace:\"pre\",userSelect:props.selectable?undefined:\"none\",textDecoration:decoration===\"strikethrough\"?\"line-through\":decoration,textWrap:props.style?.width==\"100%\"?\"wrap\":\"nowrap\",cursor:onClick?\"pointer\":null,...props.font,...props.style},children:text});}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */const InventoryLabel=withCSS(InventoryLabelComponent,[`.${HIDDEN_CLASS} { display: none !important; }`,`div:has(> .${HIDDEN_CLASS}) { display: none !important; }`]);export default InventoryLabel;InventoryLabel.displayName=\"Inventory Label\";addPropertyControls(InventoryLabel,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\",preventLocalization:true},inStock:{type:ControlType.Object,controls:{visible:{type:ControlType.Boolean,defaultValue:true},text:{type:ControlType.String,defaultValue:\"## in stock\",description:\"*##*: The amount of stock left\",hidden:props=>!props.visible},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>!props.visible},...decorationProp}},outOfStock:{type:ControlType.Object,title:\"Out of Stock\",controls:{visible:{type:ControlType.Boolean,defaultValue:true},text:{type:ControlType.String,defaultValue:\"Out of stock\",hidden:props=>!props.visible},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>!props.visible},...decorationProp}},loading:{type:ControlType.Object,controls:{visible:{type:ControlType.Boolean,defaultValue:true},text:{type:ControlType.String,defaultValue:\"Loading...\",hidden:props=>!props.visible},color:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\",hidden:props=>!props.visible},...decorationProp}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1.4}},selectable:{type:ControlType.Boolean,defaultValue:true,title:\"User Select\"},htmlTag:{type:ControlType.Enum,options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],title:\"Tag\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"InventoryLabel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__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,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qbPvhsn1pCLpG6ik4NOy/JOMVpleLnlNSKZBY1EMK/JGcrR1W_P.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-AgP6P\";const variantClassNames={s2vlrMkMa:\"framer-v-1t2jmzs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,B1GQMl7za:link!==null&&link!==void 0?link:props.B1GQMl7za,dh94PKFJJ:(_ref=title!==null&&title!==void 0?title:props.dh94PKFJJ)!==null&&_ref!==void 0?_ref:\"Home\"};};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,B1GQMl7za,dh94PKFJJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"s2vlrMkMa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:B1GQMl7za,nodeId:\"s2vlrMkMa\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1t2jmzs\",className,classNames)} framer-r5796j`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"s2vlrMkMa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0)))\"},children:\"Home\"})}),className:\"framer-79ad7d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cb_WtJF0B\",style:{\"--extracted-r6o4lv\":\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dh94PKFJJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lqieo2-container\",layoutDependency:layoutDependency,layoutId:\"TfF1u_D2A-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"TfF1u_D2A\",layoutId:\"TfF1u_D2A\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AgP6P.framer-r5796j, .framer-AgP6P .framer-r5796j { display: block; }\",\".framer-AgP6P.framer-1t2jmzs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AgP6P .framer-79ad7d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AgP6P .framer-1lqieo2-container { flex: none; height: 12px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AgP6P.framer-1t2jmzs { gap: 0px; } .framer-AgP6P.framer-1t2jmzs > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-AgP6P.framer-1t2jmzs > :first-child { margin-left: 0px; } .framer-AgP6P.framer-1t2jmzs > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22.5\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"B1GQMl7za\":\"link\",\"dh94PKFJJ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF7R0ojBID=withCSS(Component,css,\"framer-AgP6P\");export default FramerF7R0ojBID;FramerF7R0ojBID.displayName=\"Components/Breadcrumb item\";FramerF7R0ojBID.defaultProps={height:22.5,width:60};addPropertyControls(FramerF7R0ojBID,{B1GQMl7za:{title:\"Link\",type:ControlType.Link},dh94PKFJJ:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerF7R0ojBID,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF7R0ojBID\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"60\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"22.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"B1GQMl7za\\\":\\\"link\\\",\\\"dh94PKFJJ\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F7R0ojBID.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={EbGV1pkmY:{hover:true}};const cycleOrder=[\"EbGV1pkmY\",\"hRGFmM74I\"];const serializationHash=\"framer-sQvrg\";const variantClassNames={EbGV1pkmY:\"framer-v-1twf7oy\",hRGFmM74I:\"framer-v-rty329\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:0,delay:0,duration:.2,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Deselected:\"EbGV1pkmY\",Selected:\"hRGFmM74I\"};const getProps=({borderColor,click,height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,GBi9Swc4q:image!==null&&image!==void 0?image:props.GBi9Swc4q,tJndCeVnA:(_ref=borderColor!==null&&borderColor!==void 0?borderColor:props.tJndCeVnA)!==null&&_ref!==void 0?_ref:{borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderStyle:\"solid\",borderWidth:1},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"EbGV1pkmY\",WCgcb3OFQ:click!==null&&click!==void 0?click:props.WCgcb3OFQ};};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,GBi9Swc4q,tJndCeVnA,WCgcb3OFQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EbGV1pkmY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1q51xnk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(WCgcb3OFQ){const res=await WCgcb3OFQ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _tJndCeVnA_borderBottomWidth,_tJndCeVnA_borderLeftWidth,_tJndCeVnA_borderRightWidth,_tJndCeVnA_borderTopWidth;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(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:6325,pixelWidth:4401,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(GBi9Swc4q),...{positionX:\"center\",positionY:\"center\"}},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1twf7oy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Deselected\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EbGV1pkmY\",onTap:onTap1q51xnk,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{hRGFmM74I:{\"--border-bottom-width\":`${(_tJndCeVnA_borderBottomWidth=tJndCeVnA.borderBottomWidth)!==null&&_tJndCeVnA_borderBottomWidth!==void 0?_tJndCeVnA_borderBottomWidth:tJndCeVnA.borderWidth}px`,\"--border-color\":tJndCeVnA.borderColor,\"--border-left-width\":`${(_tJndCeVnA_borderLeftWidth=tJndCeVnA.borderLeftWidth)!==null&&_tJndCeVnA_borderLeftWidth!==void 0?_tJndCeVnA_borderLeftWidth:tJndCeVnA.borderWidth}px`,\"--border-right-width\":`${(_tJndCeVnA_borderRightWidth=tJndCeVnA.borderRightWidth)!==null&&_tJndCeVnA_borderRightWidth!==void 0?_tJndCeVnA_borderRightWidth:tJndCeVnA.borderWidth}px`,\"--border-style\":tJndCeVnA.borderStyle,\"--border-top-width\":`${(_tJndCeVnA_borderTopWidth=tJndCeVnA.borderTopWidth)!==null&&_tJndCeVnA_borderTopWidth!==void 0?_tJndCeVnA_borderTopWidth:tJndCeVnA.borderWidth}px`}},...addPropertyOverrides({\"EbGV1pkmY-hover\":{\"data-framer-name\":undefined},hRGFmM74I:{\"data-framer-name\":\"Selected\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sQvrg.framer-nnrw9y, .framer-sQvrg .framer-nnrw9y { display: block; }\",\".framer-sQvrg.framer-1twf7oy { cursor: pointer; height: 84px; overflow: hidden; position: relative; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQvrg.framer-v-rty329.framer-1twf7oy, .framer-sQvrg.framer-v-1twf7oy.hover.framer-1twf7oy { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 84px); }\",'.framer-sQvrg[data-border=\"true\"]::after, .framer-sQvrg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hRGFmM74I\":{\"layout\":[\"fixed\",\"fixed\"]},\"xrNKBagfN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"GBi9Swc4q\":\"image\",\"tJndCeVnA\":\"borderColor\",\"WCgcb3OFQ\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP5BY2DjXM=withCSS(Component,css,\"framer-sQvrg\");export default FramerP5BY2DjXM;FramerP5BY2DjXM.displayName=\"Gallery/Gallery Item\";FramerP5BY2DjXM.defaultProps={height:84,width:84};addPropertyControls(FramerP5BY2DjXM,{variant:{options:[\"EbGV1pkmY\",\"hRGFmM74I\"],optionTitles:[\"Deselected\",\"Selected\"],title:\"Variant\",type:ControlType.Enum},GBi9Swc4q:{title:\"Image\",type:ControlType.ResponsiveImage},tJndCeVnA:{defaultValue:{borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border Color\",type:ControlType.Border},WCgcb3OFQ:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerP5BY2DjXM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP5BY2DjXM\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"GBi9Swc4q\\\":\\\"image\\\",\\\"tJndCeVnA\\\":\\\"borderColor\\\",\\\"WCgcb3OFQ\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"84\",\"framerIntrinsicWidth\":\"84\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hRGFmM74I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xrNKBagfN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P5BY2DjXM.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import GalleryGalleryItem from\"https://framerusercontent.com/modules/Ldzd1oZWCRhNaWmVAsS4/KPipicYMpOu0I4Il1gJZ/P5BY2DjXM.js\";const GalleryGalleryItemFonts=getFonts(GalleryGalleryItem);const cycleOrder=[\"hWJyWL8cF\",\"gEH4NispI\",\"NbROABAm4\",\"heYHJzmSl\",\"U1cYqxNzI\",\"AsEjXXtk1\",\"aHuqg7s72\",\"KI_XHNHL_\",\"dzgwOCjgG\",\"NKlmHevrj\",\"OXPhrYIQW\",\"wu4AjKkv0\",\"VVHhO7Abg\",\"G0CuMa7pf\",\"fZ7xr9PYb\",\"yB2WmvM9k\",\"Nnd3D8yhH\",\"T_UrlZXkW\"];const serializationHash=\"framer-oUpwy\";const variantClassNames={aHuqg7s72:\"framer-v-1o1775m\",AsEjXXtk1:\"framer-v-169ceom\",dzgwOCjgG:\"framer-v-1xsqu3g\",fZ7xr9PYb:\"framer-v-tv1jsy\",G0CuMa7pf:\"framer-v-tsytnw\",gEH4NispI:\"framer-v-618vgk\",heYHJzmSl:\"framer-v-1jobwgn\",hWJyWL8cF:\"framer-v-rrjmq9\",KI_XHNHL_:\"framer-v-dupksu\",NbROABAm4:\"framer-v-jss7kr\",NKlmHevrj:\"framer-v-r7zgat\",Nnd3D8yhH:\"framer-v-bz0fzh\",OXPhrYIQW:\"framer-v-1bgdj2\",T_UrlZXkW:\"framer-v-f3gyqh\",U1cYqxNzI:\"framer-v-5wcnqx\",VVHhO7Abg:\"framer-v-le0y9p\",wu4AjKkv0:\"framer-v-1lhtex2\",yB2WmvM9k:\"framer-v-1whx88e\"};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 isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop / Image 1\":\"hWJyWL8cF\",\"Desktop / Image 2\":\"gEH4NispI\",\"Desktop / Image 3\":\"NbROABAm4\",\"Desktop / Image 4\":\"heYHJzmSl\",\"Desktop / Image 5\":\"U1cYqxNzI\",\"Desktop / Image 6\":\"AsEjXXtk1\",\"Mobile / Image 1\":\"aHuqg7s72\",\"Mobile / Image 2\":\"KI_XHNHL_\",\"Mobile / Image 3\":\"dzgwOCjgG\",\"Mobile / Image 4\":\"NKlmHevrj\",\"Mobile / Image 5\":\"OXPhrYIQW\",\"Mobile / Image 6\":\"wu4AjKkv0\",\"Tablet / Image 1\":\"VVHhO7Abg\",\"Tablet / Image 2\":\"G0CuMa7pf\",\"Tablet / Image 3\":\"fZ7xr9PYb\",\"Tablet / Image 4\":\"yB2WmvM9k\",\"Tablet / Image 5\":\"Nnd3D8yhH\",\"Tablet / Image 6\":\"T_UrlZXkW\"};const getProps=({height,id,image1,image2,image3,image4,image5,image6,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,AZiJRk1LO:image5!==null&&image5!==void 0?image5:props.AZiJRk1LO,DAOZEyqc4:image4!==null&&image4!==void 0?image4:props.DAOZEyqc4,EpS2iXyo7:image1!==null&&image1!==void 0?image1:props.EpS2iXyo7,JBGl1kLYl:image6!==null&&image6!==void 0?image6:props.JBGl1kLYl,P2lnBz26D:image2!==null&&image2!==void 0?image2:props.P2lnBz26D,UEZPwfUqX:image3!==null&&image3!==void 0?image3:props.UEZPwfUqX,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"hWJyWL8cF\"};};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,EpS2iXyo7,P2lnBz26D,UEZPwfUqX,DAOZEyqc4,AZiJRk1LO,JBGl1kLYl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hWJyWL8cF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const WCgcb3OFQ97oy4z=activeVariantCallback(async(...args)=>{setVariant(\"hWJyWL8cF\");});const WCgcb3OFQpjf3ev=activeVariantCallback(async(...args)=>{setVariant(\"aHuqg7s72\");});const WCgcb3OFQok3rqt=activeVariantCallback(async(...args)=>{setVariant(\"gEH4NispI\");});const WCgcb3OFQ133ot4d=activeVariantCallback(async(...args)=>{setVariant(\"KI_XHNHL_\");});const WCgcb3OFQ1in81ce=activeVariantCallback(async(...args)=>{setVariant(\"NbROABAm4\");});const WCgcb3OFQ3cilye=activeVariantCallback(async(...args)=>{setVariant(\"dzgwOCjgG\");});const WCgcb3OFQys9prg=activeVariantCallback(async(...args)=>{setVariant(\"heYHJzmSl\");});const WCgcb3OFQ1aso8s7=activeVariantCallback(async(...args)=>{setVariant(\"NKlmHevrj\");});const WCgcb3OFQ1tzjltg=activeVariantCallback(async(...args)=>{setVariant(\"U1cYqxNzI\");});const WCgcb3OFQtqd0aj=activeVariantCallback(async(...args)=>{setVariant(\"OXPhrYIQW\");});const WCgcb3OFQ1ab0rfg=activeVariantCallback(async(...args)=>{setVariant(\"AsEjXXtk1\");});const WCgcb3OFQpvk2vx=activeVariantCallback(async(...args)=>{setVariant(\"wu4AjKkv0\");});const ref1=React.useRef(null);const visible=isSet(P2lnBz26D);const visible1=isSet(UEZPwfUqX);const visible2=isSet(DAOZEyqc4);const visible3=isSet(AZiJRk1LO);const visible4=isSet(JBGl1kLYl);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rrjmq9\",className,classNames),\"data-framer-name\":\"Desktop / Image 1\",layoutDependency:layoutDependency,layoutId:\"hWJyWL8cF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aHuqg7s72:{\"data-framer-name\":\"Mobile / Image 1\"},AsEjXXtk1:{\"data-framer-name\":\"Desktop / Image 6\"},dzgwOCjgG:{\"data-framer-name\":\"Mobile / Image 3\"},fZ7xr9PYb:{\"data-framer-name\":\"Tablet / Image 3\"},G0CuMa7pf:{\"data-framer-name\":\"Tablet / Image 2\"},gEH4NispI:{\"data-framer-name\":\"Desktop / Image 2\"},heYHJzmSl:{\"data-framer-name\":\"Desktop / Image 4\"},KI_XHNHL_:{\"data-framer-name\":\"Mobile / Image 2\"},NbROABAm4:{\"data-framer-name\":\"Desktop / Image 3\"},NKlmHevrj:{\"data-framer-name\":\"Mobile / Image 4\"},Nnd3D8yhH:{\"data-framer-name\":\"Tablet / Image 5\"},OXPhrYIQW:{\"data-framer-name\":\"Mobile / Image 5\"},T_UrlZXkW:{\"data-framer-name\":\"Tablet / Image 6\"},U1cYqxNzI:{\"data-framer-name\":\"Desktop / Image 5\"},VVHhO7Abg:{\"data-framer-name\":\"Tablet / Image 1\"},wu4AjKkv0:{\"data-framer-name\":\"Mobile / Image 6\"},yB2WmvM9k:{\"data-framer-name\":\"Tablet / Image 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lu689r\",\"data-framer-name\":\"Gallery\",layoutDependency:layoutDependency,layoutId:\"B0iw3XL3e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-df7er4-container\",layoutDependency:layoutDependency,layoutId:\"VeKocdbiQ-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(EpS2iXyo7),height:\"100%\",id:\"VeKocdbiQ\",layoutId:\"VeKocdbiQ\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(21, 149, 153)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:1},variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQ97oy4z,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQpjf3ev},AsEjXXtk1:{variant:\"EbGV1pkmY\"},dzgwOCjgG:{variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQpjf3ev},gEH4NispI:{variant:\"EbGV1pkmY\"},heYHJzmSl:{variant:\"EbGV1pkmY\"},KI_XHNHL_:{variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQpjf3ev},NbROABAm4:{variant:\"EbGV1pkmY\"},NKlmHevrj:{variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQpjf3ev},OXPhrYIQW:{variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQpjf3ev},U1cYqxNzI:{variant:\"EbGV1pkmY\"},wu4AjKkv0:{variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQpjf3ev}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ya3tix-container\",layoutDependency:layoutDependency,layoutId:\"M4FokGv7w-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(P2lnBz26D),height:\"100%\",id:\"M4FokGv7w\",layoutId:\"M4FokGv7w\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(244, 244, 244)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:2},variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQok3rqt,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQ133ot4d},dzgwOCjgG:{WCgcb3OFQ:WCgcb3OFQ133ot4d},gEH4NispI:{variant:\"hRGFmM74I\"},KI_XHNHL_:{variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQ133ot4d},NKlmHevrj:{WCgcb3OFQ:WCgcb3OFQ133ot4d},OXPhrYIQW:{WCgcb3OFQ:WCgcb3OFQ133ot4d},wu4AjKkv0:{WCgcb3OFQ:WCgcb3OFQ133ot4d}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggp8y9-container\",layoutDependency:layoutDependency,layoutId:\"E4jrlywy1-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(UEZPwfUqX),height:\"100%\",id:\"E4jrlywy1\",layoutId:\"E4jrlywy1\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(244, 244, 244)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:2},variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQ1in81ce,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQ3cilye},dzgwOCjgG:{variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQ3cilye},KI_XHNHL_:{WCgcb3OFQ:WCgcb3OFQ3cilye},NbROABAm4:{variant:\"hRGFmM74I\"},NKlmHevrj:{WCgcb3OFQ:WCgcb3OFQ3cilye},OXPhrYIQW:{WCgcb3OFQ:WCgcb3OFQ3cilye},wu4AjKkv0:{WCgcb3OFQ:WCgcb3OFQ3cilye}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-130cxf1-container\",layoutDependency:layoutDependency,layoutId:\"fGV9kA1Dq-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(DAOZEyqc4),height:\"100%\",id:\"fGV9kA1Dq\",layoutId:\"fGV9kA1Dq\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(244, 244, 244)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:2},variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQys9prg,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQ1aso8s7},dzgwOCjgG:{WCgcb3OFQ:WCgcb3OFQ1aso8s7},heYHJzmSl:{variant:\"hRGFmM74I\"},KI_XHNHL_:{WCgcb3OFQ:WCgcb3OFQ1aso8s7},NKlmHevrj:{variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQ1aso8s7},OXPhrYIQW:{WCgcb3OFQ:WCgcb3OFQ1aso8s7},wu4AjKkv0:{WCgcb3OFQ:WCgcb3OFQ1aso8s7}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cgot6f-container\",layoutDependency:layoutDependency,layoutId:\"LxssFDRTA-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(AZiJRk1LO),height:\"100%\",id:\"LxssFDRTA\",layoutId:\"LxssFDRTA\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(244, 244, 244)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:2},variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQ1tzjltg,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQtqd0aj},dzgwOCjgG:{WCgcb3OFQ:WCgcb3OFQtqd0aj},KI_XHNHL_:{WCgcb3OFQ:WCgcb3OFQtqd0aj},NKlmHevrj:{WCgcb3OFQ:WCgcb3OFQtqd0aj},OXPhrYIQW:{variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQtqd0aj},U1cYqxNzI:{variant:\"hRGFmM74I\"},wu4AjKkv0:{WCgcb3OFQ:WCgcb3OFQtqd0aj}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"84px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({aHuqg7s72:{height:62,width:\"62px\"},dzgwOCjgG:{height:62,width:\"62px\"},KI_XHNHL_:{height:62,width:\"62px\"},NKlmHevrj:{height:62,width:\"62px\"},OXPhrYIQW:{height:62,width:\"62px\"},wu4AjKkv0:{height:62,width:\"62px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l60gaa-container\",layoutDependency:layoutDependency,layoutId:\"HFUEWjraS-container\",children:/*#__PURE__*/_jsx(GalleryGalleryItem,{GBi9Swc4q:toResponsiveImage(JBGl1kLYl),height:\"100%\",id:\"HFUEWjraS\",layoutId:\"HFUEWjraS\",style:{height:\"100%\",width:\"100%\"},tJndCeVnA:{borderColor:'var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(244, 244, 244)) /* {\"name\":\"Primary\"} */',borderStyle:\"solid\",borderWidth:2},variant:\"EbGV1pkmY\",WCgcb3OFQ:WCgcb3OFQ1ab0rfg,width:\"100%\",...addPropertyOverrides({aHuqg7s72:{WCgcb3OFQ:WCgcb3OFQpvk2vx},AsEjXXtk1:{variant:\"hRGFmM74I\"},dzgwOCjgG:{WCgcb3OFQ:WCgcb3OFQpvk2vx},KI_XHNHL_:{WCgcb3OFQ:WCgcb3OFQpvk2vx},NKlmHevrj:{WCgcb3OFQ:WCgcb3OFQpvk2vx},OXPhrYIQW:{WCgcb3OFQ:WCgcb3OFQpvk2vx},wu4AjKkv0:{variant:\"hRGFmM74I\",WCgcb3OFQ:WCgcb3OFQpvk2vx}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(EpS2iXyo7)},className:\"framer-8thpiv\",\"data-border\":true,\"data-framer-name\":\"Product / Main image\",layoutDependency:layoutDependency,layoutId:\"x7_KT5ONY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({AsEjXXtk1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(JBGl1kLYl)}},dzgwOCjgG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(UEZPwfUqX)}},fZ7xr9PYb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(UEZPwfUqX)}},G0CuMa7pf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(P2lnBz26D)}},gEH4NispI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(P2lnBz26D)}},heYHJzmSl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(DAOZEyqc4)}},KI_XHNHL_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(P2lnBz26D)}},NbROABAm4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(UEZPwfUqX)}},NKlmHevrj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(DAOZEyqc4)}},Nnd3D8yhH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(AZiJRk1LO)}},OXPhrYIQW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(AZiJRk1LO)}},T_UrlZXkW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(JBGl1kLYl)}},U1cYqxNzI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(AZiJRk1LO)}},wu4AjKkv0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(JBGl1kLYl)}},yB2WmvM9k:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),...toResponsiveImage(DAOZEyqc4)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oUpwy.framer-1ropfis, .framer-oUpwy .framer-1ropfis { display: block; }\",\".framer-oUpwy.framer-rrjmq9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-oUpwy .framer-1lu689r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oUpwy .framer-df7er4-container, .framer-oUpwy .framer-1ya3tix-container, .framer-oUpwy .framer-1ggp8y9-container, .framer-oUpwy .framer-130cxf1-container, .framer-oUpwy .framer-cgot6f-container, .framer-oUpwy .framer-l60gaa-container { flex: none; height: 84px; position: relative; width: 84px; }\",\".framer-oUpwy .framer-8thpiv { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 506px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oUpwy.framer-rrjmq9, .framer-oUpwy .framer-1lu689r { gap: 0px; } .framer-oUpwy.framer-rrjmq9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oUpwy.framer-rrjmq9 > :first-child { margin-left: 0px; } .framer-oUpwy.framer-rrjmq9 > :last-child { margin-right: 0px; } .framer-oUpwy .framer-1lu689r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oUpwy .framer-1lu689r > :first-child { margin-top: 0px; } .framer-oUpwy .framer-1lu689r > :last-child { margin-bottom: 0px; } }\",\".framer-oUpwy.framer-v-169ceom .framer-df7er4-container { order: 0; }\",\".framer-oUpwy.framer-v-169ceom .framer-1ya3tix-container { order: 1; }\",\".framer-oUpwy.framer-v-169ceom .framer-1ggp8y9-container { order: 2; }\",\".framer-oUpwy.framer-v-169ceom .framer-130cxf1-container { order: 3; }\",\".framer-oUpwy.framer-v-169ceom .framer-cgot6f-container { order: 4; }\",\".framer-oUpwy.framer-v-169ceom .framer-l60gaa-container { order: 5; }\",\".framer-oUpwy.framer-v-1o1775m.framer-rrjmq9, .framer-oUpwy.framer-v-dupksu.framer-rrjmq9, .framer-oUpwy.framer-v-1xsqu3g.framer-rrjmq9, .framer-oUpwy.framer-v-r7zgat.framer-rrjmq9, .framer-oUpwy.framer-v-1bgdj2.framer-rrjmq9, .framer-oUpwy.framer-v-1lhtex2.framer-rrjmq9 { width: 358px; }\",\".framer-oUpwy.framer-v-1o1775m .framer-df7er4-container, .framer-oUpwy.framer-v-1o1775m .framer-1ya3tix-container, .framer-oUpwy.framer-v-1o1775m .framer-1ggp8y9-container, .framer-oUpwy.framer-v-1o1775m .framer-130cxf1-container, .framer-oUpwy.framer-v-1o1775m .framer-cgot6f-container, .framer-oUpwy.framer-v-1o1775m .framer-l60gaa-container, .framer-oUpwy.framer-v-dupksu .framer-df7er4-container, .framer-oUpwy.framer-v-dupksu .framer-1ya3tix-container, .framer-oUpwy.framer-v-dupksu .framer-1ggp8y9-container, .framer-oUpwy.framer-v-dupksu .framer-130cxf1-container, .framer-oUpwy.framer-v-dupksu .framer-cgot6f-container, .framer-oUpwy.framer-v-dupksu .framer-l60gaa-container, .framer-oUpwy.framer-v-1xsqu3g .framer-df7er4-container, .framer-oUpwy.framer-v-1xsqu3g .framer-1ya3tix-container, .framer-oUpwy.framer-v-1xsqu3g .framer-1ggp8y9-container, .framer-oUpwy.framer-v-1xsqu3g .framer-130cxf1-container, .framer-oUpwy.framer-v-1xsqu3g .framer-cgot6f-container, .framer-oUpwy.framer-v-1xsqu3g .framer-l60gaa-container, .framer-oUpwy.framer-v-r7zgat .framer-df7er4-container, .framer-oUpwy.framer-v-r7zgat .framer-1ya3tix-container, .framer-oUpwy.framer-v-r7zgat .framer-1ggp8y9-container, .framer-oUpwy.framer-v-r7zgat .framer-130cxf1-container, .framer-oUpwy.framer-v-r7zgat .framer-cgot6f-container, .framer-oUpwy.framer-v-r7zgat .framer-l60gaa-container, .framer-oUpwy.framer-v-1bgdj2 .framer-df7er4-container, .framer-oUpwy.framer-v-1bgdj2 .framer-1ya3tix-container, .framer-oUpwy.framer-v-1bgdj2 .framer-1ggp8y9-container, .framer-oUpwy.framer-v-1bgdj2 .framer-130cxf1-container, .framer-oUpwy.framer-v-1bgdj2 .framer-cgot6f-container, .framer-oUpwy.framer-v-1bgdj2 .framer-l60gaa-container, .framer-oUpwy.framer-v-1lhtex2 .framer-df7er4-container, .framer-oUpwy.framer-v-1lhtex2 .framer-1ya3tix-container, .framer-oUpwy.framer-v-1lhtex2 .framer-1ggp8y9-container, .framer-oUpwy.framer-v-1lhtex2 .framer-130cxf1-container, .framer-oUpwy.framer-v-1lhtex2 .framer-cgot6f-container, .framer-oUpwy.framer-v-1lhtex2 .framer-l60gaa-container { height: 62px; width: 62px; }\",\".framer-oUpwy.framer-v-1o1775m .framer-8thpiv, .framer-oUpwy.framer-v-dupksu .framer-8thpiv, .framer-oUpwy.framer-v-1xsqu3g .framer-8thpiv, .framer-oUpwy.framer-v-r7zgat .framer-8thpiv, .framer-oUpwy.framer-v-1bgdj2 .framer-8thpiv, .framer-oUpwy.framer-v-1lhtex2 .framer-8thpiv { height: var(--framer-aspect-ratio-supported, 286px); }\",\".framer-oUpwy.framer-v-le0y9p.framer-rrjmq9, .framer-oUpwy.framer-v-tsytnw.framer-rrjmq9, .framer-oUpwy.framer-v-tv1jsy.framer-rrjmq9, .framer-oUpwy.framer-v-1whx88e.framer-rrjmq9, .framer-oUpwy.framer-v-bz0fzh.framer-rrjmq9, .framer-oUpwy.framer-v-f3gyqh.framer-rrjmq9 { width: 365px; }\",\".framer-oUpwy.framer-v-le0y9p .framer-8thpiv, .framer-oUpwy.framer-v-tsytnw .framer-8thpiv, .framer-oUpwy.framer-v-tv1jsy .framer-8thpiv, .framer-oUpwy.framer-v-1whx88e .framer-8thpiv, .framer-oUpwy.framer-v-bz0fzh .framer-8thpiv, .framer-oUpwy.framer-v-f3gyqh .framer-8thpiv { height: var(--framer-aspect-ratio-supported, 271px); }\",'.framer-oUpwy[data-border=\"true\"]::after, .framer-oUpwy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 506\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gEH4NispI\":{\"layout\":[\"fixed\",\"auto\"]},\"NbROABAm4\":{\"layout\":[\"fixed\",\"auto\"]},\"heYHJzmSl\":{\"layout\":[\"fixed\",\"auto\"]},\"U1cYqxNzI\":{\"layout\":[\"fixed\",\"auto\"]},\"AsEjXXtk1\":{\"layout\":[\"fixed\",\"auto\"]},\"aHuqg7s72\":{\"layout\":[\"fixed\",\"auto\"]},\"KI_XHNHL_\":{\"layout\":[\"fixed\",\"auto\"]},\"dzgwOCjgG\":{\"layout\":[\"fixed\",\"auto\"]},\"NKlmHevrj\":{\"layout\":[\"fixed\",\"auto\"]},\"OXPhrYIQW\":{\"layout\":[\"fixed\",\"auto\"]},\"wu4AjKkv0\":{\"layout\":[\"fixed\",\"auto\"]},\"VVHhO7Abg\":{\"layout\":[\"fixed\",\"auto\"]},\"G0CuMa7pf\":{\"layout\":[\"fixed\",\"auto\"]},\"fZ7xr9PYb\":{\"layout\":[\"fixed\",\"auto\"]},\"yB2WmvM9k\":{\"layout\":[\"fixed\",\"auto\"]},\"Nnd3D8yhH\":{\"layout\":[\"fixed\",\"auto\"]},\"T_UrlZXkW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EpS2iXyo7\":\"image1\",\"P2lnBz26D\":\"image2\",\"UEZPwfUqX\":\"image3\",\"DAOZEyqc4\":\"image4\",\"AZiJRk1LO\":\"image5\",\"JBGl1kLYl\":\"image6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersO4MnPyC2=withCSS(Component,css,\"framer-oUpwy\");export default FramersO4MnPyC2;FramersO4MnPyC2.displayName=\"Gallery/Image Gallery\";FramersO4MnPyC2.defaultProps={height:506,width:600};addPropertyControls(FramersO4MnPyC2,{variant:{options:[\"hWJyWL8cF\",\"gEH4NispI\",\"NbROABAm4\",\"heYHJzmSl\",\"U1cYqxNzI\",\"AsEjXXtk1\",\"aHuqg7s72\",\"KI_XHNHL_\",\"dzgwOCjgG\",\"NKlmHevrj\",\"OXPhrYIQW\",\"wu4AjKkv0\",\"VVHhO7Abg\",\"G0CuMa7pf\",\"fZ7xr9PYb\",\"yB2WmvM9k\",\"Nnd3D8yhH\",\"T_UrlZXkW\"],optionTitles:[\"Desktop / Image 1\",\"Desktop / Image 2\",\"Desktop / Image 3\",\"Desktop / Image 4\",\"Desktop / Image 5\",\"Desktop / Image 6\",\"Mobile / Image 1\",\"Mobile / Image 2\",\"Mobile / Image 3\",\"Mobile / Image 4\",\"Mobile / Image 5\",\"Mobile / Image 6\",\"Tablet / Image 1\",\"Tablet / Image 2\",\"Tablet / Image 3\",\"Tablet / Image 4\",\"Tablet / Image 5\",\"Tablet / Image 6\"],title:\"Variant\",type:ControlType.Enum},EpS2iXyo7:{title:\"Image 1\",type:ControlType.ResponsiveImage},P2lnBz26D:{title:\"Image 2\",type:ControlType.ResponsiveImage},UEZPwfUqX:{title:\"Image 3\",type:ControlType.ResponsiveImage},DAOZEyqc4:{title:\"Image 4\",type:ControlType.ResponsiveImage},AZiJRk1LO:{title:\"Image 5\",type:ControlType.ResponsiveImage},JBGl1kLYl:{title:\"Image 6\",type:ControlType.ResponsiveImage}});addFonts(FramersO4MnPyC2,[{explicitInter:true,fonts:[]},...GalleryGalleryItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersO4MnPyC2\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"506\",\"framerVariables\":\"{\\\"EpS2iXyo7\\\":\\\"image1\\\",\\\"P2lnBz26D\\\":\\\"image2\\\",\\\"UEZPwfUqX\\\":\\\"image3\\\",\\\"DAOZEyqc4\\\":\\\"image4\\\",\\\"AZiJRk1LO\\\":\\\"image5\\\",\\\"JBGl1kLYl\\\":\\\"image6\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gEH4NispI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NbROABAm4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"heYHJzmSl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U1cYqxNzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AsEjXXtk1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aHuqg7s72\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KI_XHNHL_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dzgwOCjgG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NKlmHevrj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OXPhrYIQW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wu4AjKkv0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VVHhO7Abg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G0CuMa7pf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fZ7xr9PYb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yB2WmvM9k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nnd3D8yhH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T_UrlZXkW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sO4MnPyC2.map", "// Generated by Framer (01933e6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qbPvhsn1pCLpG6ik4NOy/JOMVpleLnlNSKZBY1EMK/JGcrR1W_P.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/DM7ySK7m00s8qJfNbDRF/AA3u1e8chtnkpjA2dN32/qTcX70wEN.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={eoSRVMdSt:{hover:true},epwRnl_si:{hover:true}};const cycleOrder=[\"epwRnl_si\",\"eoSRVMdSt\"];const serializationHash=\"framer-vwkGB\";const variantClassNames={eoSRVMdSt:\"framer-v-ve0r6m\",epwRnl_si:\"framer-v-7u20y9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"epwRnl_si\",Open:\"eoSRVMdSt\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,EnvA5UMOa:question??props.EnvA5UMOa??\"What is Blocs?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"epwRnl_si\",y_msOqVNF:answer??props.y_msOqVNF??\"Blocs is the ultimate design plugin for Framer. Effortlessly build and launch your site with hundreds of prebuilt, responsive UI elements.\"};};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,EnvA5UMOa,y_msOqVNF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"epwRnl_si\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapd9byy3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"eoSRVMdSt\");});const onTap1h72vo5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"epwRnl_si\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7u20y9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"epwRnl_si\",onTap:onTapd9byy3,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",filter:\"none\",WebkitFilter:\"none\",...style},variants:{\"eoSRVMdSt-hover\":{filter:\"brightness(0.95)\",WebkitFilter:\"brightness(0.95)\"},\"epwRnl_si-hover\":{filter:\"brightness(0.95)\",WebkitFilter:\"brightness(0.95)\"}},...addPropertyOverrides({\"eoSRVMdSt-hover\":{\"data-framer-name\":undefined},\"epwRnl_si-hover\":{\"data-framer-name\":undefined},eoSRVMdSt:{\"data-framer-name\":\"Open\",onTap:onTap1h72vo5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vxicao\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"uOpB3L1Ot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",children:\"What is Blocs?\"})}),className:\"framer-r0yymq\",\"data-framer-name\":\"Question Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TIuEoCi4P\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:EnvA5UMOa,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bokp76-container\",layoutDependency:layoutDependency,layoutId:\"FO7pWWHHS-container\",style:{rotate:0},variants:{eoSRVMdSt:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7288c754-42a3-4bcb-928f-d7e01bf62ad6, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"FO7pWWHHS\",layoutId:\"FO7pWWHHS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yl6qcg\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"zfOIPd2Ix\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-u4dwze\",\"data-styles-preset\":\"qTcX70wEN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95)))\"},children:\"Blocs is the ultimate design plugin for Framer. Effortlessly build and launch your site with hundreds of prebuilt, responsive UI elements.\"})}),className:\"framer-1e01uvo\",\"data-framer-name\":\"Answer Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D_X3Jztt_\",style:{\"--extracted-r6o4lv\":\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:y_msOqVNF,variants:{\"eoSRVMdSt-hover\":{opacity:1},eoSRVMdSt:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vwkGB.framer-9faylf, .framer-vwkGB .framer-9faylf { display: block; }\",\".framer-vwkGB.framer-7u20y9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 15px 0px; position: relative; width: 400px; }\",\".framer-vwkGB .framer-1vxicao { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vwkGB .framer-r0yymq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vwkGB .framer-bokp76-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-vwkGB .framer-yl6qcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vwkGB .framer-1e01uvo { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vwkGB.framer-7u20y9, .framer-vwkGB .framer-1vxicao, .framer-vwkGB .framer-yl6qcg { gap: 0px; } .framer-vwkGB.framer-7u20y9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vwkGB.framer-7u20y9 > :first-child, .framer-vwkGB .framer-yl6qcg > :first-child { margin-top: 0px; } .framer-vwkGB.framer-7u20y9 > :last-child, .framer-vwkGB .framer-yl6qcg > :last-child { margin-bottom: 0px; } .framer-vwkGB .framer-1vxicao > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vwkGB .framer-1vxicao > :first-child { margin-left: 0px; } .framer-vwkGB .framer-1vxicao > :last-child { margin-right: 0px; } .framer-vwkGB .framer-yl6qcg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-vwkGB.framer-v-ve0r6m .framer-1vxicao { order: 0; }\",\".framer-vwkGB.framer-v-ve0r6m .framer-yl6qcg { height: min-content; order: 1; padding: 20px 0px 0px 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-vwkGB[data-border=\"true\"]::after, .framer-vwkGB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48.5\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eoSRVMdSt\":{\"layout\":[\"fixed\",\"auto\"]},\"RXryaAUjN\":{\"layout\":[\"fixed\",\"auto\"]},\"DLZ0KST1Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EnvA5UMOa\":\"question\",\"y_msOqVNF\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrS37iHKxW=withCSS(Component,css,\"framer-vwkGB\");export default FramerrS37iHKxW;FramerrS37iHKxW.displayName=\"Accordion / Accordion Row\";FramerrS37iHKxW.defaultProps={height:48.5,width:400};addPropertyControls(FramerrS37iHKxW,{variant:{options:[\"epwRnl_si\",\"eoSRVMdSt\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},EnvA5UMOa:{defaultValue:\"What is Blocs?\",displayTextArea:true,title:\"Question\",type:ControlType.String},y_msOqVNF:{defaultValue:\"Blocs is the ultimate design plugin for Framer. Effortlessly build and launch your site with hundreds of prebuilt, responsive UI elements.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerrS37iHKxW,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrS37iHKxW\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"EnvA5UMOa\\\":\\\"question\\\",\\\"y_msOqVNF\\\":\\\"answer\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eoSRVMdSt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RXryaAUjN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DLZ0KST1Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48.5\"}},\"__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 AccordionAccordionRow from\"https://framerusercontent.com/modules/cjJ1Q4LxBHVhR5fpQZD3/nyAwFTdJmEbRIkZZJpj5/rS37iHKxW.js\";const AccordionAccordionRowFonts=getFonts(AccordionAccordionRow);const serializationHash=\"framer-qyUX0\";const variantClassNames={kFGPW9YKy:\"framer-v-g1asdq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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=({description1,description2,description3,heading1,heading2,heading3,height,id,width,...props})=>{return{...props,DIUBgyHeo:heading1??props.DIUBgyHeo??\"Delivery & Returns\",fVp9cL2Q4:heading3??props.fVp9cL2Q4??\"How This Was Made\",gpAZIxp8Z:description1??props.gpAZIxp8Z??\"Enter descriptive answer\",KoFvJ8TmN:heading2??props.KoFvJ8TmN??\"Size & Fit\",WcfIsMBq2:description3??props.WcfIsMBq2??\"Enter descriptive answer\",wcz8eV0nz:description2??props.wcz8eV0nz??\"Enter descriptive answer\"};};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,DIUBgyHeo,gpAZIxp8Z,KoFvJ8TmN,wcz8eV0nz,fVp9cL2Q4,WcfIsMBq2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kFGPW9YKy\",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??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-g1asdq\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"kFGPW9YKy\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||145)-0-144)/2+0+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rp9dae-container\",layoutDependency:layoutDependency,layoutId:\"WqsS0YCLi-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{EnvA5UMOa:DIUBgyHeo,height:\"100%\",id:\"WqsS0YCLi\",layoutId:\"WqsS0YCLi\",style:{width:\"100%\"},variant:\"epwRnl_si\",width:\"100%\",y_msOqVNF:gpAZIxp8Z})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||145)-0-144)/2+48+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1llypn4-container\",layoutDependency:layoutDependency,layoutId:\"MFObEBIDA-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{EnvA5UMOa:KoFvJ8TmN,height:\"100%\",id:\"MFObEBIDA\",layoutId:\"MFObEBIDA\",style:{width:\"100%\"},variant:\"epwRnl_si\",width:\"100%\",y_msOqVNF:wcz8eV0nz})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||145)-0-144)/2+96+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1auire6-container\",layoutDependency:layoutDependency,layoutId:\"ioQpl8am9-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{EnvA5UMOa:fVp9cL2Q4,height:\"100%\",id:\"ioQpl8am9\",layoutId:\"ioQpl8am9\",style:{width:\"100%\"},variant:\"epwRnl_si\",width:\"100%\",y_msOqVNF:WcfIsMBq2})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qyUX0.framer-10jthpe, .framer-qyUX0 .framer-10jthpe { display: block; }\",\".framer-qyUX0.framer-g1asdq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 520px; }\",\".framer-qyUX0 .framer-1rp9dae-container, .framer-qyUX0 .framer-1llypn4-container, .framer-qyUX0 .framer-1auire6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qyUX0.framer-g1asdq { gap: 0px; } .framer-qyUX0.framer-g1asdq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qyUX0.framer-g1asdq > :first-child { margin-top: 0px; } .framer-qyUX0.framer-g1asdq > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 145\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DIUBgyHeo\":\"heading1\",\"gpAZIxp8Z\":\"description1\",\"KoFvJ8TmN\":\"heading2\",\"wcz8eV0nz\":\"description2\",\"fVp9cL2Q4\":\"heading3\",\"WcfIsMBq2\":\"description3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUqIacifYi=withCSS(Component,css,\"framer-qyUX0\");export default FramerUqIacifYi;FramerUqIacifYi.displayName=\"Accordion / Accordion\";FramerUqIacifYi.defaultProps={height:145,width:520};addPropertyControls(FramerUqIacifYi,{DIUBgyHeo:{defaultValue:\"Delivery & Returns\",description:\"\",title:\"Heading 1\",type:ControlType.String},gpAZIxp8Z:{defaultValue:\"Enter descriptive answer\",displayTextArea:true,title:\"Description 1\",type:ControlType.String},KoFvJ8TmN:{defaultValue:\"Size & Fit\",description:\"\",placeholder:\"\",title:\"Heading 2\",type:ControlType.String},wcz8eV0nz:{defaultValue:\"Enter descriptive answer\",displayTextArea:true,title:\"Description 2\",type:ControlType.String},fVp9cL2Q4:{defaultValue:\"How This Was Made\",description:\"\",title:\"Heading 3\",type:ControlType.String},WcfIsMBq2:{defaultValue:\"Enter descriptive answer\",displayTextArea:true,title:\"Description 3\",type:ControlType.String}});addFonts(FramerUqIacifYi,[{explicitInter:true,fonts:[]},...AccordionAccordionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUqIacifYi\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"DIUBgyHeo\\\":\\\"heading1\\\",\\\"gpAZIxp8Z\\\":\\\"description1\\\",\\\"KoFvJ8TmN\\\":\\\"heading2\\\",\\\"wcz8eV0nz\\\":\\\"description2\\\",\\\"fVp9cL2Q4\\\":\\\"heading3\\\",\\\"WcfIsMBq2\\\":\\\"description3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"520\",\"framerIntrinsicHeight\":\"145\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FrameshipShopify from\"https://framerusercontent.com/modules/1kPVCHEEg0BrtObiM14s/dB1oo1zROBMey7rA774M/Frameship.js\";import QuantityInput from\"https://framerusercontent.com/modules/6m3bYVdQqi1oLEe0M7tX/i8lYU5ANawuo9bYzSsWT/QuantityInput.js\";import PriceLabel from\"https://framerusercontent.com/modules/Ncx6rwHWSXe5kU34gWm3/VHL0FeXAljZAY1ts13OM/ProductInfoLabel.js\";import VariantButtons from\"https://framerusercontent.com/modules/tGueMWfVDCEvfQtSlUrd/Br9USHyaCAqjdBr24HRj/VariantButtons.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import AddToCartButton from\"https://framerusercontent.com/modules/xIS6qWCTGkDJXuKuDYIj/J7N4IRW31xrW0wJwrEHg/AddToCartButton.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import InventoryLabel from\"https://framerusercontent.com/modules/Z3qqDD4F2SjBL90qlWKP/mpg80VM5M0CJzBeFtQMr/StockLabel.js\";import ComponentsBreadcrumbItem from\"#framer/local/canvasComponent/F7R0ojBID/F7R0ojBID.js\";import ComponentsBenefitItem from\"#framer/local/canvasComponent/G1AsuTe0I/G1AsuTe0I.js\";import ComponentsDivider from\"#framer/local/canvasComponent/QQ_j71TBL/QQ_j71TBL.js\";import GalleryImageGallery from\"#framer/local/canvasComponent/sO4MnPyC2/sO4MnPyC2.js\";import ProductItemMainItem from\"#framer/local/canvasComponent/tQtv4yYX6/tQtv4yYX6.js\";import ButtonUnderline from\"#framer/local/canvasComponent/UgwsLGDuo/UgwsLGDuo.js\";import AccordionAccordion from\"#framer/local/canvasComponent/UqIacifYi/UqIacifYi.js\";import Products from\"#framer/local/collection/sGBmvkB0a/sGBmvkB0a.js\";import*as sharedStyle6 from\"#framer/local/css/DzDFYm8Am/DzDFYm8Am.js\";import*as sharedStyle4 from\"#framer/local/css/IlI6G6tL4/IlI6G6tL4.js\";import*as sharedStyle from\"#framer/local/css/JGcrR1W_P/JGcrR1W_P.js\";import*as sharedStyle1 from\"#framer/local/css/lHT97201g/lHT97201g.js\";import*as sharedStyle7 from\"#framer/local/css/P84veeHpv/P84veeHpv.js\";import*as sharedStyle2 from\"#framer/local/css/TNVwlJsdN/TNVwlJsdN.js\";import*as sharedStyle3 from\"#framer/local/css/VgcuWReol/VgcuWReol.js\";import*as sharedStyle5 from\"#framer/local/css/wDYhJhiNV/wDYhJhiNV.js\";import*as sharedStyle8 from\"#framer/local/css/wv2477CZ7/wv2477CZ7.js\";import metadataProvider from\"#framer/local/webPageMetadata/oweXZs32Y/oweXZs32Y.js\";const FrameshipShopifyFonts=getFonts(FrameshipShopify);const SmoothScrollFonts=getFonts(SmoothScroll);const ComponentsBreadcrumbItemFonts=getFonts(ComponentsBreadcrumbItem);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const GalleryImageGalleryFonts=getFonts(GalleryImageGallery);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const InventoryLabelFonts=getFonts(InventoryLabel);const PriceLabelFonts=getFonts(PriceLabel);const ComponentsDividerFonts=getFonts(ComponentsDivider);const VariantButtonsFonts=getFonts(VariantButtons);const QuantityInputFonts=getFonts(QuantityInput);const AddToCartButtonFonts=getFonts(AddToCartButton);const PhosphorFonts=getFonts(Phosphor);const AccordionAccordionFonts=getFonts(AccordionAccordion);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ButtonUnderlineFonts=getFonts(ButtonUnderline);const ProductItemMainItemFonts=getFonts(ProductItemMainItem);const ContainerWithFX=withFX(Container);const ComponentsBenefitItemFonts=getFonts(ComponentsBenefitItem);const breakpoints={k_XQl4et4:\"(max-width: 809px)\",k9DnFfsjx:\"(min-width: 1600px)\",pWWdntaW4:\"(min-width: 810px) and (max-width: 1599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Zmf7M\";const variantClassNames={k_XQl4et4:\"framer-v-n8tcaw\",k9DnFfsjx:\"framer-v-7ix8r7\",pWWdntaW4:\"framer-v-csky1b\"};const transition1={bounce:.2,delay:0,duration:1.2,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition5={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:30};const transition6={bounce:.2,delay:.2,duration:1,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:30};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition7={bounce:.2,delay:.3,duration:1,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:30};const transition8={bounce:.2,delay:.4,duration:1,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"k9DnFfsjx\",Phone:\"k_XQl4et4\",Tablet:\"pWWdntaW4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"k9DnFfsjx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"oweXZs32Y\",data:Products,type:\"Collection\"},select:[{collection:\"oweXZs32Y\",name:\"TEys7mGRK\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"BgNnyJCrK\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"VIPvO9VNB\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"VeFvz8dPH\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"ODE11q7Qf\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"JYJANKpPL\",type:\"Identifier\"},{collection:\"oweXZs32Y\",name:\"wXlnXBpDV\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"oweXZs32Y\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,TEys7mGRK=getFromCurrentRouteData(\"TEys7mGRK\")??\"\",VIPvO9VNB=getFromCurrentRouteData(\"VIPvO9VNB\"),VeFvz8dPH=getFromCurrentRouteData(\"VeFvz8dPH\"),ODE11q7Qf=getFromCurrentRouteData(\"ODE11q7Qf\"),LX9eur88l,qUy1IjJwM,Nf66GhINH,wXlnXBpDV=getFromCurrentRouteData(\"wXlnXBpDV\")??\"\",BgNnyJCrK=getFromCurrentRouteData(\"BgNnyJCrK\")??\"\",JYJANKpPL=getFromCurrentRouteData(\"JYJANKpPL\")??\"\",VIPvO9VNBikWhOYhdp,TEys7mGRKikWhOYhdp,wXlnXBpDVikWhOYhdp,m_KwOiC9VikWhOYhdp,idikWhOYhdp,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"g7Bs364f4\");const dynamicRef=useSiteRefs();const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"k_XQl4et4\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"k_XQl4et4\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"k9DnFfsjx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7ix8r7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j0pj7j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QTpTmXAR3\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(FrameshipShopify,{frameshipData:\"\",height:\"100%\",id:\"QTpTmXAR3\",layoutId:\"QTpTmXAR3\",note:\"IMPORTANT\",productionDomain:\"https://sabina.framer.wiki\",shopifyAccessToken:\"934f139d113433878605f65734789354\",shopUrl:\"sczvdv-fn.myshopify.com\",stagingDomain:\"https://past-selfies-984397.framer.app\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pwufyt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s6FVfMiIZ\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"s6FVfMiIZ\",intensity:10,layoutId:\"s6FVfMiIZ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1uevg2h\",\"data-framer-name\":\"Product Section\",id:elementId,ref:dynamicRef(elementId),children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-gug0of\",\"data-framer-appear-id\":\"gug0of\",\"data-framer-name\":\"Breadcrumb\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+400+120+0+45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6oqwi5-container\",nodeId:\"VifOWe7Xt\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{B1GQMl7za:resolvedLinks[2]},pWWdntaW4:{B1GQMl7za:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentsBreadcrumbItem,{B1GQMl7za:resolvedLinks[0],dh94PKFJJ:\"Home\",height:\"100%\",id:\"VifOWe7Xt\",layoutId:\"VifOWe7Xt\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PMKgUAymC\"},implicitPathVariables:undefined},{href:{webPageId:\"PMKgUAymC\"},implicitPathVariables:undefined},{href:{webPageId:\"PMKgUAymC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+400+120+0+45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12kc37o-container\",nodeId:\"qzL8dypuL\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{B1GQMl7za:resolvedLinks1[2]},pWWdntaW4:{B1GQMl7za:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ComponentsBreadcrumbItem,{B1GQMl7za:resolvedLinks1[0],dh94PKFJJ:\"Producs\",height:\"100%\",id:\"qzL8dypuL\",layoutId:\"qzL8dypuL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",style:{\"--framer-text-color\":\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\"},children:\"Golf Shoe in White\"})}),className:\"framer-157x003\",fonts:[\"Inter\"],text:TEys7mGRK,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbwgl7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfser1\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h25u8v\",\"data-framer-name\":\"Image section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+0+0},pWWdntaW4:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 32px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:506,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 82px) * 0.5833, 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-15w3shv-container\",\"data-framer-appear-id\":\"15w3shv\",initial:animation1,nodeId:\"uAQpteBR9\",optimized:true,rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{variant:\"aHuqg7s72\"},pWWdntaW4:{variant:\"VVHhO7Abg\"}},children:/*#__PURE__*/_jsx(GalleryImageGallery,{AZiJRk1LO:toResponsiveImage(qUy1IjJwM),DAOZEyqc4:toResponsiveImage(LX9eur88l),EpS2iXyo7:toResponsiveImage(VIPvO9VNB),height:\"100%\",id:\"uAQpteBR9\",JBGl1kLYl:toResponsiveImage(Nf66GhINH),layoutId:\"uAQpteBR9\",P2lnBz26D:toResponsiveImage(VeFvz8dPH),style:{width:\"100%\"},UEZPwfUqX:toResponsiveImage(ODE11q7Qf),variant:\"hWJyWL8cF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11d2nzx\",\"data-framer-name\":\"Details section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1z4lp\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-f6gbki\",\"data-framer-appear-id\":\"f6gbki\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j26p6x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ntzoj87jE\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(InventoryLabel,{font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"p\",id:\"ntzoj87jE\",inStock:{color:\"var(--token-9071eca1-5e9a-4708-85ea-f6252a6a763d, rgb(15, 164, 67))\",decoration:\"none\",text:\"## in stock\",visible:true},layoutId:\"ntzoj87jE\",loading:{color:\"rgba(0, 0, 0, 0.5)\",decoration:\"none\",text:\"Loading...\",visible:true},outOfStock:{color:\"var(--token-b85496e2-db56-40c3-a40d-e5873e09226d, rgb(255, 123, 84))\",decoration:\"none\",text:\"Out of stock\",visible:true},selectable:true,shopifyData:wXlnXBpDV,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18ahr80\",\"data-styles-preset\":\"lHT97201g\",style:{\"--framer-text-alignment\":\"left\"},children:\"Golf Shoe in White\"})}),className:\"framer-1sewk5e\",fonts:[\"Inter\"],text:TEys7mGRK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ec46js\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-skce2d-container\",\"data-framer-name\":\"Price\",isAuthoredByUser:true,isModuleExternal:true,name:\"Price\",nodeId:\"tEq9I1G28\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PriceLabel,{color:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",currency:\"USD\",currencyFormat:{decimals:\"always\",formatted:true,locale:\"\",location:\"after\",style:\"symbol\"},decoration:\"none\",font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"26px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"p\",id:\"tEq9I1G28\",layoutId:\"tEq9I1G28\",name:\"Price\",prefix:\"\",selectable:true,shopifyData:wXlnXBpDV,suffix:\"\",textWhenZero:\"Free\",type:\"price\",whenZero:\"show\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t3y8cz-container\",\"data-framer-name\":\"Compare-at Price\",isAuthoredByUser:true,isModuleExternal:true,name:\"Compare-at Price\",nodeId:\"KCqbeNj_0\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PriceLabel,{color:\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\",currency:\"USD\",currencyFormat:{decimals:\"auto\",formatted:true,locale:\"\",location:\"after\",style:\"symbol\"},decoration:\"strikethrough\",font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"26px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"p\",id:\"KCqbeNj_0\",layoutId:\"KCqbeNj_0\",name:\"Compare-at Price\",prefix:\"\",selectable:true,shopifyData:wXlnXBpDV,suffix:\"\",textWhenZero:\"Free\",type:\"compareAtPrice\",whenZero:\"hide\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+538+0+0+0+0+0+470.8},pWWdntaW4:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 32px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 82px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+0+0+0+0+470.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ag6r17-container\",nodeId:\"Ep4FZGxgh\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(ComponentsDivider,{height:\"100%\",id:\"Ep4FZGxgh\",layoutId:\"Ep4FZGxgh\",OFecsztzz:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BgNnyJCrK,className:\"framer-tpqn6w\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1dil41a\",blockquote:\"framer-styles-preset-4v0i5e\",h1:\"framer-styles-preset-l1b8r5\",h2:\"framer-styles-preset-n02az2\",h3:\"framer-styles-preset-18ahr80\",h4:\"framer-styles-preset-w70l3k\",h5:\"framer-styles-preset-1mzeo01\",h6:\"framer-styles-preset-sn8g9g\",p:\"framer-styles-preset-yvo3b4\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+538+0+601.8},pWWdntaW4:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 32px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 82px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+601.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i7lxcq-container\",nodeId:\"oiGyAlUm1\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(ComponentsDivider,{height:\"100%\",id:\"oiGyAlUm1\",layoutId:\"oiGyAlUm1\",OFecsztzz:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1r0r4fm-container\",\"data-framer-appear-id\":\"1r0r4fm\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dWJuUITfD\",optimized:true,rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(VariantButtons,{gap:20,height:\"100%\",id:\"dWJuUITfD\",layout:{direction:\"horizontal\",distribute:\"start\",gapH:10,gapV:10,verticalAlignment:\"center\",wrap:true},layoutId:\"dWJuUITfD\",shopifyData:wXlnXBpDV,style:{width:\"100%\"},textButtons:{bgBlur:0,color:{defaultColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",selectedColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\"},fill:{defaultColor:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,selectedColor:\"var(--token-dcc9105d-85b2-459e-9303-7d738f008bee, rgb(13, 184, 112))\",selectedColorA:\"rgb(94, 94, 94)\",selectedColorB:\"rgb(17, 17, 17)\",type:\"color\"},fixedWidth:42,font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},outOfStock:{disable:true,opacity:.5},padding:\"12px 20px 12px 20px\",radius:\"8px\",transform:\"none\",transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"fit\"},titles:{color:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},gap:10,location:\"top\",transform:\"none\"},variantOptions:JYJANKpPL,width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1jj6m1o\",\"data-framer-appear-id\":\"1jj6m1o\",\"data-framer-name\":\"Add to cart\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9qd8e\",\"data-framer-name\":\"Quantity Input\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cxirf-container\",\"data-framer-name\":\"Subtract\",isAuthoredByUser:true,isModuleExternal:true,name:\"Subtract\",nodeId:\"adLvGVZCR\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(QuantityInput,{bgBlur:0,color:{defaultColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",disabledColor:\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\"},fill:{defaultColor:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"center\"},height:\"100%\",icon:{rounded:true,size:14,strokeWidth:2},id:\"adLvGVZCR\",layoutId:\"adLvGVZCR\",maxValue:100,name:\"Subtract\",padding:\"10px\",placeholder:{},radius:\"10px\",shopifyData:wXlnXBpDV,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-1i76rj3-container\",\"data-framer-name\":\"Input\",isAuthoredByUser:true,isModuleExternal:true,name:\"Input\",nodeId:\"J5sIzo2S_\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(QuantityInput,{bgBlur:0,color:{defaultColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",disabledColor:\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\"},fill:{defaultColor:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"center\"},height:\"100%\",icon:{rounded:true,size:12,strokeWidth:3},id:\"J5sIzo2S_\",layoutId:\"J5sIzo2S_\",maxValue:100,name:\"Input\",padding:\"10px\",placeholder:{},radius:\"10px\",shopifyData:wXlnXBpDV,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-14hs2xg-container\",\"data-framer-name\":\"Add\",isAuthoredByUser:true,isModuleExternal:true,name:\"Add\",nodeId:\"qRcc9cg2S\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(QuantityInput,{bgBlur:0,color:{defaultColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",disabledColor:\"var(--token-eca568e7-2390-4e86-9559-916f6a27b45d, rgb(96, 95, 95))\"},fill:{defaultColor:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",defaultColorA:\"rgb(243, 243, 243)\",defaultColorB:\"rgb(153, 153, 153)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",icon:{rounded:true,size:14,strokeWidth:2},id:\"qRcc9cg2S\",layoutId:\"qRcc9cg2S\",maxValue:100,name:\"Add\",padding:\"10px\",placeholder:{},radius:\"10px\",shopifyData:wXlnXBpDV,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-bkgi2a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kosRnyk98\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(AddToCartButton,{bgBlur:0,color:{defaultColor:\"var(--token-d32f3b6f-5787-4e23-bd9e-e5a225c19ca1, rgb(255, 255, 255))\",outOfStockColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\"},fill:{defaultColor:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",defaultColorA:\"rgb(94, 94, 94)\",defaultColorB:\"rgb(17, 17, 17)\",gradientAngle:0,outOfStockColor:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",outOfStockColorA:\"rgb(243, 243, 243)\",outOfStockColorB:\"rgb(153, 153, 153)\",type:\"color\"},font:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",id:\"kosRnyk98\",layoutId:\"kosRnyk98\",openCart:true,padding:\"16px\",radius:\"8px\",shopifyData:wXlnXBpDV,style:{width:\"100%\"},text:{default:\"Add to Cart\",outOfStock:\"Out of Stock\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n8j0y\",\"data-framer-name\":\"Details/Faq\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1pul468\",\"data-framer-appear-id\":\"1pul468\",\"data-framer-name\":\"Details\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1mtz2\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1esuwww-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UFPwhuH80\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Truck\",id:\"UFPwhuH80\",layoutId:\"UFPwhuH80\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",children:\"Fast & free delivery\"})}),className:\"framer-1hj6bov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19sozqd\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yjewwi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CFrJrDd3K\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Leaf\",id:\"CFrJrDd3K\",layoutId:\"CFrJrDd3K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",children:\"100% Cotton\"})}),className:\"framer-1q1xcrt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n0dxw5\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zt240u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FRFnfAPwe\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Recycle\",id:\"FRFnfAPwe\",layoutId:\"FRFnfAPwe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",children:\"Recycled material\"})}),className:\"framer-luf7l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+538+0+1142.8+0+111.2},pWWdntaW4:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 32px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 82px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+1142.8+0+111.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrode-container\",nodeId:\"NvhKCriBD\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(ComponentsDivider,{height:\"100%\",id:\"NvhKCriBD\",layoutId:\"NvhKCriBD\",OFecsztzz:\"var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+538+0+1142.8+0+136.2},pWWdntaW4:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 32px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:145,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px), 1px) - 82px) / 2.4, 1px)`,y:(componentViewport?.y||0)+0+400+120+136+0+0+0+1142.8+0+136.2,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1dsgsp1-container\",\"data-framer-appear-id\":\"1dsgsp1\",initial:animation1,nodeId:\"pjYRRsIcl\",optimized:true,rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(AccordionAccordion,{DIUBgyHeo:\"Delivery & Returns\",fVp9cL2Q4:\"How This Was Made\",gpAZIxp8Z:\"We offer fast shipping and hassle-free returns within 30 days.\",height:\"100%\",id:\"pjYRRsIcl\",KoFvJ8TmN:\"Size & FIt\",layoutId:\"pjYRRsIcl\",style:{width:\"100%\"},WcfIsMBq2:\"Each item is crafted with care using sustainable materials and ethical practices.\",wcz8eV0nz:\"Refer to our size guide for the perfect fit tailored to your measurements.\",width:\"100%\"})})})})]})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mn7m65\",\"data-framer-name\":\"Info Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1epogt5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oiikma\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n02az2\",\"data-styles-preset\":\"VgcuWReol\",style:{\"--framer-text-alignment\":\"left\"},children:\"No need to sacrifice style for comfort\"})}),className:\"framer-1e1lakj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qr7um\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y8bp6w\",\"data-framer-name\":\"Content item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2680+60+0+0+0+0+82.4+0+0+0+0),pixelHeight:1270,pixelWidth:1524,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`,src:\"https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp\",srcSet:\"https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp 1524w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2142+80+0+0+0+0+82.4+0+0+0),pixelHeight:1270,pixelWidth:1524,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp\",srcSet:\"https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SXIR2Spa7Jx9ng3hEPtzG6xkswc.webp 1524w\"},className:\"framer-1wunzsq\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10b3d15\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18ahr80\",\"data-styles-preset\":\"lHT97201g\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sustainable & trendy\"})}),className:\"framer-1d39izc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our pieces are sustainably made, and designed to be a timeless piece in your wardrobe.\"})}),className:\"framer-1riril1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7ts16l\",\"data-framer-name\":\"Content item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2680+60+0+0+0+0+82.4+0+538.8+0+0),pixelHeight:1270,pixelWidth:1524,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`,src:\"https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp\",srcSet:\"https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp 1524w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2142+80+0+0+0+0+82.4+0+0+0),pixelHeight:1270,pixelWidth:1524,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 32px) / 2, 1px)`,src:\"https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp\",srcSet:\"https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9uz9y7yUnSbffPUODmDGMG5hQY.webp 1524w\"},className:\"framer-193klsm\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4uuf7\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18ahr80\",\"data-styles-preset\":\"lHT97201g\",style:{\"--framer-text-alignment\":\"left\"},children:\"Elevate your style\"})}),className:\"framer-1v0eng3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yvo3b4\",\"data-styles-preset\":\"JGcrR1W_P\",style:{\"--framer-text-alignment\":\"left\"},children:\"Made with natural materials, each item is comfortable and easily machine washable.\"})}),className:\"framer-1tuchsy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8h84y8\",\"data-framer-name\":\"Products Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxmbgz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18mwm4n\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2sr1c8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-n02az2\",\"data-styles-preset\":\"VgcuWReol\",style:{\"--framer-text-alignment\":\"left\"},children:\"You might also like\"})}),className:\"framer-13b747c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PMKgUAymC\"},implicitPathVariables:undefined},{href:{webPageId:\"PMKgUAymC\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+3091.2+80+0+0+0+0+22.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7cotut-container hidden-n8tcaw\",nodeId:\"EKyC4NrTv\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pWWdntaW4:{dlIZi92Dr:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonUnderline,{dlIZi92Dr:resolvedLinks2[0],height:\"100%\",id:\"EKyC4NrTv\",L3Q39zPti:\"All products\",layoutId:\"EKyC4NrTv\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1erjfmq\",\"data-framer-name\":\"Products\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{query:{from:{alias:\"ikWhOYhdp\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ikWhOYhdp\",name:\"VIPvO9VNB\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"TEys7mGRK\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"wXlnXBpDV\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"m_KwOiC9V\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"id\",type:\"Identifier\"}]}},pWWdntaW4:{query:{from:{alias:\"ikWhOYhdp\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ikWhOYhdp\",name:\"VIPvO9VNB\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"TEys7mGRK\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"wXlnXBpDV\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"m_KwOiC9V\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ikWhOYhdp\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ikWhOYhdp\",name:\"VIPvO9VNB\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"TEys7mGRK\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"wXlnXBpDV\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"m_KwOiC9V\",type:\"Identifier\"},{collection:\"ikWhOYhdp\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"ikWhOYhdp\",name:\"TEys7mGRK\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:TEys7mGRK},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idikWhOYhdp,m_KwOiC9V:m_KwOiC9VikWhOYhdp,TEys7mGRK:TEys7mGRKikWhOYhdp,VIPvO9VNB:VIPvO9VNBikWhOYhdp,wXlnXBpDV:wXlnXBpDVikWhOYhdp},index)=>{TEys7mGRKikWhOYhdp??=\"\";wXlnXBpDVikWhOYhdp??=\"\";m_KwOiC9VikWhOYhdp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ikWhOYhdp-${idikWhOYhdp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{m_KwOiC9V:m_KwOiC9VikWhOYhdp},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{m_KwOiC9V:m_KwOiC9VikWhOYhdp},webPageId:\"oweXZs32Y\"},implicitPathVariables:undefined},{href:{pathVariables:{m_KwOiC9V:m_KwOiC9VikWhOYhdp},webPageId:\"oweXZs32Y\"},implicitPathVariables:undefined},{href:{pathVariables:{m_KwOiC9V:m_KwOiC9VikWhOYhdp},webPageId:\"oweXZs32Y\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+3928+80+0+0+82.4+0+0},pWWdntaW4:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 20px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3091.2+80+0+0+82.4+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j4o6oc-container\",nodeId:\"yIL6k3p1P\",rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{k92vQa5nq:resolvedLinks3[2],variant:\"scYBOzEnP\"},pWWdntaW4:{k92vQa5nq:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ProductItemMainItem,{height:\"100%\",id:\"yIL6k3p1P\",k92vQa5nq:resolvedLinks3[0],layoutId:\"yIL6k3p1P\",MS7jqMJMc:wXlnXBpDVikWhOYhdp,rQOByBLxu:TEys7mGRKikWhOYhdp,style:{width:\"100%\"},variant:\"Gd9ZzCQeI\",width:\"100%\",ZgJb6MfQV:toResponsiveImage(VIPvO9VNBikWhOYhdp)})})})})})})})})},idikWhOYhdp);})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{height:28,y:(componentViewport?.y||0)+0+3928+80+0+0+936.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3f9p3f-container hidden-7ix8r7 hidden-csky1b\",nodeId:\"cf6txpkIX\",scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(ButtonUnderline,{height:\"100%\",id:\"cf6txpkIX\",L3Q39zPti:\"All products\",layoutId:\"cf6txpkIX\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xq5emc\",\"data-framer-name\":\"Features Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ls5qwc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewso7q\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+5092.4+32+0+0+0+0+0},pWWdntaW4:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4195.6+32+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4195.6+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hevq0r-container\",nodeId:\"q7m0ExrK1\",rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"},pWWdntaW4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"}},children:/*#__PURE__*/_jsx(ComponentsBenefitItem,{AlXPAT8QY:{borderBottomWidth:0,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"q7m0ExrK1\",layoutId:\"q7m0ExrK1\",MnUYXjgN4:\"Orders above $200\",NNcer3UF7:\"Truck\",style:{width:\"100%\"},variant:\"gXUjXrwQH\",VE8U_h0m1:\"Free Shipping\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+5092.4+32+0+0+0+0+133},pWWdntaW4:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4195.6+32+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4195.6+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1otumxp-container\",nodeId:\"QUnt_5qk0\",rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"},pWWdntaW4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"}},children:/*#__PURE__*/_jsx(ComponentsBenefitItem,{AlXPAT8QY:{borderBottomWidth:0,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"QUnt_5qk0\",layoutId:\"QUnt_5qk0\",MnUYXjgN4:\"30 day Guarantee \",NNcer3UF7:\"Money\",style:{width:\"100%\"},variant:\"gXUjXrwQH\",VE8U_h0m1:\"Money-back\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+5092.4+32+0+0+0+0+266},pWWdntaW4:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4195.6+32+0+0+0+0+133}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4195.6+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sbw6yd-container\",nodeId:\"HB0VHV9qr\",rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"},pWWdntaW4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"}},children:/*#__PURE__*/_jsx(ComponentsBenefitItem,{AlXPAT8QY:{borderBottomWidth:0,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"HB0VHV9qr\",layoutId:\"HB0VHV9qr\",MnUYXjgN4:\"Phone and email support\",NNcer3UF7:\"Phone\",style:{width:\"100%\"},variant:\"gXUjXrwQH\",VE8U_h0m1:\"Premium Support\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 50px)`,y:(componentViewport?.y||0)+0+5092.4+32+0+0+0+0+399},pWWdntaW4:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4195.6+32+0+0+0+0+133}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4195.6+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1trtw91-container\",nodeId:\"jGGx7iIt3\",rendersWithMotion:true,scopeId:\"oweXZs32Y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k_XQl4et4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"},pWWdntaW4:{AlXPAT8QY:{borderBottomWidth:1,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"WnGw9ZmgX\"}},children:/*#__PURE__*/_jsx(ComponentsBenefitItem,{AlXPAT8QY:{borderBottomWidth:0,borderColor:'var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, rgb(244, 244, 244)) /* {\"name\":\"Light BG\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"jGGx7iIt3\",layoutId:\"jGGx7iIt3\",MnUYXjgN4:\"Secured by Stripe\",NNcer3UF7:\"Lock\",style:{width:\"100%\"},variant:\"gXUjXrwQH\",VE8U_h0m1:\"Secure Payments\",width:\"100%\"})})})})})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Zmf7M.framer-1k12qsr, .framer-Zmf7M .framer-1k12qsr { display: block; }\",\".framer-Zmf7M.framer-7ix8r7 { 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: 1600px; }\",\".framer-Zmf7M .framer-1j0pj7j-container, .framer-Zmf7M .framer-pwufyt-container, .framer-Zmf7M .framer-6oqwi5-container, .framer-Zmf7M .framer-12kc37o-container, .framer-Zmf7M .framer-1j26p6x-container, .framer-Zmf7M .framer-skce2d-container, .framer-Zmf7M .framer-t3y8cz-container, .framer-Zmf7M .framer-7cotut-container, .framer-Zmf7M .framer-3f9p3f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Zmf7M .framer-1uevg2h { 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: 120px 24px 62px 24px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-gug0of { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zmf7M .framer-157x003 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Zmf7M .framer-nbwgl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1kfser1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Zmf7M .framer-h25u8v { align-content: center; align-items: center; display: flex; flex: 1.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Zmf7M .framer-15w3shv-container, .framer-Zmf7M .framer-1r0r4fm-container, .framer-Zmf7M .framer-1dsgsp1-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zmf7M .framer-11d2nzx { 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: flex-start; padding: 0px; position: sticky; top: 120px; width: 1px; z-index: 1; }\",\".framer-Zmf7M .framer-t1z4lp { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-f6gbki { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zmf7M .framer-1sewk5e, .framer-Zmf7M .framer-tpqn6w, .framer-Zmf7M .framer-1e1lakj, .framer-Zmf7M .framer-1d39izc, .framer-Zmf7M .framer-1riril1, .framer-Zmf7M .framer-1v0eng3, .framer-Zmf7M .framer-1tuchsy, .framer-Zmf7M .framer-13b747c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zmf7M .framer-1ec46js { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Zmf7M .framer-ag6r17-container, .framer-Zmf7M .framer-i7lxcq-container, .framer-Zmf7M .framer-1rrode-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1jj6m1o { 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: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zmf7M .framer-1d9qd8e { align-content: center; align-items: center; background-color: var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, #f4f4f4); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 6px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-4cxirf-container, .framer-Zmf7M .framer-14hs2xg-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-Zmf7M .framer-1i76rj3-container { flex: none; height: 40px; position: relative; width: 60px; }\",\".framer-Zmf7M .framer-bkgi2a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-16n8j0y { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1pul468 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Zmf7M .framer-q1mtz2, .framer-Zmf7M .framer-19sozqd, .framer-Zmf7M .framer-1n0dxw5 { 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: min-content; }\",\".framer-Zmf7M .framer-1esuwww-container, .framer-Zmf7M .framer-yjewwi-container, .framer-Zmf7M .framer-zt240u-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Zmf7M .framer-1hj6bov, .framer-Zmf7M .framer-1q1xcrt, .framer-Zmf7M .framer-luf7l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Zmf7M .framer-1mn7m65, .framer-Zmf7M .framer-xq5emc { align-content: center; align-items: center; background-color: var(--token-71219c85-f510-4bf2-81f4-4bc50431f321, #f0ebe7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1epogt5, .framer-Zmf7M .framer-1pxmbgz, .framer-Zmf7M .framer-ls5qwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-oiikma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-16qr7um { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1y8bp6w, .framer-Zmf7M .framer-7ts16l { 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-Zmf7M .framer-1wunzsq, .framer-Zmf7M .framer-193klsm { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 520px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-10b3d15, .framer-Zmf7M .framer-b4uuf7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-8h84y8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 24px 120px 24px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-18mwm4n { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-2sr1c8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Zmf7M .framer-1erjfmq { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1j4o6oc-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1ewso7q { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zmf7M .framer-1hevq0r-container, .framer-Zmf7M .framer-1otumxp-container, .framer-Zmf7M .framer-1sbw6yd-container, .framer-Zmf7M .framer-1trtw91-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zmf7M.framer-7ix8r7, .framer-Zmf7M .framer-1uevg2h, .framer-Zmf7M .framer-gug0of, .framer-Zmf7M .framer-nbwgl7, .framer-Zmf7M .framer-1kfser1, .framer-Zmf7M .framer-h25u8v, .framer-Zmf7M .framer-11d2nzx, .framer-Zmf7M .framer-t1z4lp, .framer-Zmf7M .framer-f6gbki, .framer-Zmf7M .framer-1ec46js, .framer-Zmf7M .framer-1jj6m1o, .framer-Zmf7M .framer-16n8j0y, .framer-Zmf7M .framer-1pul468, .framer-Zmf7M .framer-q1mtz2, .framer-Zmf7M .framer-19sozqd, .framer-Zmf7M .framer-1n0dxw5, .framer-Zmf7M .framer-1mn7m65, .framer-Zmf7M .framer-1epogt5, .framer-Zmf7M .framer-oiikma, .framer-Zmf7M .framer-16qr7um, .framer-Zmf7M .framer-1y8bp6w, .framer-Zmf7M .framer-10b3d15, .framer-Zmf7M .framer-7ts16l, .framer-Zmf7M .framer-b4uuf7, .framer-Zmf7M .framer-8h84y8, .framer-Zmf7M .framer-1pxmbgz, .framer-Zmf7M .framer-18mwm4n, .framer-Zmf7M .framer-2sr1c8, .framer-Zmf7M .framer-xq5emc, .framer-Zmf7M .framer-ls5qwc { gap: 0px; } .framer-Zmf7M.framer-7ix8r7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Zmf7M.framer-7ix8r7 > :first-child, .framer-Zmf7M .framer-1uevg2h > :first-child, .framer-Zmf7M .framer-h25u8v > :first-child, .framer-Zmf7M .framer-11d2nzx > :first-child, .framer-Zmf7M .framer-t1z4lp > :first-child, .framer-Zmf7M .framer-f6gbki > :first-child, .framer-Zmf7M .framer-1jj6m1o > :first-child, .framer-Zmf7M .framer-16n8j0y > :first-child, .framer-Zmf7M .framer-1pul468 > :first-child, .framer-Zmf7M .framer-1mn7m65 > :first-child, .framer-Zmf7M .framer-1epogt5 > :first-child, .framer-Zmf7M .framer-oiikma > :first-child, .framer-Zmf7M .framer-1y8bp6w > :first-child, .framer-Zmf7M .framer-10b3d15 > :first-child, .framer-Zmf7M .framer-7ts16l > :first-child, .framer-Zmf7M .framer-b4uuf7 > :first-child, .framer-Zmf7M .framer-8h84y8 > :first-child, .framer-Zmf7M .framer-1pxmbgz > :first-child, .framer-Zmf7M .framer-2sr1c8 > :first-child, .framer-Zmf7M .framer-xq5emc > :first-child, .framer-Zmf7M .framer-ls5qwc > :first-child { margin-top: 0px; } .framer-Zmf7M.framer-7ix8r7 > :last-child, .framer-Zmf7M .framer-1uevg2h > :last-child, .framer-Zmf7M .framer-h25u8v > :last-child, .framer-Zmf7M .framer-11d2nzx > :last-child, .framer-Zmf7M .framer-t1z4lp > :last-child, .framer-Zmf7M .framer-f6gbki > :last-child, .framer-Zmf7M .framer-1jj6m1o > :last-child, .framer-Zmf7M .framer-16n8j0y > :last-child, .framer-Zmf7M .framer-1pul468 > :last-child, .framer-Zmf7M .framer-1mn7m65 > :last-child, .framer-Zmf7M .framer-1epogt5 > :last-child, .framer-Zmf7M .framer-oiikma > :last-child, .framer-Zmf7M .framer-1y8bp6w > :last-child, .framer-Zmf7M .framer-10b3d15 > :last-child, .framer-Zmf7M .framer-7ts16l > :last-child, .framer-Zmf7M .framer-b4uuf7 > :last-child, .framer-Zmf7M .framer-8h84y8 > :last-child, .framer-Zmf7M .framer-1pxmbgz > :last-child, .framer-Zmf7M .framer-2sr1c8 > :last-child, .framer-Zmf7M .framer-xq5emc > :last-child, .framer-Zmf7M .framer-ls5qwc > :last-child { margin-bottom: 0px; } .framer-Zmf7M .framer-1uevg2h > *, .framer-Zmf7M .framer-11d2nzx > *, .framer-Zmf7M .framer-t1z4lp > *, .framer-Zmf7M .framer-16n8j0y > *, .framer-Zmf7M .framer-1y8bp6w > *, .framer-Zmf7M .framer-7ts16l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Zmf7M .framer-gug0of > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Zmf7M .framer-gug0of > :first-child, .framer-Zmf7M .framer-nbwgl7 > :first-child, .framer-Zmf7M .framer-1kfser1 > :first-child, .framer-Zmf7M .framer-1ec46js > :first-child, .framer-Zmf7M .framer-q1mtz2 > :first-child, .framer-Zmf7M .framer-19sozqd > :first-child, .framer-Zmf7M .framer-1n0dxw5 > :first-child, .framer-Zmf7M .framer-16qr7um > :first-child, .framer-Zmf7M .framer-18mwm4n > :first-child { margin-left: 0px; } .framer-Zmf7M .framer-gug0of > :last-child, .framer-Zmf7M .framer-nbwgl7 > :last-child, .framer-Zmf7M .framer-1kfser1 > :last-child, .framer-Zmf7M .framer-1ec46js > :last-child, .framer-Zmf7M .framer-q1mtz2 > :last-child, .framer-Zmf7M .framer-19sozqd > :last-child, .framer-Zmf7M .framer-1n0dxw5 > :last-child, .framer-Zmf7M .framer-16qr7um > :last-child, .framer-Zmf7M .framer-18mwm4n > :last-child { margin-right: 0px; } .framer-Zmf7M .framer-nbwgl7 > *, .framer-Zmf7M .framer-18mwm4n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Zmf7M .framer-1kfser1 > * { margin: 0px; margin-left: calc(82px / 2); margin-right: calc(82px / 2); } .framer-Zmf7M .framer-h25u8v > *, .framer-Zmf7M .framer-f6gbki > *, .framer-Zmf7M .framer-1pul468 > *, .framer-Zmf7M .framer-1mn7m65 > *, .framer-Zmf7M .framer-10b3d15 > *, .framer-Zmf7M .framer-b4uuf7 > *, .framer-Zmf7M .framer-8h84y8 > *, .framer-Zmf7M .framer-2sr1c8 > *, .framer-Zmf7M .framer-xq5emc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Zmf7M .framer-1ec46js > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Zmf7M .framer-1jj6m1o > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Zmf7M .framer-q1mtz2 > *, .framer-Zmf7M .framer-19sozqd > *, .framer-Zmf7M .framer-1n0dxw5 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Zmf7M .framer-1epogt5 > *, .framer-Zmf7M .framer-oiikma > *, .framer-Zmf7M .framer-1pxmbgz > *, .framer-Zmf7M .framer-ls5qwc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Zmf7M .framer-16qr7um > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,\"@media (min-width: 810px) and (max-width: 1599px) { .framer-Zmf7M.framer-7ix8r7 { width: 810px; } .framer-Zmf7M .framer-1kfser1 { gap: 32px; } .framer-Zmf7M .framer-h25u8v { flex: 1 0 0px; } .framer-Zmf7M .framer-1erjfmq { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-Zmf7M .framer-xq5emc { padding: 32px 24px 32px 24px; } .framer-Zmf7M .framer-1ewso7q { gap: 16px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zmf7M .framer-1kfser1, .framer-Zmf7M .framer-1ewso7q { gap: 0px; } .framer-Zmf7M .framer-1kfser1 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Zmf7M .framer-1kfser1 > :first-child { margin-left: 0px; } .framer-Zmf7M .framer-1kfser1 > :last-child { margin-right: 0px; } .framer-Zmf7M .framer-1ewso7q > *, .framer-Zmf7M .framer-1ewso7q > :first-child, .framer-Zmf7M .framer-1ewso7q > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-Zmf7M.framer-7ix8r7 { width: 390px; } .framer-Zmf7M .framer-1uevg2h { padding: 120px 16px 62px 16px; } .framer-Zmf7M .framer-1kfser1 { flex-direction: column; gap: 32px; } .framer-Zmf7M .framer-h25u8v, .framer-Zmf7M .framer-11d2nzx, .framer-Zmf7M .framer-1y8bp6w, .framer-Zmf7M .framer-7ts16l, .framer-Zmf7M .framer-2sr1c8 { flex: none; width: 100%; } .framer-Zmf7M .framer-1mn7m65 { padding: 60px 16px 60px 16px; } .framer-Zmf7M .framer-16qr7um, .framer-Zmf7M .framer-18mwm4n { flex-direction: column; } .framer-Zmf7M .framer-1wunzsq, .framer-Zmf7M .framer-193klsm { height: 320px; } .framer-Zmf7M .framer-8h84y8 { padding: 80px 16px 120px 16px; } .framer-Zmf7M .framer-1erjfmq { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-Zmf7M .framer-xq5emc { padding: 32px 16px 32px 16px; } .framer-Zmf7M .framer-1ewso7q { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zmf7M .framer-1kfser1, .framer-Zmf7M .framer-16qr7um, .framer-Zmf7M .framer-18mwm4n, .framer-Zmf7M .framer-1ewso7q { gap: 0px; } .framer-Zmf7M .framer-1kfser1 > *, .framer-Zmf7M .framer-16qr7um > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Zmf7M .framer-1kfser1 > :first-child, .framer-Zmf7M .framer-16qr7um > :first-child, .framer-Zmf7M .framer-18mwm4n > :first-child { margin-top: 0px; } .framer-Zmf7M .framer-1kfser1 > :last-child, .framer-Zmf7M .framer-16qr7um > :last-child, .framer-Zmf7M .framer-18mwm4n > :last-child { margin-bottom: 0px; } .framer-Zmf7M .framer-18mwm4n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Zmf7M .framer-1ewso7q > *, .framer-Zmf7M .framer-1ewso7q > :first-child, .framer-Zmf7M .framer-1ewso7q > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3382\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pWWdntaW4\":{\"layout\":[\"fixed\",\"auto\"]},\"k_XQl4et4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"g7Bs364f4\":{\"pattern\":\":g7Bs364f4\",\"name\":\"product-info\"}}\n * @framerResponsiveScreen\n */const FrameroweXZs32Y=withCSS(Component,css,\"framer-Zmf7M\");export default FrameroweXZs32Y;FrameroweXZs32Y.displayName=\"Products\";FrameroweXZs32Y.defaultProps={height:3382,width:1600};addFonts(FrameroweXZs32Y,[{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:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_qY32TxAj1g.woff2\",weight:\"700\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_qY32TxAj1g.woff2\",weight:\"600\"},{family:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_qY32TxAj1g.woff2\",weight:\"400\"}]},...FrameshipShopifyFonts,...SmoothScrollFonts,...ComponentsBreadcrumbItemFonts,...GalleryImageGalleryFonts,...InventoryLabelFonts,...PriceLabelFonts,...ComponentsDividerFonts,...VariantButtonsFonts,...QuantityInputFonts,...AddToCartButtonFonts,...PhosphorFonts,...AccordionAccordionFonts,...ButtonUnderlineFonts,...ProductItemMainItemFonts,...ComponentsBenefitItemFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroweXZs32Y\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pWWdntaW4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k_XQl4et4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"g7Bs364f4\\\":{\\\"pattern\\\":\\\":g7Bs364f4\\\",\\\"name\\\":\\\"product-info\\\"}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3382\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["HIDDEN_CLASS", "ProductInfoType", "ProductInfoLabelComponent", "props", "type", "whenZero", "textWhenZero", "currencyFormat", "Tag", "variant", "useSelectedVariant", "inCart", "cartPrice", "cartCompareAtPrice", "useCartItem", "value", "currencyCode", "hidden", "isPriceV2", "price", "text", "formatCurrency", "p", "u", "ProductInfoLabel", "withCSS", "ProductInfoLabel_default", "addPropertyControls", "ControlType", "CurrencySymbols_default", "currencyFormatProp", "HIDDEN_CLASS", "SAMPLE_VARIANTS", "State", "alignmentMap", "VariantButtonsComponent", "props", "shopifyData", "variantOptions", "titles", "textButtons", "layout", "shopifyId", "tracksInventory", "variants", "parseShopifyData", "horizontal", "isCanvas", "RenderTarget", "selectedVariantOptions", "setSelectedVariantOption", "useProductStore", "state", "inventory", "inventoryIsLoading", "useAmountInStock", "options", "parseVariantOptions", "disabledOptionValues", "option", "disabledValues", "value", "matchingVariants", "variant", "o", "outOfStockVariants", "selectedOptions", "hasUpdatedGlobalState", "firstAvailableVariantOptions", "name", "values", "onVariantClicked", "optionName", "optionValue", "p", "u", "index", "selected", "disabled", "Button", "VariantButtons", "withCSS", "VariantButtons_default", "addPropertyControls", "ControlType", "createButtonPropertyControls", "Colors", "variantOptionsCache", "cachedResult", "result", "i", "parseShopifyId", "ShopifyDataType", "error", "State", "defaultText", "AddToCartButton", "props", "shopifyId", "tracksInventory", "variants", "parseShopifyData", "isCanvas", "RenderTarget", "state", "setState", "ye", "items", "addToCart", "useCartStore", "quantity", "selectedVariantOptions", "useProductStore", "inventory", "inventoryIsLoading", "useAmountInStock", "selectedVariant", "useSelectedVariant", "ue", "p", "Button", "window", "OPEN_CART_EVENT", "addPropertyControls", "ControlType", "createButtonPropertyControls", "Colors", "HIDDEN_CLASS", "decorationProp", "ControlType", "props", "InventoryLabelComponent", "inStock", "outOfStock", "loading", "Tag", "isCanvas", "RenderTarget", "hasAccess", "getFrameshipInfo", "delayedHasAccess", "setDelayedHasAccess", "ye", "variant", "useSelectedVariant", "inventory", "inventoryIsLoading", "useAmountInStock", "ue", "timer", "amountInStock", "hidden", "color", "text", "decoration", "onClick", "window", "UPGRADE_LINK", "p", "InventoryLabel", "withCSS", "StockLabel_default", "addPropertyControls", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "B1GQMl7za", "dh94PKFJJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerF7R0ojBID", "withCSS", "F7R0ojBID_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "borderColor", "click", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GBi9Swc4q", "tJndCeVnA", "WCgcb3OFQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1q51xnk", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_tJndCeVnA_borderBottomWidth", "_tJndCeVnA_borderLeftWidth", "_tJndCeVnA_borderRightWidth", "_tJndCeVnA_borderTopWidth", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerP5BY2DjXM", "withCSS", "P5BY2DjXM_default", "addPropertyControls", "ControlType", "addFonts", "GalleryGalleryItemFonts", "getFonts", "P5BY2DjXM_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EpS2iXyo7", "P2lnBz26D", "UEZPwfUqX", "DAOZEyqc4", "AZiJRk1LO", "JBGl1kLYl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "WCgcb3OFQ97oy4z", "args", "WCgcb3OFQpjf3ev", "WCgcb3OFQok3rqt", "WCgcb3OFQ133ot4d", "WCgcb3OFQ1in81ce", "WCgcb3OFQ3cilye", "WCgcb3OFQys9prg", "WCgcb3OFQ1aso8s7", "WCgcb3OFQ1tzjltg", "WCgcb3OFQtqd0aj", "WCgcb3OFQ1ab0rfg", "WCgcb3OFQpvk2vx", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramersO4MnPyC2", "withCSS", "sO4MnPyC2_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EnvA5UMOa", "y_msOqVNF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapd9byy3", "args", "onTap1h72vo5", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerrS37iHKxW", "withCSS", "rS37iHKxW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionAccordionRowFonts", "getFonts", "rS37iHKxW_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description1", "description2", "description3", "heading1", "heading2", "heading3", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DIUBgyHeo", "gpAZIxp8Z", "KoFvJ8TmN", "wcz8eV0nz", "fVp9cL2Q4", "WcfIsMBq2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "rS37iHKxW_default", "css", "FramerUqIacifYi", "withCSS", "UqIacifYi_default", "addPropertyControls", "ControlType", "addFonts", "AccordionAccordionRowFonts", "FrameshipShopifyFonts", "getFonts", "Frameship", "SmoothScrollFonts", "SmoothScroll_Prod_default", "ComponentsBreadcrumbItemFonts", "F7R0ojBID_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "GalleryImageGalleryFonts", "sO4MnPyC2_default", "ContainerWithOptimizedAppearEffect", "Container", "InventoryLabelFonts", "StockLabel_default", "PriceLabelFonts", "ProductInfoLabel_default", "ComponentsDividerFonts", "QQ_j71TBL_default", "VariantButtonsFonts", "VariantButtons_default", "QuantityInputFonts", "QuantityInput_default", "AddToCartButtonFonts", "AddToCartButton", "PhosphorFonts", "Icon", "AccordionAccordionFonts", "UqIacifYi_default", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "ButtonUnderlineFonts", "UgwsLGDuo_default", "ProductItemMainItemFonts", "tQtv4yYX6_default", "ContainerWithFX", "ComponentsBenefitItemFonts", "G1AsuTe0I_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "toResponsiveImage", "value", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "transition6", "animation7", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition7", "animation8", "transition8", "animation9", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "sGBmvkB0a_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "TEys7mGRK", "VIPvO9VNB", "VeFvz8dPH", "ODE11q7Qf", "LX9eur88l", "qUy1IjJwM", "Nf66GhINH", "wXlnXBpDV", "BgNnyJCrK", "JYJANKpPL", "VIPvO9VNBikWhOYhdp", "TEys7mGRKikWhOYhdp", "wXlnXBpDVikWhOYhdp", "m_KwOiC9VikWhOYhdp", "idikWhOYhdp", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "resolvedLinks1", "x", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks2", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "css", "FrameroweXZs32Y", "withCSS", "oweXZs32Y_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
