{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/U2GPATOvub8h2hYg1J98/uqKWCkJ49cOD94TpSdwT/Carousel.js", "ssg:https://framerusercontent.com/modules/EH8lEN3xKQWeVnIzCxoT/epb7kctCGv9B9yhSz1VB/ImageGallery.js", "ssg:https://framerusercontent.com/modules/hrHJM38kepGvnmA73JmL/ztZm6oip3ACKTswIvAUu/Shopify_ProductImageGallery.js", "ssg:https://framerusercontent.com/modules/IySki7zU6gj9mB2w3PpE/FzC8gOvBBHOfu3iAA1F3/Shopify_ProductVariantSelector.js", "ssg:https://framerusercontent.com/modules/sLbkDuXdCdpfHR6EbULm/b8MOhoKSPzQkkGqF59e1/Shopify_ProductAddToCart.js", "ssg:https://framerusercontent.com/modules/UVdQFTz9Bmb1enFOwFzX/sDLdYY2kCsyhyuIIQC5p/m1cVX2Xcv.js", "ssg:https://framerusercontent.com/modules/njzF2oTVvWc1mT5DsLTc/Dvdq6Y9eH0RY4ylIYn6t/uFUXIJtOy.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{animate,motion,useMotionValue}from\"framer-motion\";const transition={type:\"spring\",bounce:0};const Slider=({x,i,onDragEnd,children,totalSliders})=>/*#__PURE__*/_jsx(motion.div,{style:{...styles.slider,x,left:`${i*100}%`,right:`${i*100}%`},drag:totalSliders>1&&\"x\",dragElastic:.3,onDragEnd:onDragEnd,children:children});const Carousel=/*#__PURE__*/React.forwardRef(({children,autoPlay=true,interval=2e3,loop=true,onChange=()=>false},ref)=>{const x=useMotionValue(0);const containerRef=React.useRef(null);const[index,setIndex]=React.useState(0);const calculateNewX=()=>{var _containerRef_current;return-index*(((_containerRef_current=containerRef.current)===null||_containerRef_current===void 0?void 0:_containerRef_current.clientWidth)||0);};const handleEndDrag=(e,dragProps)=>{var _containerRef_current;const clientWidth=((_containerRef_current=containerRef.current)===null||_containerRef_current===void 0?void 0:_containerRef_current.clientWidth)||0;const{offset}=dragProps;// fix:https://github.com/jiangbo2015/framer-motion-carousel/issues/11\n// stop start slide and end slide move\nif(index+1===childrens.length&&offset.x<0||index===0&&offset.x>0){animate(x,calculateNewX(),transition);return;}if(offset.x>clientWidth/4){handlePrev();}else if(offset.x<-clientWidth/4){handleNext();}else{animate(x,calculateNewX(),transition);}};const childrens=React.Children.toArray(children);const handleNext=()=>{const idx=loop?0:index;setIndex(index+1===childrens.length?idx:index+1);};const handlePrev=()=>{const idx=loop?childrens.length-1:0;setIndex(index-1<0?idx:index-1);};React.useEffect(()=>{onChange(index);const controls=animate(x,calculateNewX(),transition);return controls.stop;},[index]);React.useEffect(()=>{if(!autoPlay){return;}const timer=setInterval(()=>handleNext(),interval);return()=>clearInterval(timer);},[handleNext,interval]);React.useImperativeHandle(ref,()=>{return{handleNext,handlePrev,setIndex};},[index]);return /*#__PURE__*/_jsx(\"div\",{ref:containerRef,style:styles.container,children:childrens.map((child,i)=>/*#__PURE__*/_jsx(Slider,{onDragEnd:handleEndDrag,totalSliders:childrens.length,x:x,i:i,children:child},i))});});const styles={container:{position:\"relative\",width:\"100%\",height:\"100%\",overflowX:\"hidden\",display:\"flex\"},slider:{width:\"100%\",height:\"100%\",display:\"inline-block\",flex:\"none\",overflow:\"hidden\"}};export default Carousel;\nexport const __FramerMetadata__ = {\"exports\":{\"CarouselRef\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useRef,useEffect}from\"react\";import{motion}from\"framer-motion\";import{cn}from\"https://framerusercontent.com/modules/eAejHXy6apg0StNmpKvK/4uA71TWP0uSyqhDERFA6/_framer_utils.js\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function ImageGallery({slides=[],thumbStyle,onChange=()=>false,activeSlide,vertical=false}){const containerRef=useRef(null);const[parentWidth,setParentWidth]=useState(0);const[parentHeight,setParentHeight]=useState(0);const{size=60,gap=8,radius=8,backgroundColor=\"#e9e9e9\",activeBorderColor=\"#000\"}=thumbStyle!==null&&thumbStyle!==void 0?thumbStyle:{};useEffect(()=>{var _containerRef_current,_containerRef_current1;var _containerRef_current_offsetWidth;setParentWidth((_containerRef_current_offsetWidth=(_containerRef_current=containerRef.current)===null||_containerRef_current===void 0?void 0:_containerRef_current.offsetWidth)!==null&&_containerRef_current_offsetWidth!==void 0?_containerRef_current_offsetWidth:0);var _containerRef_current_offsetHeight;setParentHeight((_containerRef_current_offsetHeight=(_containerRef_current1=containerRef.current)===null||_containerRef_current1===void 0?void 0:_containerRef_current1.offsetHeight)!==null&&_containerRef_current_offsetHeight!==void 0?_containerRef_current_offsetHeight:0);},[]);if(!slides.length)return null;return /*#__PURE__*/_jsx(\"div\",{style:cn(styles.thumbsWrapper),ref:containerRef,children:/*#__PURE__*/_jsx(motion.div,{style:{...styles.thumbsSlider,gap:gap,flexDirection:vertical?\"column\":\"row\",height:vertical?parentHeight:\"auto\"},drag:vertical?\"y\":\"x\",dragConstraints:{left:vertical?0:-Math.max(size*slides.length+gap*(slides.length-1)-parentWidth,0),right:0,top:vertical?-Math.max(size*slides.length+gap*(slides.length-1)-parentHeight,0):0,bottom:0},children:slides.map((slide,index)=>{const active=index===activeSlide;return /*#__PURE__*/_jsx(\"div\",{style:{...styles.thumbs,width:size,height:size,borderRadius:radius,borderColor:active?activeBorderColor:\"transparent\",backgroundColor},onClick:()=>onChange(index),children:/*#__PURE__*/_jsx(\"img\",{src:slide,style:styles.thumbs__image,draggable:\"false\"})},index);})})});}const styles={thumbsWrapper:{position:\"relative\",overflow:\"hidden\",display:\"flex\"},thumbsSlider:{display:\"flex\",alignItems:\"flex-start\"},thumbs:{position:\"relative\",flexShrink:\"0\",userSelect:\"none\",transition:\"all ease 300ms\",border:\"solid 1px transparent\",background:\"#0e0e0e\",overflow:\"hidden\"},thumbs__image:{width:\"100%\",height:\"100%\",objectFit:\"contain\",userSelect:\"none\",touchAction:\"prevent\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ImageGallery\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ImageGallery.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import queryString from\"query-string\";import Carousel from\"https://framerusercontent.com/modules/U2GPATOvub8h2hYg1J98/uqKWCkJ49cOD94TpSdwT/Carousel.js\";import ImageGallery from\"https://framerusercontent.com/modules/EH8lEN3xKQWeVnIzCxoT/epb7kctCGv9B9yhSz1VB/ImageGallery.js\";import{cn,ProductBaseControls,ConfigControls}from\"https://framerusercontent.com/modules/eAejHXy6apg0StNmpKvK/4uA71TWP0uSyqhDERFA6/_framer_utils.js\";import{useProduct}from\"https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/0fKThaOrafAWucwKdjoT/_useProduct.js\";import ComponentWrapper from\"https://framerusercontent.com/modules/hQlZBgGeLDev5WuUJA4d/W5z3USVGl6mIjAon3RMp/ComponentWrapper.js\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function Shopify_ProductImageGallery(props){var _product_images;var _props_productID;const{product,selectedVariant}=useProduct((_props_productID=props.productID)!==null&&_props_productID!==void 0?_props_productID:null,props.config);const[activeSlide,setActiveSlide]=useState(0);const carouselRef=useRef(null);const images=(product===null||product===void 0?void 0:(_product_images=product.images)===null||_product_images===void 0?void 0:_product_images.nodes)||[];const aspectRatio={\"1:1\":1,\"2:1\":2/1,\"3:2\":3/2,\"4:3\":4/3,\"16:9\":16/9,auto:undefined}[props.imageStyle.aspectRatio];useEffect(()=>{var _selectedVariant_image;const variantImage=selectedVariant===null||selectedVariant===void 0?void 0:(_selectedVariant_image=selectedVariant.image)===null||_selectedVariant_image===void 0?void 0:_selectedVariant_image.url;if(variantImage&&!!images.length){const findedIndex=images.findIndex(item=>item.url===variantImage);if(findedIndex>=0&&findedIndex!==activeSlide)carouselRef.current.setIndex(findedIndex);}},[selectedVariant]);return /*#__PURE__*/_jsx(ComponentWrapper,{style:cn(styles.container,{flexDirection:props.flexDirection,gap:props.gap}),productID:props.productID||\"EMPTY\",hidden:!product||images.length===0,config:props.config,children:()=>{var _props_flexDirection;return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:cn(styles.slide,props.imageStyle),children:/*#__PURE__*/_jsx(Carousel,{ref:carouselRef,onChange:setActiveSlide,autoPlay:false,children:images.map((item,i)=>/*#__PURE__*/_jsx(\"img\",{draggable:false,src:item.url,style:cn(styles.slideImage,{aspectRatio}),width:item.width,height:item.height,alt:item.altText},i))})}),/*#__PURE__*/_jsx(ImageGallery,{slides:product.images.nodes.map(item=>{const imgUrl=new URL(item.url);const parsed=queryString.parse(imgUrl.search);imgUrl.search=queryString.stringify({...parsed,width:props.thumbsStyle.size});return imgUrl.toString();}),vertical:(_props_flexDirection=props.flexDirection)===null||_props_flexDirection===void 0?void 0:_props_flexDirection.includes(\"row\"),thumbStyle:props.thumbsStyle,onChange:index=>{setActiveSlide(index);carouselRef.current.setIndex(index);},activeSlide:activeSlide})]});}});}Shopify_ProductImageGallery.displayName=\"Product Image Gallery\";addPropertyControls(Shopify_ProductImageGallery,{...ConfigControls,...ProductBaseControls,flexDirection:{title:\"Direction\",type:ControlType.Enum,options:[\"row\",\"column\",\"row-reverse\",\"column-reverse\"],optionTitles:[\"Row\",\"Column\",\"Row Reverse\",\"Column Reverse\"],defaultValue:\"column\"},gap:{type:ControlType.Number,defaultValue:8,min:0},imageStyle:{title:\"Image\",buttonTitle:\"Style\",type:ControlType.Object,controls:{borderRadius:{type:ControlType.BorderRadius},aspectRatio:{type:ControlType.Enum,options:[\"auto\",\"1:1\",\"2:1\",\"3:2\",\"4:3\",\"16:9\"],defaultValue:\"auto\"},backgroundColor:{type:ControlType.Color,optional:true}}},thumbsStyle:{title:\"Thumbs\",buttonTitle:\"Style\",type:ControlType.Object,controls:{size:{type:ControlType.Number,defaultValue:60,max:200,min:10},gap:{type:ControlType.Number,defaultValue:8,min:0},radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},backgroundColor:{type:ControlType.Color,optional:true},activeBorderColor:{type:ControlType.Color,defaultValue:\"#000\"}}}});const styles={container:{display:\"flex\",alignItems:\"stretch\",flex:1},slide:{display:\"flex\",flex:1,overflow:\"hidden\"},slideImage:{width:\"100%\",height:\"100%\",objectFit:\"contain\",margin:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Shopify_ProductImageGallery\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shopify_ProductImageGallery.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{cn,ProductBaseControls,ConfigControls,textProperties,isOnCanvas}from\"https://framerusercontent.com/modules/eAejHXy6apg0StNmpKvK/4uA71TWP0uSyqhDERFA6/_framer_utils.js\";import{useProduct}from\"https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/0fKThaOrafAWucwKdjoT/_useProduct.js\";import ComponentWrapper from\"https://framerusercontent.com/modules/hQlZBgGeLDev5WuUJA4d/W5z3USVGl6mIjAon3RMp/ComponentWrapper.js\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight auto\n */export default function Shopify_ProductVariantSelector(props){var _product_options;var _props_productID;const{product,selectedVariant,selectVariant}=useProduct((_props_productID=props.productID)!==null&&_props_productID!==void 0?_props_productID:null,props.config,true);const[selectedOptions,setSelectedOptions]=useState({});var _product_options_filter;const options=(_product_options_filter=product===null||product===void 0?void 0:(_product_options=product.options)===null||_product_options===void 0?void 0:_product_options.filter(item=>item.name!==\"Title\"))!==null&&_product_options_filter!==void 0?_product_options_filter:[];useEffect(()=>{if(selectedVariant){const opt={};selectedVariant===null||selectedVariant===void 0?void 0:selectedVariant.selectedOptions.forEach(item=>{opt[item.name]=item.value;});setSelectedOptions(opt);}},[selectedVariant]);useEffect(()=>{if(product){const findedVariant=product.variants.nodes.find(variant=>{let isAllSelected=true;variant.selectedOptions.forEach(i=>{if(!selectedOptions[i.name]||selectedOptions[i.name]!==i.value){isAllSelected=false;}});return isAllSelected;});if(findedVariant){selectVariant(findedVariant,null);}}},[selectedOptions,product]);return /*#__PURE__*/_jsx(ComponentWrapper,{style:cn(styles.container,props.wrapper),hidden:!product||options.length===0,productID:props.productID||\"EMPTY\",config:props.config,children:options.map(option=>/*#__PURE__*/_jsxs(\"div\",{style:styles.optionWrapper,children:[/*#__PURE__*/_jsx(\"span\",{style:cn(props.label),children:option.name}),/*#__PURE__*/_jsx(\"div\",{style:cn(styles.valuesWrapper),children:option.values.map(value=>{const isSelected=selectedOptions[option.name]===value;const animateStyle=isSelected?cn(props.selectedOption):{};return /*#__PURE__*/_jsx(motion.button,{type:\"button\",onClick:()=>{setSelectedOptions(state=>({...state,[option.name]:value}));},style:cn(styles.option,props.variant,isOnCanvas()&&animateStyle),animate:{...animateStyle},transition:{duration:.2},children:value},value);})})]},option.id))});}Shopify_ProductVariantSelector.displayName=\"Product Variant Selector\";addPropertyControls(Shopify_ProductVariantSelector,{...ConfigControls,...ProductBaseControls,wrapper:{type:ControlType.Object,buttonTitle:\"Style\",controls:{gap:{type:ControlType.Number,defaultValue:16,min:0},flexDirection:{title:\"Direction\",type:ControlType.Enum,options:[\"row\",\"column\"],optionTitles:[\"Row\",\"Column\"],defaultValue:\"column\"}}},label:{type:ControlType.Object,buttonTitle:\"Style\",controls:{display:{title:\"Visibility\",type:ControlType.Enum,options:[\"block\",\"none\"],optionTitles:[\"Visible\",\"Hidden\"],defaultValue:\"column\"},...textProperties(14,\"#919191\")}},variant:{type:ControlType.Object,buttonTitle:\"Style\",controls:{...textProperties(16,\"#666666\"),backgroundColor:{type:ControlType.Color,defaultValue:\"#F5F5F5\",optional:true},border:{type:ControlType.Border,defaultValue:{borderWidth:0}},borderRadius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},gap:{type:ControlType.Number,defaultValue:18,min:0},padding:{type:ControlType.Padding,defaultValue:\"10px 16px 10px 16px\"}}},selectedOption:{type:ControlType.Object,buttonTitle:\"Style\",controls:{color:{type:ControlType.Color,defaultValue:\"#fff\",optional:true},backgroundColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true},border:{type:ControlType.Border,defaultValue:{borderWidth:0}}}}});const styles={container:{display:\"flex\",flexWrap:\"wrap\"},option:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",cursor:\"pointer\"},optionWrapper:{display:\"flex\",flexDirection:\"column\",gap:6},valuesWrapper:{display:\"flex\",gap:8,flexWrap:\"wrap\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Shopify_ProductVariantSelector\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{cn,textProperties,ProductBaseControls,ConfigControls}from\"https://framerusercontent.com/modules/eAejHXy6apg0StNmpKvK/4uA71TWP0uSyqhDERFA6/_framer_utils.js\";import{useProduct}from\"https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/0fKThaOrafAWucwKdjoT/_useProduct.js\";import{useCart}from\"https://framerusercontent.com/modules/kEMMGb5hqGCVwEpqX70U/9iJRz66V50LRucuzp13I/_useCart.js\";import ComponentWrapper from\"https://framerusercontent.com/modules/hQlZBgGeLDev5WuUJA4d/W5z3USVGl6mIjAon3RMp/ComponentWrapper.js\";import Button,{ButtonProperties}from\"https://framerusercontent.com/modules/EoMllm11FAeAfrQZgkjQ/OTJjldvcxdTzD2VPW9rd/Button.js\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight auto\n */export default function Shopify_ProductAddToCart(props){var _props_productID;const{product,selectedProduct}=useProduct((_props_productID=props.productID)!==null&&_props_productID!==void 0?_props_productID:null,props.config);const{addToCart,actionLoading,cartError}=useCart(props.config);const handleAddToCart=async()=>{var _props_openCartEvent;const merchandiseId=(selectedProduct===null||selectedProduct===void 0?void 0:selectedProduct.selectedOption)||(product===null||product===void 0?void 0:product.variants.nodes[0].id);const quantity=selectedProduct?selectedProduct.quantity:1;const sellingPlanId=selectedProduct===null||selectedProduct===void 0?void 0:selectedProduct.sellingPlan;// find & add attribute to cart\nconst attributes=[];const productElements=document.querySelectorAll('[name^=\"product-\"]');productElements.forEach(element=>{const key=element.getAttribute(\"name\").replace(\"product-\",\"\");const value=element.value;if(value&&value!==\"\"){attributes.push({key,value});}});// finally add to cart\nawait addToCart({merchandiseId,quantity,attributes,sellingPlanId});(_props_openCartEvent=props.openCartEvent)===null||_props_openCartEvent===void 0?void 0:_props_openCartEvent.call(props);};return /*#__PURE__*/_jsxs(ComponentWrapper,{style:cn(styles.wrapper),productID:props.productID||\"EMPTY\",config:props.config,children:[/*#__PURE__*/_jsx(Button,{onClick:handleAddToCart,loading:actionLoading,...props}),cartError&&/*#__PURE__*/_jsx(motion.span,{style:cn(props.errorStyle),children:cartError})]});}Shopify_ProductAddToCart.displayName=\"Product Add To Cart\";addPropertyControls(Shopify_ProductAddToCart,{...ConfigControls,...ProductBaseControls,...ButtonProperties(\"Add to cart\"),errorStyle:{title:\"Error Style\",type:ControlType.Object,controls:textProperties(14,\"#bb0000\")},openCartEvent:{type:ControlType.EventHandler}});const styles={wrapper:{display:\"flex\",flexDirection:\"column\",gap:8}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Shopify_ProductAddToCart\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (92d6359)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-jYjtb .framer-styles-preset-1bzgi03:not(.rich-text-wrapper), .framer-jYjtb .framer-styles-preset-1bzgi03.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, #ffffff) /* {\"name\":\"Text/Primary\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }'];export const className=\"framer-jYjtb\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import ProductImageGallery from\"https://framerusercontent.com/modules/hrHJM38kepGvnmA73JmL/ztZm6oip3ACKTswIvAUu/Shopify_ProductImageGallery.js\";import ProductVariantSelector from\"https://framerusercontent.com/modules/IySki7zU6gj9mB2w3PpE/FzC8gOvBBHOfu3iAA1F3/Shopify_ProductVariantSelector.js\";import ProductAddToCart from\"https://framerusercontent.com/modules/sLbkDuXdCdpfHR6EbULm/b8MOhoKSPzQkkGqF59e1/Shopify_ProductAddToCart.js\";import Shopiframe_ProductCounter from\"https://framerusercontent.com/modules/wX4sen6GdOvT6ZMLoNql/ZnZ6CCL2x2irhDwwmLB8/Shopiframe_ProductCounter.js\";import ProductPrice from\"https://framerusercontent.com/modules/XUMZkHzkb6JRq7hdD46W/ZNjEBvlFU5A2kT222b25/Shopify_ProductPrice.js\";import Navigation from\"#framer/local/canvasComponent/qcjmy68NP/qcjmy68NP.js\";import Footer from\"#framer/local/canvasComponent/Y16LS2cNe/Y16LS2cNe.js\";import Products from\"#framer/local/collection/XduXFRyrA/XduXFRyrA.js\";import*as sharedStyle5 from\"#framer/local/css/CuNZASCoK/CuNZASCoK.js\";import*as sharedStyle from\"#framer/local/css/Dj14iDTRo/Dj14iDTRo.js\";import*as sharedStyle3 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle4 from\"#framer/local/css/iYYw4WIRq/iYYw4WIRq.js\";import*as sharedStyle8 from\"#framer/local/css/LtQ5O_ojl/LtQ5O_ojl.js\";import*as sharedStyle1 from\"#framer/local/css/m1cVX2Xcv/m1cVX2Xcv.js\";import*as sharedStyle7 from\"#framer/local/css/NPNmU_hUO/NPNmU_hUO.js\";import*as sharedStyle6 from\"#framer/local/css/qrSHwNol8/qrSHwNol8.js\";import*as sharedStyle9 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle2 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/uFUXIJtOy/uFUXIJtOy.js\";const NavigationFonts=getFonts(Navigation);const ProductImageGalleryFonts=getFonts(ProductImageGallery);const ProductPriceFonts=getFonts(ProductPrice);const ProductVariantSelectorFonts=getFonts(ProductVariantSelector);const Shopiframe_ProductCounterFonts=getFonts(Shopiframe_ProductCounter);const ProductAddToCartFonts=getFonts(ProductAddToCart);const FooterFonts=getFonts(Footer);const breakpoints={c6WOdIDne:\"(max-width: 767px)\",IotcBvfI8:\"(min-width: 768px) and (max-width: 1199px)\",pUFgPWSjh:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tx9MH\";const variantClassNames={c6WOdIDne:\"framer-v-ej5rt4\",IotcBvfI8:\"framer-v-r67r61\",pUFgPWSjh:\"framer-v-191f5rj\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"pUFgPWSjh\",Phone:\"c6WOdIDne\",Tablet:\"IotcBvfI8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pUFgPWSjh\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"uFUXIJtOy\",data:Products,type:\"Collection\"},select:[{collection:\"uFUXIJtOy\",name:\"P4XFtdxKp\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"bck87ZnYR\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"aoibnKZSR\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"oyBgDVbHd\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"EL_hXTd4c\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"efArxJD7f\",type:\"Identifier\"},{collection:\"uFUXIJtOy\",name:\"PMG6vFCgL\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"uFUXIJtOy\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5;const{style,className,layoutId,variant,EL_hXTd4c=(_getFromCurrentRouteData=getFromCurrentRouteData(\"EL_hXTd4c\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",efArxJD7f=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"efArxJD7f\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",PMG6vFCgL=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"PMG6vFCgL\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",P4XFtdxKp=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"P4XFtdxKp\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",bck87ZnYR=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"bck87ZnYR\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",aoibnKZSR=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"aoibnKZSR\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-tx9MH`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-tx9MH`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"c6WOdIDne\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"c6WOdIDne\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pUFgPWSjh\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-191f5rj\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{width:\"min(100vw, 1800px)\"},IotcBvfI8:{width:\"min(100vw, 1800px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"1200px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1stbfw3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{variant:\"BtrdPCh87\"},IotcBvfI8:{variant:\"MESY6mj0m\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"rRgmyewxy\",layoutId:\"rRgmyewxy\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"E9eZPMwYxl6VyjV0ZA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17al8zn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-catt40\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111ifar hidden-191f5rj hidden-r67r61\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2kx5eh hidden-191f5rj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CdIJSp1GZ\"},nodeId:\"m__IK4lps\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1bzgi03\",\"data-styles-preset\":\"m1cVX2Xcv\",children:\"Edward Creates\"})})})}),className:\"framer-qgblg4\",\"data-framer-name\":\"Vendor\",fonts:[\"Inter\"],name:\"Vendor\",text:EL_hXTd4c,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"/\"})}),className:\"framer-dw2jx6\",\"data-framer-name\":\"/\",fonts:[\"Inter\"],name:\"/\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Biblical Places\"})}),className:\"framer-188ux5e\",\"data-framer-name\":\"Tags\",fonts:[\"Inter\"],name:\"Tags\",text:efArxJD7f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"/\"})}),className:\"framer-1tbglgl\",\"data-framer-name\":\"/\",fonts:[\"Inter\"],name:\"/\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Poster\"})}),className:\"framer-181h7ac\",\"data-framer-name\":\"productType\",fonts:[\"Inter\"],name:\"productType\",text:PMG6vFCgL,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Display Medium\", \"Forma DJR Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\"},children:\"Garden of Eden Poster\"})}),className:\"framer-r2pbh1 hidden-191f5rj\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Forma DJR Display Medium\"],name:\"Title\",text:P4XFtdxKp,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lownmz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1th6w6-container\",\"data-framer-name\":\"Image Gallery\",name:\"Image Gallery\",children:/*#__PURE__*/_jsx(ProductImageGallery,{config:{countryIsoCode:\"US\",languageIsoCode:\"EN\",storeDomain:\"https://edwardcreates.myshopify.com/\",storefrontToken:\"c385ca8622fc0cc1c4def76806ad09d7\",testMode:false},flexDirection:\"column\",font:{},gap:8,height:\"100%\",id:\"axyctVYlp\",imageStyle:{aspectRatio:\"1:1\",borderRadius:\"0px\"},layoutId:\"axyctVYlp\",name:\"Image Gallery\",productID:bck87ZnYR,thumbsStyle:{activeBorderColor:\"rgb(0, 0, 0)\",gap:12,radius:\"0px\",size:70},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iltni2\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ntyen6 hidden-ej5rt4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CdIJSp1GZ\"},nodeId:\"AZFcH4DBw\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1bzgi03\",\"data-styles-preset\":\"m1cVX2Xcv\",children:\"Edward Creates\"})})})}),className:\"framer-1u4n8rr\",\"data-framer-name\":\"Vendor\",fonts:[\"Inter\"],name:\"Vendor\",text:EL_hXTd4c,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"/\"})}),className:\"framer-1guf8fb\",\"data-framer-name\":\"/\",fonts:[\"Inter\"],name:\"/\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Biblical Places\"})}),className:\"framer-w2opn5\",\"data-framer-name\":\"Tags\",fonts:[\"Inter\"],name:\"Tags\",text:efArxJD7f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"/\"})}),className:\"framer-180sy9a\",\"data-framer-name\":\"/\",fonts:[\"Inter\"],name:\"/\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1iwj2u7\",\"data-styles-preset\":\"Dj14iDTRo\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Poster\"})}),className:\"framer-1q9njcg\",\"data-framer-name\":\"productType\",fonts:[\"Inter\"],name:\"productType\",text:PMG6vFCgL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1975d0l\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IotcBvfI8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Display Medium\", \"Forma DJR Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\"},children:\"Garden of Eden Poster\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm1hIERKUiBEaXNwbGF5IE1lZGl1bQ==\",\"--framer-font-family\":'\"Forma DJR Display Medium\", \"Forma DJR Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\"},children:\"Garden of Eden Poster\"})}),className:\"framer-oh8spy hidden-ej5rt4\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Forma DJR Display Medium\"],name:\"Title\",text:P4XFtdxKp,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-79nglz-container\",\"data-framer-name\":\"Price\",name:\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{priceStyle:{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:25,padding:\"0px\"}},IotcBvfI8:{priceStyle:{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:16,padding:\"0px\"}}},children:/*#__PURE__*/_jsx(ProductPrice,{comparePriceStyle:{color:\"var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166))\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:16,hidden:false,padding:\"0px\"},config:{countryIsoCode:\"US\",languageIsoCode:\"EN\",storeDomain:\"https://edwardcreates.myshopify.com/\",storefrontToken:\"c385ca8622fc0cc1c4def76806ad09d7\",testMode:false},font:{},height:\"100%\",id:\"qfBDscsEB\",layoutId:\"qfBDscsEB\",name:\"Price\",priceStyle:{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:20,padding:\"0px\"},productID:bck87ZnYR,soldOutStyle:{backgroundColor:\"rgb(0, 0, 0)\",border:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"20px\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,hidden:false,padding:\"2px 8px 2px 8px\"},soldOutTitle:\"Sold out\",startFromTitle:\"Start from\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uaai2s-container\",\"data-framer-name\":\"Variant Selector\",name:\"Variant Selector\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{label:{color:\"var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166))\",display:\"block\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:14,padding:\"0px 0px 5px 0px\"},variant:{backgroundColor:\"rgba(245, 245, 245, 0)\",border:{borderColor:'var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166)) /* {\"name\":\"Text/Secondary\"} */',borderStyle:\"solid\",borderWidth:1},borderRadius:\"0px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:18,gap:18,padding:\"6px 12px 6px 12px\"}},IotcBvfI8:{label:{color:\"var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166))\",display:\"block\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:12,padding:\"0px 0px 4px 0px\"},variant:{backgroundColor:\"rgba(245, 245, 245, 0)\",border:{borderColor:'var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166)) /* {\"name\":\"Text/Secondary\"} */',borderStyle:\"solid\",borderWidth:1},borderRadius:\"0px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:15,gap:18,padding:\"6px 12px 6px 12px\"}}},children:/*#__PURE__*/_jsx(ProductVariantSelector,{config:{countryIsoCode:\"US\",languageIsoCode:\"EN\",storeDomain:\"https://edwardcreates.myshopify.com/\",storefrontToken:\"c385ca8622fc0cc1c4def76806ad09d7\",testMode:false},font:{},height:\"100%\",id:\"JsNZs0RnX\",label:{color:\"var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166))\",display:\"block\",font:{fontFamily:'\"Neue Machina Medium\", \"Neue Machina Medium Placeholder\", sans-serif'},fontSize:13,padding:\"0px\"},layoutId:\"JsNZs0RnX\",name:\"Variant Selector\",productID:bck87ZnYR,selectedOption:{backgroundColor:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",border:{borderColor:\"rgba(0, 0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},color:\"var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0))\"},variant:{backgroundColor:\"rgba(245, 245, 245, 0)\",border:{borderColor:'var(--token-ca826c3f-3d1b-4c03-a371-5bf026e68e58, rgb(166, 166, 166)) /* {\"name\":\"Text/Secondary\"} */',borderStyle:\"solid\",borderWidth:1},borderRadius:\"0px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:16,gap:18,padding:\"10px 16px 10px 16px\"},width:\"100%\",wrapper:{flexDirection:\"row\",gap:16}})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7l21lh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{styles:{backgroundColor:\"rgba(0, 0, 0, 0)\",border:{borderColor:\"#DBDBDB\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"24px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{},fontSize:17,gap:14,iconColor:\"rgb(145, 145, 145)\",iconSize:21,padding:\"5px 15px 5px 16px\"}},IotcBvfI8:{styles:{backgroundColor:\"rgba(0, 0, 0, 0)\",border:{borderColor:\"#DBDBDB\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"24px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{},fontSize:14,gap:9,iconColor:\"rgb(145, 145, 145)\",iconSize:13,padding:\"5px 10px 5px 10px\"}}},children:/*#__PURE__*/_jsx(Shopiframe_ProductCounter,{height:\"100%\",id:\"B5c2tKfrq\",layoutId:\"B5c2tKfrq\",styles:{backgroundColor:\"rgba(0, 0, 0, 0)\",border:{borderColor:\"#DBDBDB\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"24px\",color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\",font:{},fontSize:16,gap:14,iconColor:\"rgb(145, 145, 145)\",iconSize:16,padding:\"6px 14px 6px 14px\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:aoibnKZSR,className:\"framer-15dbq2u\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-k372go\",h4:\"framer-styles-preset-1sb5no8\",h5:\"framer-styles-preset-ufsm42\",h6:\"framer-styles-preset-1pfeetb\",p:\"framer-styles-preset-u934wi\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7w31bb-container\",\"data-framer-name\":\"Add to Cart\",name:\"Add to Cart\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{style:{border:{borderBottomWidth:0,borderColor:\"#000\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"0px\",color:\"var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:20,padding:\"14px 20px 14px 20px\"}},IotcBvfI8:{style:{border:{borderBottomWidth:0,borderColor:\"#000\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"0px\",color:\"var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:16,padding:\"10px 20px 10px 20px\"}}},children:/*#__PURE__*/_jsx(ProductAddToCart,{buttonComponent:[],buttonType:\"Default\",buttonVariants:{default:\"Default\",disabled:\"Disabled\",loading:\"Loading\"},config:{countryIsoCode:\"US\",languageIsoCode:\"EN\",storeDomain:\"https://edwardcreates.myshopify.com/\",storefrontToken:\"c385ca8622fc0cc1c4def76806ad09d7\",testMode:false},errorStyle:{color:\"rgb(187, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,padding:\"0px\"},font:{},height:\"100%\",hoverStyle:{backgroundColor:\"rgb(0, 0, 0)\",border:{borderColor:\"#fff\",borderStyle:\"solid\",borderWidth:1},color:\"var(--token-d436b889-82c9-42d7-ad52-8a334bbb46e0, rgb(255, 255, 255))\"},id:\"lWc5yJiGh\",label:\"Add to cart\",layoutId:\"lWc5yJiGh\",name:\"Add to Cart\",productID:bck87ZnYR,style:{border:{borderBottomWidth:0,borderColor:\"#000\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"0px\",color:\"var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0))\",font:{fontFamily:'\"Forma DJR Text Medium\", \"Forma DJR Text Medium Placeholder\", sans-serif'},fontSize:22,padding:\"10px 20px 10px 20px\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{y:1570},IotcBvfI8:{y:1332.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:158,width:\"1200px\",y:1379.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i1duls-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c6WOdIDne:{variant:\"tuwDi15gg\"},IotcBvfI8:{variant:\"osQELfac3\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UVRPJuhba\",layoutId:\"UVRPJuhba\",style:{width:\"100%\"},variant:\"ieQu9z9wd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-tx9MH { background: var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0)) /* {\"name\":\"Background\"} */; }`,\".framer-tx9MH.framer-12s0h3i, .framer-tx9MH .framer-12s0h3i { display: block; }\",\".framer-tx9MH.framer-191f5rj { align-content: center; align-items: center; background-color: var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tx9MH .framer-1stbfw3-container { flex: none; height: auto; max-width: 1800px; position: relative; width: 1200px; z-index: 10; }\",\".framer-tx9MH .framer-17al8zn { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1500px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-tx9MH .framer-catt40 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tx9MH .framer-111ifar { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-tx9MH .framer-2kx5eh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 358px; }\",\".framer-tx9MH .framer-qgblg4, .framer-tx9MH .framer-dw2jx6, .framer-tx9MH .framer-188ux5e, .framer-tx9MH .framer-1tbglgl, .framer-tx9MH .framer-181h7ac, .framer-tx9MH .framer-1u4n8rr, .framer-tx9MH .framer-1guf8fb, .framer-tx9MH .framer-w2opn5, .framer-tx9MH .framer-180sy9a, .framer-tx9MH .framer-1q9njcg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tx9MH .framer-r2pbh1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 358px; word-break: break-word; word-wrap: break-word; }\",\".framer-tx9MH .framer-lownmz { 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-tx9MH .framer-1th6w6-container, .framer-tx9MH .framer-79nglz-container, .framer-tx9MH .framer-uaai2s-container, .framer-tx9MH .framer-7l21lh-container, .framer-tx9MH .framer-7w31bb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tx9MH .framer-iltni2 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tx9MH .framer-ntyen6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tx9MH .framer-1975d0l { 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: flex-start; max-width: 600px; padding: 0px; position: relative; width: 100%; }\",\".framer-tx9MH .framer-oh8spy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tx9MH .framer-15dbq2u { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tx9MH .framer-i1duls-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tx9MH.framer-191f5rj, .framer-tx9MH .framer-catt40, .framer-tx9MH .framer-111ifar, .framer-tx9MH .framer-2kx5eh, .framer-tx9MH .framer-lownmz, .framer-tx9MH .framer-iltni2, .framer-tx9MH .framer-ntyen6, .framer-tx9MH .framer-1975d0l { gap: 0px; } .framer-tx9MH.framer-191f5rj > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-tx9MH.framer-191f5rj > :first-child, .framer-tx9MH .framer-111ifar > :first-child, .framer-tx9MH .framer-lownmz > :first-child, .framer-tx9MH .framer-iltni2 > :first-child, .framer-tx9MH .framer-1975d0l > :first-child { margin-top: 0px; } .framer-tx9MH.framer-191f5rj > :last-child, .framer-tx9MH .framer-111ifar > :last-child, .framer-tx9MH .framer-lownmz > :last-child, .framer-tx9MH .framer-iltni2 > :last-child, .framer-tx9MH .framer-1975d0l > :last-child { margin-bottom: 0px; } .framer-tx9MH .framer-catt40 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tx9MH .framer-catt40 > :first-child, .framer-tx9MH .framer-2kx5eh > :first-child, .framer-tx9MH .framer-ntyen6 > :first-child { margin-left: 0px; } .framer-tx9MH .framer-catt40 > :last-child, .framer-tx9MH .framer-2kx5eh > :last-child, .framer-tx9MH .framer-ntyen6 > :last-child { margin-right: 0px; } .framer-tx9MH .framer-111ifar > *, .framer-tx9MH .framer-lownmz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tx9MH .framer-2kx5eh > *, .framer-tx9MH .framer-ntyen6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-tx9MH .framer-iltni2 > *, .framer-tx9MH .framer-1975d0l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-tx9MH { background: var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0)) /* {\"name\":\"Background\"} */; } .framer-tx9MH.framer-191f5rj { width: 768px; } .framer-tx9MH .framer-1stbfw3-container { width: 100%; } .framer-tx9MH .framer-1975d0l { gap: 21px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tx9MH .framer-1975d0l { gap: 0px; } .framer-tx9MH .framer-1975d0l > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-tx9MH .framer-1975d0l > :first-child { margin-top: 0px; } .framer-tx9MH .framer-1975d0l > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-tx9MH { background: var(--token-370a7263-3c52-4384-bfa1-6e00d5c8156d, rgb(0, 0, 0)) /* {\"name\":\"Background\"} */; } .framer-tx9MH.framer-191f5rj { width: 390px; } .framer-tx9MH .framer-1stbfw3-container, .framer-tx9MH .framer-7w31bb-container { width: 100%; } .framer-tx9MH .framer-17al8zn { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); padding: 0px; } .framer-tx9MH .framer-catt40 { flex-direction: column; gap: 19px; height: auto; } .framer-tx9MH .framer-111ifar { flex: none; height: 57px; width: 100%; } .framer-tx9MH .framer-lownmz { flex: none; width: 100%; } .framer-tx9MH .framer-iltni2 { height: auto; } .framer-tx9MH .framer-1975d0l { gap: 28px; padding: 0px 16px 0px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tx9MH .framer-catt40, .framer-tx9MH .framer-1975d0l { gap: 0px; } .framer-tx9MH .framer-catt40 > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-tx9MH .framer-catt40 > :first-child, .framer-tx9MH .framer-1975d0l > :first-child { margin-top: 0px; } .framer-tx9MH .framer-catt40 > :last-child, .framer-tx9MH .framer-1975d0l > :last-child { margin-bottom: 0px; } .framer-tx9MH .framer-1975d0l > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1257\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IotcBvfI8\":{\"layout\":[\"fixed\",\"auto\"]},\"c6WOdIDne\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameruFUXIJtOy=withCSS(Component,css,\"framer-tx9MH\");export default FrameruFUXIJtOy;FrameruFUXIJtOy.displayName=\"Products\";FrameruFUXIJtOy.defaultProps={height:1257,width:1200};addFonts(FrameruFUXIJtOy,[{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:\"Forma DJR Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/DsHLnPY410aXjL2fqMiY7TKBN0M.woff2\"},{family:\"Neue Machina Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/utXBK4mKHjvT6A4kvdgvgWjQ.woff2\"},{family:\"Forma DJR Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/xVcg5O6QVOFcLgu5AbxU9sqwwQs.woff2\"}]},...NavigationFonts,...ProductImageGalleryFonts,...ProductPriceFonts,...ProductVariantSelectorFonts,...Shopiframe_ProductCounterFonts,...ProductAddToCartFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruFUXIJtOy\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"1257\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IotcBvfI8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c6WOdIDne\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["transition", "Slider", "x", "i", "onDragEnd", "children", "totalSliders", "p", "motion", "styles", "Carousel", "Y", "autoPlay", "interval", "loop", "onChange", "ref", "useMotionValue", "containerRef", "pe", "index", "setIndex", "ye", "calculateNewX", "_containerRef_current", "handleEndDrag", "e", "dragProps", "clientWidth", "offset", "childrens", "animate", "handlePrev", "handleNext", "j", "idx", "ue", "timer", "ce", "child", "Carousel_default", "ImageGallery", "slides", "thumbStyle", "onChange", "activeSlide", "vertical", "containerRef", "pe", "parentWidth", "setParentWidth", "ye", "parentHeight", "setParentHeight", "size", "gap", "radius", "backgroundColor", "activeBorderColor", "ue", "_containerRef_current", "_containerRef_current1", "_containerRef_current_offsetWidth", "_containerRef_current_offsetHeight", "p", "cn", "styles", "motion", "slide", "index", "active", "Shopify_ProductImageGallery", "props", "_product_images", "_props_productID", "product", "selectedVariant", "useProduct", "activeSlide", "setActiveSlide", "ye", "carouselRef", "pe", "images", "aspectRatio", "ue", "_selectedVariant_image", "variantImage", "findedIndex", "item", "p", "ComponentWrapper", "cn", "styles", "_props_flexDirection", "u", "l", "Carousel_default", "i", "ImageGallery", "imgUrl", "parsed", "n", "index", "addPropertyControls", "ConfigControls", "ProductBaseControls", "ControlType", "Shopify_ProductVariantSelector", "props", "_product_options", "_props_productID", "product", "selectedVariant", "selectVariant", "useProduct", "selectedOptions", "setSelectedOptions", "ye", "_product_options_filter", "options", "item", "ue", "opt", "findedVariant", "variant", "isAllSelected", "i", "p", "ComponentWrapper", "cn", "styles", "option", "u", "value", "animateStyle", "motion", "state", "isOnCanvas", "addPropertyControls", "ConfigControls", "ProductBaseControls", "ControlType", "textProperties", "Shopify_ProductAddToCart", "props", "_props_productID", "product", "selectedProduct", "useProduct", "addToCart", "actionLoading", "cartError", "useCart", "handleAddToCart", "_props_openCartEvent", "merchandiseId", "quantity", "sellingPlanId", "attributes", "element", "key", "value", "u", "ComponentWrapper", "cn", "styles", "p", "Button", "motion", "addPropertyControls", "ConfigControls", "ProductBaseControls", "ButtonProperties", "ControlType", "textProperties", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "qcjmy68NP_default", "ProductImageGalleryFonts", "Shopify_ProductImageGallery", "ProductPriceFonts", "Shopify_ProductPrice", "ProductVariantSelectorFonts", "Shopify_ProductVariantSelector", "Shopiframe_ProductCounterFonts", "Shopiframe_ProductCounter", "ProductAddToCartFonts", "Shopify_ProductAddToCart", "FooterFonts", "Y16LS2cNe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "XduXFRyrA_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "style", "className", "layoutId", "variant", "EL_hXTd4c", "efArxJD7f", "PMG6vFCgL", "P4XFtdxKp", "bck87ZnYR", "aoibnKZSR", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "Link", "css", "FrameruFUXIJtOy", "withCSS", "uFUXIJtOy_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
