{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/BLwmPIbJiyjWVcrc52Zc/HU5kteBFW69ma7j7N4xV/TYY09zBjI.js", "ssg:https://framerusercontent.com/modules/zUvDzaxk3GrXSTxwKzuD/9ftXprTv7KKzCUUVAUxL/YNjaaO8CA.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e074804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"rXphzs2Dy\"];const serializationHash=\"framer-ZI2JE\";const variantClassNames={rXphzs2Dy:\"framer-v-1e09ot\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rXphzs2Dy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1e09ot\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rXphzs2Dy\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-470311dc-ecb1-4ea7-94b5-3bfc5ca7b39a, rgb(140, 125, 85))\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12j59kg-container\",layoutDependency:layoutDependency,layoutId:\"WFxZProct-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"WFxZProct\",intervalControl:4,itemAmount:1,layoutId:\"WFxZProct\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxiz8g\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"zFFyGj5eG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1ef5ea9-cad1-4f89-913a-2d08116f04b3, rgb(255, 255, 255)))\"},children:[\"Now accepting custom orders at\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7S2FuaXQtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7S2FuaXQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"FURE Manufactory \"})]})}),className:\"framer-q9ajll\",fonts:[\"GF;Kanit-regular\",\"GF;Kanit-500\",\"GF;Kanit-600\"],layoutDependency:layoutDependency,layoutId:\"fH3x9vSeX\",style:{\"--extracted-r6o4lv\":\"var(--token-a1ef5ea9-cad1-4f89-913a-2d08116f04b3, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgbv2\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"gcjjFq2sq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1ef5ea9-cad1-4f89-913a-2d08116f04b3, rgb(255, 255, 255)))\"},children:[\"See what's happening behind the scenes at \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7S2FuaXQtNjAw\",\"--framer-font-weight\":\"600\"},children:\"FURE Studio\"})]})}),className:\"framer-noi5mn\",fonts:[\"GF;Kanit-regular\",\"GF;Kanit-600\"],layoutDependency:layoutDependency,layoutId:\"jKToARp8t\",style:{\"--extracted-r6o4lv\":\"var(--token-a1ef5ea9-cad1-4f89-913a-2d08116f04b3, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:50,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZI2JE.framer-d59xb, .framer-ZI2JE .framer-d59xb { display: block; }\",\".framer-ZI2JE.framer-1e09ot { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-ZI2JE .framer-12j59kg-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-ZI2JE .framer-1gxiz8g, .framer-ZI2JE .framer-rgbv2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZI2JE .framer-q9ajll, .framer-ZI2JE .framer-noi5mn { flex: none; height: 100%; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZI2JE.framer-1e09ot, .framer-ZI2JE .framer-1gxiz8g, .framer-ZI2JE .framer-rgbv2 { gap: 0px; } .framer-ZI2JE.framer-1e09ot > *, .framer-ZI2JE .framer-1gxiz8g > *, .framer-ZI2JE .framer-rgbv2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZI2JE.framer-1e09ot > :first-child, .framer-ZI2JE .framer-1gxiz8g > :first-child, .framer-ZI2JE .framer-rgbv2 > :first-child { margin-left: 0px; } .framer-ZI2JE.framer-1e09ot > :last-child, .framer-ZI2JE .framer-1gxiz8g > :last-child, .framer-ZI2JE .framer-rgbv2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTYY09zBjI=withCSS(Component,css,\"framer-ZI2JE\");export default FramerTYY09zBjI;FramerTYY09zBjI.displayName=\"Brands Ribbon/Carousel\";FramerTYY09zBjI.defaultProps={height:24,width:1200};addFonts(FramerTYY09zBjI,[{explicitInter:true,fonts:[{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKZ-Go6G5tXcoaXEQGodLxA.woff2\",weight:\"400\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5mOCWlX6BJNUJy.woff2\",weight:\"500\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5KPyWlX6BJNUJy.woff2\",weight:\"600\"}]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTYY09zBjI\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TYY09zBjI.map", "// Generated by Framer (66beb72)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/EcXNYYaxWeW5i6jITrXc/WabKib7OFmyy9mPK6IOx/vvfY9AIXi.js\";import NavigationFeaturedImage from\"https://framerusercontent.com/modules/HJ8XNatId1uqINGoNRoI/MfxBWskXFGqLRq6OnnPA/dobe1DFyP.js\";import NavigationIcons from\"https://framerusercontent.com/modules/5PwHmOsXOAzyQlKp4fqd/m4AXZjzWAA9j6GSmYJNH/wpxhZnHsK.js\";const NavigationIconsFonts=getFonts(NavigationIcons);const NavigationFeaturedImageFonts=getFonts(NavigationFeaturedImage);const cycleOrder=[\"dl7rhKlnV\",\"mQ3kW17oe\",\"F9l94oYOD\",\"dwaqpYz0D\",\"DoVUl9XJq\",\"i5czuJoCW\",\"GjyaY2qTw\"];const serializationHash=\"framer-598r2\";const variantClassNames={dl7rhKlnV:\"framer-v-1ecr1qk\",DoVUl9XJq:\"framer-v-jik34c\",dwaqpYz0D:\"framer-v-1cfmnlx\",F9l94oYOD:\"framer-v-1iq6crs\",GjyaY2qTw:\"framer-v-q8j56y\",i5czuJoCW:\"framer-v-pjai4c\",mQ3kW17oe:\"framer-v-1jts7v9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Most Loved\":\"DoVUl9XJq\",\"New In\":\"dwaqpYz0D\",About:\"GjyaY2qTw\",Collections:\"F9l94oYOD\",Default:\"dl7rhKlnV\",Discover:\"i5czuJoCW\",Products:\"mQ3kW17oe\"};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:\"dl7rhKlnV\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dl7rhKlnV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1neda0o=activeVariantCallback(async(...args)=>{setVariant(\"mQ3kW17oe\");});const onMouseEnterukfpb6=activeVariantCallback(async(...args)=>{setVariant(\"F9l94oYOD\");});const onMouseEnter179g6hw=activeVariantCallback(async(...args)=>{setVariant(\"dwaqpYz0D\");});const onMouseLeave50am96=activeVariantCallback(async(...args)=>{setVariant(\"dl7rhKlnV\");});const onMouseEnter40s3ne=activeVariantCallback(async(...args)=>{setVariant(\"DoVUl9XJq\");});const onMouseEnterr6bs66=activeVariantCallback(async(...args)=>{setVariant(\"i5czuJoCW\");});const onMouseEnter4x93fg=activeVariantCallback(async(...args)=>{setVariant(\"GjyaY2qTw\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"mQ3kW17oe\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"F9l94oYOD\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"i5czuJoCW\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"GjyaY2qTw\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ecr1qk\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"dl7rhKlnV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a1ef5ea9-cad1-4f89-913a-2d08116f04b3, rgb(255, 255, 255))\",...style},...addPropertyOverrides({DoVUl9XJq:{\"data-framer-name\":\"Most Loved\"},dwaqpYz0D:{\"data-framer-name\":\"New In\"},F9l94oYOD:{\"data-framer-name\":\"Collections\"},GjyaY2qTw:{\"data-framer-name\":\"About\"},i5czuJoCW:{\"data-framer-name\":\"Discover\"},mQ3kW17oe:{\"data-framer-name\":\"Products\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2yh04\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"PBWVvkxQO\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lw3v3q framer-17hfp1n\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"LmB2frpm7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jan9qp\",\"data-framer-name\":\"Logo_Main\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xS18R4eMs\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss3699877135_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:3699877135,title:\"FURE Logo\",withExternalLayout:true,...addPropertyOverrides({DoVUl9XJq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727},dwaqpYz0D:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727},F9l94oYOD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727},GjyaY2qTw:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727},i5czuJoCW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727},mQ3kW17oe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142 36\"><g transform=\"translate(0 0)\" id=\"ss12289811727_1\"><path d=\"M 0 0 L 141.953 0 L 141.953 36 L 0 36 Z\" fill=\"transparent\"></path><path d=\"M 98.482 0 L 98.482 9.817 L 128.027 9.817 L 128.027 0 Z M 0 0.004 L 0 9.821 L 29.545 9.821 L 29.545 0.004 L 0 0.004 Z M 32.827 0.004 L 32.827 9.821 L 62.372 9.821 L 62.372 0.004 L 32.827 0.004 Z M 65.655 0.004 L 65.655 9.821 L 80.427 9.821 C 83.147 9.821 85.351 9.728 85.351 11.457 C 85.351 13.187 83.147 13.094 80.427 13.094 L 65.655 13.094 L 65.655 36 L 75.503 36 L 75.503 22.911 L 76.67 22.911 L 85.351 36 L 95.2 36 L 86.116 22.305 C 91.45 21.044 95.2 17.983 95.2 11.719 C 95.2 3.4 88.584 -0.14 80.427 0.004 Z M 0 13.094 L 0 36 L 9.848 36 L 9.848 22.911 L 29.545 22.911 L 29.545 13.094 Z M 32.827 13.094 L 32.827 21.275 C 32.827 26.535 35.643 31.397 40.214 34.027 C 44.784 36.658 50.416 36.658 54.986 34.027 C 59.557 31.397 62.372 26.535 62.372 21.275 L 62.372 13.094 Z M 98.482 13.089 L 98.482 22.906 L 128.027 22.906 L 128.027 13.089 Z M 98.482 26.179 L 98.482 35.996 L 128.027 35.996 L 128.027 26.179 Z M 137.039 9.817 C 134.305 9.817 132.124 7.633 132.124 4.908 C 132.124 2.174 134.305 0 137.039 0 C 139.782 0 141.953 2.174 141.953 4.908 C 141.953 7.633 139.782 9.817 137.039 9.817 Z M 137.039 8.716 C 139.182 8.716 140.877 7.027 140.877 4.908 C 140.877 2.781 139.182 1.101 137.039 1.101 C 134.904 1.101 133.201 2.781 133.201 4.908 C 133.201 7.026 134.904 8.716 137.039 8.716 Z M 136.14 7.12 L 135.129 7.12 L 135.129 2.51 L 137.479 2.51 C 138.442 2.51 139.135 3.117 139.135 3.957 C 139.135 4.675 138.76 5.17 138.087 5.347 L 139.341 7.12 L 138.124 7.12 L 136.973 5.487 L 136.14 5.487 L 136.14 7.12 Z M 136.14 3.406 L 136.14 4.647 L 137.216 4.647 C 137.768 4.647 138.031 4.451 138.031 4.013 C 138.031 3.611 137.768 3.406 137.234 3.406 L 136.14 3.406 Z\" fill=\"var(--token-24aec491-3dc7-428b-b160-21ca0c19cf48, rgb(174, 144, 63)) /* {&quot;name&quot;:&quot;Light Accent&quot;} */\"></path></g></svg>',svgContentId:12289811727}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1re3a6p\",\"data-framer-name\":\"Menu items\",layoutDependency:layoutDependency,layoutId:\"J5ppwK0Ch\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZgI_t0BKH\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15xksik framer-17hfp1n\",\"data-framer-name\":\"Products\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mMByqbaUW\",onMouseEnter:onMouseEnter1neda0o,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{mQ3kW17oe:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Products\"})}),className:\"framer-fplb9u\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"xzX3qaCPh\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yj0m7k\",\"data-framer-name\":\"Collections\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gObcQC7uO\",onMouseEnter:onMouseEnterukfpb6,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{F9l94oYOD:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Collections\"})}),className:\"framer-tak1o7\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"Sb2tGAbvK\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vOegXo1cu\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-48fzvf framer-17hfp1n\",\"data-framer-name\":\"New Arrivals\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gYOfy2IMS\",onMouseEnter:onMouseEnter179g6hw,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{dwaqpYz0D:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},...addPropertyOverrides({dwaqpYz0D:{onMouseLeave:onMouseLeave50am96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"New In\"})}),className:\"framer-uc0dvh\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"c_9Y35AoB\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Il_qV8WhR\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-iovwsp framer-17hfp1n\",\"data-framer-name\":\"Bestsellers\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vEN4s80Bp\",onMouseEnter:onMouseEnter40s3ne,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{DoVUl9XJq:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},...addPropertyOverrides({DoVUl9XJq:{onMouseLeave:onMouseLeave50am96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Most Loved\"})}),className:\"framer-3ac4ln\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"hl7BSpnGl\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vheyue\",\"data-framer-name\":\"Brands\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hbykxIXg1\",onMouseEnter:onMouseEnterr6bs66,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{i5czuJoCW:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Discover\"})}),className:\"framer-18ipcg5\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"OHuwu2N0M\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fFqwrDzIo\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11vdyxi framer-17hfp1n\",\"data-framer-name\":\"Brands\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DKpG_W1S9\",onMouseEnter:onMouseEnter4x93fg,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{GjyaY2qTw:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\",\"--framer-text-transform\":\"uppercase\"},children:\"About\"})}),className:\"framer-c4s655\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"nODYaoDbu\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q9e8z7\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"aoN3IyjER\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hbfpjo-container\",layoutDependency:layoutDependency,layoutId:\"Ghc38ynPm-container\",children:/*#__PURE__*/_jsx(NavigationIcons,{BAb0wXZDq:\"https://wa.me/917021475522\",GhQVSN9Pt:\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\",height:\"100%\",id:\"Ghc38ynPm\",layoutId:\"Ghc38ynPm\",style:{height:\"100%\",width:\"100%\"},VMyaNNnBH:\"ChatsCircle\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yvwq0v-container\",layoutDependency:layoutDependency,layoutId:\"cTKDSuWP1-container\",children:/*#__PURE__*/_jsx(NavigationIcons,{BAb0wXZDq:\"tel:917021475522\u202C\",GhQVSN9Pt:\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\",height:\"100%\",id:\"cTKDSuWP1\",layoutId:\"cTKDSuWP1\",style:{height:\"100%\",width:\"100%\"},VMyaNNnBH:\"Phone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yajw9g-container\",layoutDependency:layoutDependency,layoutId:\"uQMObU2zf-container\",children:/*#__PURE__*/_jsx(NavigationIcons,{BAb0wXZDq:\"mailto:hello@fure.in\",GhQVSN9Pt:\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\",height:\"100%\",id:\"uQMObU2zf\",layoutId:\"uQMObU2zf\",style:{height:\"100%\",width:\"100%\"},VMyaNNnBH:\"Envelope\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1899g38-container\",layoutDependency:layoutDependency,layoutId:\"WqHG0guON-container\",children:/*#__PURE__*/_jsx(NavigationIcons,{BAb0wXZDq:\"https://www.instagram.com/fure.in\",GhQVSN9Pt:\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\",height:\"100%\",id:\"WqHG0guON\",layoutId:\"WqHG0guON\",style:{height:\"100%\",width:\"100%\"},VMyaNNnBH:\"InstagramLogo\",width:\"100%\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9uyz64\",\"data-framer-name\":\"Products Dropdown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JwXzrTZA1\",onMouseLeave:onMouseLeave50am96,style:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wwf3b0\",layoutDependency:layoutDependency,layoutId:\"Mvnj0z84l\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-60vkst\",layoutDependency:layoutDependency,layoutId:\"HjpU4iKMK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zyjsbe\",layoutDependency:layoutDependency,layoutId:\"cD85ZoIqc\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13wa77p framer-17hfp1n\",\"data-framer-name\":\"Logo_Main\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OqJEyCANC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 16\"><g transform=\"translate(0 0)\" id=\"ss812802739_1\"><path d=\"M 0 0 L 62.979 0 L 62.979 16 L 0 16 Z\" fill=\"transparent\"></path><path d=\"M 43.693 0 L 43.693 4.363 L 56.801 4.363 L 56.801 0 Z M 0 0.002 L 0 4.365 L 13.108 4.365 L 13.108 0.002 L 0 0.002 Z M 14.564 0.002 L 14.564 4.365 L 27.672 4.365 L 27.672 0.002 L 14.564 0.002 Z M 29.129 0.002 L 29.129 4.365 L 35.683 4.365 C 36.889 4.365 37.867 4.324 37.867 5.092 C 37.867 5.861 36.889 5.819 35.683 5.819 L 29.129 5.819 L 29.129 16 L 33.498 16 L 33.498 10.182 L 34.015 10.182 L 37.867 16 L 42.236 16 L 38.206 9.913 C 40.573 9.353 42.236 7.992 42.236 5.209 C 42.236 1.511 39.302 -0.062 35.683 0.002 Z M 0 5.819 L 0 16 L 4.369 16 L 4.369 10.182 L 13.108 10.182 L 13.108 5.819 Z M 14.564 5.819 L 14.564 9.455 C 14.564 11.794 15.813 13.954 17.841 15.123 C 19.869 16.292 22.368 16.292 24.395 15.123 C 26.423 13.954 27.672 11.794 27.672 9.455 L 27.672 5.819 Z M 43.693 5.818 L 43.693 10.181 L 56.801 10.181 L 56.801 5.818 Z M 43.693 11.635 L 43.693 15.998 L 56.801 15.998 L 56.801 11.635 Z M 60.799 4.363 C 59.586 4.363 58.618 3.392 58.618 2.181 C 58.618 0.966 59.586 0 60.799 0 C 62.016 0 62.979 0.966 62.979 2.181 C 62.979 3.392 62.016 4.363 60.799 4.363 Z M 60.799 3.874 C 61.75 3.874 62.502 3.123 62.502 2.181 C 62.502 1.236 61.75 0.489 60.799 0.489 C 59.852 0.489 59.096 1.236 59.096 2.181 C 59.096 3.123 59.852 3.874 60.799 3.874 Z M 60.4 3.164 L 59.952 3.164 L 59.952 1.116 L 60.994 1.116 C 61.422 1.116 61.729 1.385 61.729 1.759 C 61.729 2.078 61.563 2.298 61.264 2.376 L 61.82 3.164 L 61.28 3.164 L 60.77 2.439 L 60.4 2.439 L 60.4 3.164 Z M 60.4 1.514 L 60.4 2.065 L 60.878 2.065 C 61.122 2.065 61.239 1.978 61.239 1.783 C 61.239 1.605 61.122 1.514 60.886 1.514 L 60.4 1.514 Z\" fill=\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></g></svg>',svgContentId:812802739,withExternalLayout:true,...addPropertyOverrides({mQ3kW17oe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 16\"><g transform=\"translate(0 0)\" id=\"ss9402737331_1\"><path d=\"M 0 0 L 62.979 0 L 62.979 16 L 0 16 Z\" fill=\"transparent\"></path><path d=\"M 43.693 0 L 43.693 4.363 L 56.801 4.363 L 56.801 0 Z M 0 0.002 L 0 4.365 L 13.108 4.365 L 13.108 0.002 L 0 0.002 Z M 14.564 0.002 L 14.564 4.365 L 27.672 4.365 L 27.672 0.002 L 14.564 0.002 Z M 29.129 0.002 L 29.129 4.365 L 35.683 4.365 C 36.889 4.365 37.867 4.324 37.867 5.092 C 37.867 5.861 36.889 5.819 35.683 5.819 L 29.129 5.819 L 29.129 16 L 33.498 16 L 33.498 10.182 L 34.015 10.182 L 37.867 16 L 42.236 16 L 38.206 9.913 C 40.573 9.353 42.236 7.992 42.236 5.209 C 42.236 1.511 39.302 -0.062 35.683 0.002 Z M 0 5.819 L 0 16 L 4.369 16 L 4.369 10.182 L 13.108 10.182 L 13.108 5.819 Z M 14.564 5.819 L 14.564 9.455 C 14.564 11.794 15.813 13.954 17.841 15.123 C 19.869 16.292 22.368 16.292 24.395 15.123 C 26.423 13.954 27.672 11.794 27.672 9.455 L 27.672 5.819 Z M 43.693 5.818 L 43.693 10.181 L 56.801 10.181 L 56.801 5.818 Z M 43.693 11.635 L 43.693 15.998 L 56.801 15.998 L 56.801 11.635 Z M 60.799 4.363 C 59.586 4.363 58.618 3.392 58.618 2.181 C 58.618 0.966 59.586 0 60.799 0 C 62.016 0 62.979 0.966 62.979 2.181 C 62.979 3.392 62.016 4.363 60.799 4.363 Z M 60.799 3.874 C 61.75 3.874 62.502 3.123 62.502 2.181 C 62.502 1.236 61.75 0.489 60.799 0.489 C 59.852 0.489 59.096 1.236 59.096 2.181 C 59.096 3.123 59.852 3.874 60.799 3.874 Z M 60.4 3.164 L 59.952 3.164 L 59.952 1.116 L 60.994 1.116 C 61.422 1.116 61.729 1.385 61.729 1.759 C 61.729 2.078 61.563 2.298 61.264 2.376 L 61.82 3.164 L 61.28 3.164 L 60.77 2.439 L 60.4 2.439 L 60.4 3.164 Z M 60.4 1.514 L 60.4 2.065 L 60.878 2.065 C 61.122 2.065 61.239 1.978 61.239 1.783 C 61.239 1.605 61.122 1.514 60.886 1.514 L 60.4 1.514 Z\" fill=\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></g></svg>',svgContentId:9402737331}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16b79ye\",layoutDependency:layoutDependency,layoutId:\"Kx8DWsQB4\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o3xfbi\",layoutDependency:layoutDependency,layoutId:\"T16GOE65f\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ndv7sh\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"r6u_3Zj0d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3l1tor\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"COhpVfjsq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHCRABGqS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Brooches\"})})})}),className:\"framer-4uug6w\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"YlKH5kANS\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ha4150omo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Lapel pins\"})})})}),className:\"framer-1mrtyun\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"vKr7IRWkx\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HeWChcMmg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Collar pins\"})})})}),className:\"framer-xv61y4\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"TptOHGKml\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g4ot8r\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"BDNOOKBvz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xfSudKzTL\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Earrings\"})})})}),className:\"framer-1dplrgm\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"P8oKrUcm8\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x1DsfOwnp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Finger rings\"})})})}),className:\"framer-wscouf\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"DRGyOqP57\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CNBEAEJfO\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Bracelets\"})})})}),className:\"framer-13j9lfu\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"p7slHMp45\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g0aNlrotn\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Cufflinks\"})})})}),className:\"framer-4qxf4i\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"vmz3EBnU0\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ft6c0j\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"qUlwUdgqv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PPfPfzVym\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Hair accessories\"})})})}),className:\"framer-t7p59r\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"MnLzz0Knh\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMjAw\",\"--framer-font-family\":'\"Kanit\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DwcSuDjK8\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Bobby pins\"})})})}),className:\"framer-eiugb\",fonts:[\"GF;Kanit-200\"],layoutDependency:layoutDependency,layoutId:\"WOhUBhpbX\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMjAw\",\"--framer-font-family\":'\"Kanit\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bgVWn5akM\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Snap clips\"})})})}),className:\"framer-1xp51ap\",fonts:[\"GF;Kanit-200\"],layoutDependency:layoutDependency,layoutId:\"Hlbm3vx8E\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMjAw\",\"--framer-font-family\":'\"Kanit\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t2DR70fPS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Barrettes\"})})})}),className:\"framer-16qmp6i\",fonts:[\"GF;Kanit-200\"],layoutDependency:layoutDependency,layoutId:\"kzT194exT\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMjAw\",\"--framer-font-family\":'\"Kanit\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dEePWIT7c\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Wire clasps\"})})})}),className:\"framer-1gph5y3\",fonts:[\"GF;Kanit-200\"],layoutDependency:layoutDependency,layoutId:\"Ja4UlhVJC\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kpjntz\",layoutDependency:layoutDependency,layoutId:\"HD8qvPUeV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q90tkb\",\"data-framer-name\":\"Pins\",layoutDependency:layoutDependency,layoutId:\"GpxDslEu1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8diop\",layoutDependency:layoutDependency,layoutId:\"mpJrRF5N5\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CJ0PVRbPT\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1lhf909 framer-17hfp1n\",\"data-framer-name\":\"FURE_Pins\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jknSi2ngc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 16\"><path d=\"M 0.445 15.652 L 0.445 15.139 L 2.898 14.813 L 4.668 14.813 L 7.334 15.139 L 7.334 15.652 Z M 1.978 15.652 C 2.01 15.046 2.033 14.331 2.049 13.507 C 2.081 12.683 2.096 11.828 2.096 10.941 L 2.096 4.925 C 2.096 4.069 2.088 3.245 2.073 2.453 C 2.057 1.644 2.033 0.937 2.002 0.33 L 5.517 0.33 C 5.486 0.937 5.462 1.644 5.446 2.453 C 5.431 3.245 5.415 4.069 5.399 4.925 L 5.399 10.941 C 5.415 11.828 5.431 12.683 5.446 13.507 C 5.462 14.331 5.486 15.046 5.517 15.652 Z M 3.535 9.216 L 3.535 8.563 L 6.036 8.563 C 6.697 8.563 7.239 8.392 7.664 8.05 C 8.089 7.692 8.403 7.218 8.608 6.627 C 8.812 6.021 8.914 5.337 8.914 4.575 C 8.914 3.424 8.663 2.538 8.159 1.916 C 7.656 1.279 6.925 0.96 5.965 0.96 L 3.535 0.96 L 3.535 0.33 L 6.06 0.33 C 7.554 0.33 8.749 0.494 9.646 0.82 C 10.558 1.147 11.219 1.629 11.627 2.266 C 12.036 2.888 12.241 3.65 12.241 4.551 C 12.241 5.391 12.044 6.168 11.651 6.884 C 11.274 7.583 10.621 8.151 9.693 8.586 C 8.781 9.006 7.53 9.216 5.942 9.216 Z M 0.445 0.82 L 0.445 0.33 L 4.573 0.33 L 4.573 1.17 L 2.898 1.17 Z M 13.344 15.652 L 13.344 15.139 L 15.35 14.813 L 17.096 14.813 L 19.007 15.139 L 19.007 15.652 Z M 14.548 15.652 C 14.579 15.248 14.603 14.766 14.618 14.206 C 14.634 13.647 14.642 13.064 14.642 12.457 C 14.658 11.851 14.666 11.291 14.666 10.778 L 14.666 8.213 C 14.666 7.7 14.65 7.187 14.618 6.674 L 13.25 6.277 L 13.25 5.857 L 17.567 4.645 L 17.898 4.878 L 17.803 7.956 L 17.803 12.457 C 17.819 13.064 17.835 13.647 17.851 14.206 C 17.866 14.766 17.89 15.248 17.921 15.652 Z M 15.043 2.759 C 15.373 3.038 15.767 3.178 16.223 3.178 C 16.679 3.178 17.064 3.031 17.379 2.735 C 17.709 2.44 17.874 2.051 17.874 1.569 C 17.874 1.103 17.709 0.722 17.379 0.427 C 17.064 0.131 16.679 -0.017 16.223 -0.017 C 15.767 -0.017 15.373 0.131 15.043 0.427 C 14.729 0.722 14.571 1.103 14.571 1.569 C 14.571 2.067 14.729 2.463 15.043 2.759 Z M 20.153 15.652 L 20.153 15.145 L 22.122 14.817 L 23.872 14.817 L 25.83 15.145 L 25.83 15.652 Z M 21.36 15.652 C 21.391 15.09 21.415 14.42 21.431 13.642 C 21.446 12.864 21.454 12.053 21.454 11.21 C 21.47 10.367 21.478 9.589 21.478 8.875 L 21.478 6.087 C 21.478 5.547 21.47 5.049 21.454 4.595 C 21.454 4.12 21.46 2.883 21.445 2.407 L 20.065 2.001 L 20.065 1.589 L 24.292 0.348 L 24.624 0.598 L 24.624 11.21 C 24.639 12.053 24.655 12.864 24.671 13.642 C 24.687 14.42 24.71 15.09 24.742 15.652 Z M 26.894 15.652 L 26.894 15.145 L 28.792 14.817 L 30.518 14.817 L 32.5 15.145 L 32.5 15.652 Z M 28.006 15.652 C 28.053 15.09 28.085 14.42 28.101 13.642 C 28.116 12.864 28.124 12.053 28.124 11.21 L 28.124 5.406 C 28.124 4.412 28.006 3.731 27.769 3.363 C 27.549 2.996 27.202 2.812 26.729 2.812 C 26.445 2.812 26.145 2.899 25.83 3.071 C 25.515 3.223 25.207 3.461 24.907 3.785 C 24.608 4.087 24.316 4.455 24.032 4.887 L 23.985 4.077 L 24.198 4.077 C 24.592 3.234 25.002 2.542 25.428 2.001 C 25.853 1.439 26.303 1.029 26.776 0.769 C 27.265 0.488 27.785 0.348 28.337 0.348 C 29.236 0.348 29.953 0.748 30.489 1.548 C 31.025 2.326 31.294 3.579 31.294 5.309 L 31.294 11.21 C 31.309 12.053 31.325 12.864 31.341 13.642 C 31.357 14.42 31.38 15.09 31.412 15.652 Z M 37.398 16.017 C 36.737 16.017 36.124 15.899 35.557 15.663 C 34.991 15.427 34.433 15.094 33.882 14.665 L 33.977 10.676 L 34.448 10.676 L 35.723 14.955 L 34.92 14.955 L 34.92 14.279 C 35.314 14.579 35.683 14.815 36.029 14.987 C 36.375 15.159 36.824 15.244 37.374 15.244 C 37.799 15.244 38.161 15.148 38.459 14.955 C 38.758 14.762 38.986 14.483 39.144 14.118 C 39.317 13.754 39.403 13.325 39.403 12.831 C 39.403 12.059 39.191 11.48 38.766 11.094 C 38.357 10.708 37.87 10.343 37.303 10 L 36.643 9.614 C 36.202 9.357 35.778 9.056 35.369 8.713 C 34.96 8.348 34.621 7.887 34.354 7.33 C 34.087 6.75 33.953 6.01 33.953 5.11 C 33.953 4.187 34.102 3.372 34.401 2.664 C 34.7 1.935 35.156 1.367 35.77 0.959 C 36.383 0.552 37.146 0.348 38.058 0.348 C 38.672 0.348 39.215 0.444 39.686 0.637 C 40.174 0.83 40.654 1.109 41.126 1.474 L 41.031 5.27 L 40.559 5.27 L 39.309 1.152 L 40.135 1.152 L 40.135 2.117 C 39.836 1.753 39.529 1.495 39.215 1.345 C 38.9 1.195 38.515 1.12 38.058 1.12 C 37.492 1.12 37.036 1.313 36.69 1.699 C 36.36 2.064 36.194 2.589 36.194 3.276 C 36.194 4.048 36.407 4.638 36.831 5.045 C 37.256 5.431 37.752 5.785 38.318 6.107 L 38.979 6.493 C 39.434 6.772 39.868 7.083 40.276 7.426 C 40.701 7.769 41.047 8.23 41.314 8.81 C 41.582 9.367 41.715 10.107 41.715 11.03 C 41.715 12.081 41.542 12.981 41.196 13.732 C 40.866 14.461 40.378 15.03 39.734 15.437 C 39.089 15.824 38.31 16.017 37.398 16.017 Z\" fill=\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\"></path></svg>',svgContentId:3350732785,withExternalLayout:true,...addPropertyOverrides({mQ3kW17oe:{svgContentId:11940667377}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jqau1r\",layoutDependency:layoutDependency,layoutId:\"UYp1q38I4\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3wh9bb\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"f4eMleocN\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xkh8di\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"DbEYKRJaO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JKPKraBZv\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Enamel pins\"})})})}),className:\"framer-13gio3m\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"VUKf5eiBF\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rt1kee\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"owkiuVWlw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jw0tqo\",layoutDependency:layoutDependency,layoutId:\"FumpjCtE1\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eSRXq0B69\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1avjcfu framer-17hfp1n\",\"data-framer-name\":\"living\",fill:\"black\",intrinsicHeight:358,intrinsicWidth:858,layoutDependency:layoutDependency,layoutId:\"yhEzTU9vZ\",svg:'<svg width=\"858\" height=\"358\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 1.075h23.907v228.194c0 10.656 1.747 17.864 5.239 21.625 3.581 3.76 9.312 5.193 17.191 4.298 2.687-.18 4.656-.403 5.91-.672a236.42 236.42 0 0 1 3.627-.94l4.969 20.952c-1.88.538-4.343 1.075-7.387 1.612a64.272 64.272 0 0 1-9.402.94c-14.326.896-25.25-2.238-32.772-9.402C3.761 260.43 0 249.506 0 234.911V1.074Zm93.346 275.069V69.842h24.042v206.302H93.346Zm12.223-241.76c-4.925 0-9.133-1.657-12.626-4.97-3.492-3.402-5.238-7.477-5.238-12.222 0-4.746 1.746-8.775 5.238-12.088C96.436 1.7 100.644 0 105.57 0c4.924 0 9.133 1.701 12.625 5.104 3.492 3.313 5.238 7.342 5.238 12.088 0 4.745-1.746 8.82-5.238 12.222-3.492 3.313-7.701 4.97-12.625 4.97Zm234.742 35.458-75.348 206.302h-25.52L164.095 69.842h25.922l61.246 174.739h1.88l61.246-174.74h25.922Zm47.043 206.302V69.842h24.042v206.302h-24.042Zm12.222-241.76c-4.925 0-9.133-1.657-12.625-4.97-3.492-3.402-5.238-7.477-5.238-12.222 0-4.746 1.746-8.775 5.238-12.088C390.443 1.7 394.651 0 399.576 0s9.133 1.701 12.625 5.104c3.493 3.313 5.239 7.342 5.239 12.088 0 4.745-1.746 8.82-5.239 12.222-3.492 3.313-7.7 4.97-12.625 4.97Zm98.954 112.821v128.939h-23.907V69.842h23.235v32.369h2.149c4.836-10.566 12.357-19.028 22.565-25.385 10.297-6.447 23.012-9.67 38.144-9.67 13.879 0 26.057 2.91 36.533 8.73 10.566 5.73 18.759 14.192 24.579 25.385 5.91 11.192 8.864 24.937 8.864 41.233v133.64h-23.907V143.982c0-16.923-4.746-30.31-14.237-40.159-9.402-9.85-22.027-14.775-37.876-14.775-10.834 0-20.46 2.328-28.877 6.985-8.417 4.656-15.087 11.371-20.012 20.146-4.835 8.686-7.253 19.028-7.253 31.026Zm273.827 210.6c-14.058 0-26.37-1.835-36.935-5.506-10.566-3.582-19.476-8.507-26.728-14.775-7.253-6.268-12.894-13.296-16.924-21.086l19.61-12.894c2.955 5.193 6.895 10.297 11.819 15.311 5.015 5.014 11.506 9.178 19.475 12.491 8.059 3.313 17.953 4.97 29.683 4.97 18.267 0 32.996-4.567 44.189-13.7 11.282-9.133 16.923-23.326 16.923-42.577v-46.472h-2.149c-2.776 6.268-6.76 12.536-11.954 18.804-5.193 6.178-11.998 11.327-20.415 15.446-8.327 4.119-18.669 6.178-31.026 6.178-16.476 0-31.115-4.074-43.92-12.222-12.715-8.148-22.743-19.789-30.086-34.921-7.252-15.222-10.879-33.354-10.879-54.396 0-20.863 3.537-39.219 10.611-55.068 7.163-15.849 17.147-28.205 29.951-37.07 12.805-8.864 27.713-13.297 44.726-13.297 12.625 0 23.101 2.239 31.429 6.716 8.327 4.387 14.998 9.85 20.012 16.386 5.104 6.536 9.089 12.894 11.954 19.072h2.417V69.842h23.371v211.675c0 17.46-3.716 31.831-11.148 43.113-7.432 11.283-17.55 19.61-30.355 24.982-12.804 5.462-27.354 8.193-43.651 8.193Zm-1.611-105.703c13.252 0 24.578-3.178 33.98-9.536 9.402-6.447 16.61-15.669 21.624-27.668 5.015-11.998 7.522-26.28 7.522-42.845 0-16.118-2.463-30.399-7.387-42.845-4.925-12.536-12.088-22.386-21.49-29.549-9.312-7.253-20.729-10.88-34.249-10.88-13.79 0-25.43 3.717-34.921 11.149-9.492 7.432-16.655 17.46-21.49 30.085-4.835 12.536-7.253 26.549-7.253 42.04 0 15.759 2.462 29.683 7.387 41.771 4.925 11.998 12.133 21.4 21.624 28.205 9.492 6.716 21.042 10.073 34.653 10.073Z\" fill=\"#666\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dvf0tw\",layoutDependency:layoutDependency,layoutId:\"e88mrzTDC\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qlff3k\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"uezMtHfaC\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jagw49\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"mbyO72Ix4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SrZPdWXt7\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Showpiece idols\"})})})}),className:\"framer-417acx\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"SH7uHoDo3\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RokHQrRBj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Napkin rings\"})})})}),className:\"framer-14nx0rb\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"zXs6obAaG\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_vaLe_tg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Shoe bags\"})})})}),className:\"framer-jmi5kj\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"znu0q9pjk\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zjajt\",layoutDependency:layoutDependency,layoutId:\"Ao43iGlcD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13430o7\",\"data-framer-name\":\"Studio\",layoutDependency:layoutDependency,layoutId:\"aouq9PTZ6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16a8sn8\",layoutDependency:layoutDependency,layoutId:\"T46eBtoFF\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yOgC5foOx\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-pc33g framer-17hfp1n\",\"data-framer-name\":\"FURE_Studio\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"M2CqY2II2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 16\"><path d=\"M 6.301 7.825 C 6.301 7.825 7.9 6.452 7.885 5.214 C 7.861 3.18 1.084 1.532 1.548 4.85 C 2.012 8.168 6.108 10.651 5.509 13.091 C 5.152 14.543 2.032 14.678 1.741 13.776 C 1.291 12.384 8.271 11.657 11.632 9.944 C 14.178 8.647 17.819 3.342 16.021 4.486 C 14.137 5.685 13.088 9.966 11.91 13.027 C 11.745 13.455 12.192 14.132 12.895 14.332 C 14.282 14.728 10.211 10.655 11.375 11.293 C 13.173 12.277 20.089 9.837 20.089 9.837 C 20.089 9.837 18.778 11.322 19.361 12.277 C 20.311 13.836 23.793 10.308 23.793 10.308 C 23.793 10.308 23.116 11.256 23.707 11.914 C 25.259 13.641 29.937 9.837 29.937 9.837 C 29.937 9.837 27.708 11.881 28.631 12.705 C 30.43 14.311 38.822 0.33 36.317 1.468 C 34.433 2.324 31.752 12.841 32.314 12.684 C 35.076 11.914 39.336 9.837 39.336 9.837 C 39.336 9.837 38.507 11.019 38.822 11.914 C 39.721 14.461 50.169 9.837 50.169 9.837 C 50.169 9.837 47.747 11.849 48.735 12.491 C 49.625 13.07 51.069 11.1 51.069 11.1 C 51.069 11.1 52.824 11.431 54.58 11.1 C 56.635 10.712 58.112 9.837 58.112 9.837 M 40 6.391 C 41.597 6.426 42.484 6.451 44.089 6.134\" fill=\"transparent\" stroke-width=\"1.23\" stroke=\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)) /* {&quot;name&quot;:&quot;Grey 4&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:2582943803,withExternalLayout:true,...addPropertyOverrides({mQ3kW17oe:{svgContentId:11172878395}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wjgvu6\",layoutDependency:layoutDependency,layoutId:\"aIbh_wjFn\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzmmq\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"UX5nTsYLC\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6lwyhi\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"gQJJ2LOyD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AoIoFnF5p\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Purse hangers\"})})})}),className:\"framer-14bzxuh\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"PA1SQ5LqH\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BEvP_T5z8\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Tote bags\"})})})}),className:\"framer-18srvyd\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"nbQsWyNfz\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TeovgNBhb\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Supplies\"})})})}),className:\"framer-18pyxox\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"xAerPiWHb\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18dsj44\",layoutDependency:layoutDependency,layoutId:\"y3o4szdzI\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZgI_t0BKH\"},implicitPathVariables:undefined},{href:{webPageId:\"ZgI_t0BKH\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-75dans-container\",layoutDependency:layoutDependency,layoutId:\"xEQY6VBZg-container\",children:/*#__PURE__*/_jsx(NavigationFeaturedImage,{height:\"100%\",HJ2pHx_kG:resolvedLinks[0],id:\"xEQY6VBZg\",layoutId:\"xEQY6VBZg\",style:{height:\"100%\",width:\"100%\"},TfWHPliWv:addImageAlt({src:\"https://framerusercontent.com/images/5zj4CwpF4ff2IrMywcxM0UW1gU8.webp\",srcSet:\"https://framerusercontent.com/images/5zj4CwpF4ff2IrMywcxM0UW1gU8.webp 750w\"},\"\"),width:\"100%\",...addPropertyOverrides({mQ3kW17oe:{HJ2pHx_kG:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pae12j\",\"data-framer-name\":\"Collections Dropdown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kwhpRi6K6\",onMouseLeave:onMouseLeave50am96,style:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s8mnwo\",layoutDependency:layoutDependency,layoutId:\"iZcPW1eDs\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-azauun\",layoutDependency:layoutDependency,layoutId:\"qWYQaMvB2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6sym0\",layoutDependency:layoutDependency,layoutId:\"f3sfbaoCx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)))\"},children:\"CURATED\"})}),className:\"framer-k6nvyw\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"DkTryutHT\",style:{\"--extracted-r6o4lv\":\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sfahls\",layoutDependency:layoutDependency,layoutId:\"dJQJrkDCf\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-khky0n\",layoutDependency:layoutDependency,layoutId:\"vc76WDm6P\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fstwtk\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"w50486fpU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ojua9t\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"M6EQI5me2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"e8Wqam9Yx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Shaadi season\"})})})}),className:\"framer-gp4wys\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"ywi6dbjtF\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"reQrtB9cX\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Contemporary\"})})})}),className:\"framer-u033x3\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"BiUN4XUtn\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"S7YiE7F8V\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Traditional\"})})})}),className:\"framer-1ka1uv8\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"KW44nNYRU\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vzEZB6dtj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Great for gifting\"})})})}),className:\"framer-9jow5a\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"dNfcrrqkC\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wqoUdxwQt\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Style it your way\"})})})}),className:\"framer-1halcue\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"c3iqUH3wg\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q5f57u\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"smDgYShzO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xr2sSsQh4\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Alphabets\"})})})}),className:\"framer-7icqgp\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"lVfK3R4IR\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tnDumlsQV\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Travel\"})})})}),className:\"framer-vx5taf\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"CTbbdmGr_\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zsMrEFFkF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Shirt accessories\"})})})}),className:\"framer-bkscfw\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"dukgdx2NC\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PPfPfzVym\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Hair accessories\"})})})}),className:\"framer-um389w\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"yehVMPL9p\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vOegXo1cu\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"New products\"})})})}),className:\"framer-1tiacs8\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"LVspxDyq4\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kn96ze\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"Ea7jCief1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YLsybRAvy\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Staff picks\"})})})}),className:\"framer-y7hac1\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"WCOCR18CY\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Il_qV8WhR\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Most loved\"})})})}),className:\"framer-1fbn2j\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"WtG53VLCg\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uWiqw5MUu\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Under 249\"})})})}),className:\"framer-14m2l5z\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"mlqvEJfP_\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sj8nmt\",layoutDependency:layoutDependency,layoutId:\"rfS0utVF5\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vOegXo1cu\"},implicitPathVariables:undefined},{href:{webPageId:\"vOegXo1cu\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11i0nf0-container\",layoutDependency:layoutDependency,layoutId:\"OScq8v70D-container\",children:/*#__PURE__*/_jsx(NavigationFeaturedImage,{height:\"100%\",HJ2pHx_kG:resolvedLinks1[0],id:\"OScq8v70D\",layoutId:\"OScq8v70D\",style:{height:\"100%\",width:\"100%\"},TfWHPliWv:addImageAlt({src:\"https://framerusercontent.com/images/2yv3xDNvE52MjJeAIqPWnahNUNA.webp\",srcSet:\"https://framerusercontent.com/images/2yv3xDNvE52MjJeAIqPWnahNUNA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2yv3xDNvE52MjJeAIqPWnahNUNA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2yv3xDNvE52MjJeAIqPWnahNUNA.webp 1500w\"},\"\"),width:\"100%\",...addPropertyOverrides({F9l94oYOD:{HJ2pHx_kG:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15zf4ro\",\"data-framer-name\":\"Discover Dropdown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bxnHHDXBB\",onMouseLeave:onMouseLeave50am96,style:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lyizig\",layoutDependency:layoutDependency,layoutId:\"qgjgicT4v\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s5kxbv\",\"data-framer-name\":\"Pins\",layoutDependency:layoutDependency,layoutId:\"c2Qhjzmn_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c0lwiw\",layoutDependency:layoutDependency,layoutId:\"lbkrLL2GO\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CJ0PVRbPT\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-18gt998 framer-17hfp1n\",\"data-framer-name\":\"FURE_Pins\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gcGXybI8X\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 17\"><path d=\"M 0.445 16.652 L 0.445 16.139 L 2.898 15.813 L 4.668 15.813 L 7.334 16.139 L 7.334 16.652 Z M 1.978 16.652 C 2.01 16.046 2.033 15.331 2.049 14.507 C 2.081 13.683 2.096 12.828 2.096 11.941 L 2.096 5.925 C 2.096 5.069 2.088 4.245 2.073 3.453 C 2.057 2.644 2.033 1.937 2.002 1.33 L 5.517 1.33 C 5.486 1.937 5.462 2.644 5.446 3.453 C 5.431 4.245 5.415 5.069 5.399 5.925 L 5.399 11.941 C 5.415 12.828 5.431 13.683 5.446 14.507 C 5.462 15.331 5.486 16.046 5.517 16.652 Z M 3.535 10.216 L 3.535 9.563 L 6.036 9.563 C 6.697 9.563 7.239 9.392 7.664 9.05 C 8.089 8.692 8.403 8.218 8.608 7.627 C 8.812 7.021 8.914 6.337 8.914 5.575 C 8.914 4.424 8.663 3.538 8.159 2.916 C 7.656 2.279 6.925 1.96 5.965 1.96 L 3.535 1.96 L 3.535 1.33 L 6.06 1.33 C 7.554 1.33 8.749 1.494 9.646 1.82 C 10.558 2.147 11.219 2.629 11.627 3.266 C 12.036 3.888 12.241 4.65 12.241 5.551 C 12.241 6.391 12.044 7.168 11.651 7.884 C 11.274 8.583 10.621 9.151 9.693 9.586 C 8.781 10.006 7.53 10.216 5.942 10.216 Z M 0.445 1.82 L 0.445 1.33 L 4.573 1.33 L 4.573 2.17 L 2.898 2.17 Z M 13.344 16.652 L 13.344 16.139 L 15.35 15.813 L 17.096 15.813 L 19.007 16.139 L 19.007 16.652 Z M 14.548 16.652 C 14.579 16.248 14.603 15.766 14.618 15.206 C 14.634 14.647 14.642 14.064 14.642 13.457 C 14.658 12.851 14.666 12.291 14.666 11.778 L 14.666 9.213 C 14.666 8.7 14.65 8.187 14.618 7.674 L 13.25 7.277 L 13.25 6.857 L 17.567 5.645 L 17.898 5.878 L 17.803 8.956 L 17.803 13.457 C 17.819 14.064 17.835 14.647 17.851 15.206 C 17.866 15.766 17.89 16.248 17.921 16.652 Z M 15.043 3.759 C 15.373 4.038 15.767 4.178 16.223 4.178 C 16.679 4.178 17.064 4.031 17.379 3.735 C 17.709 3.44 17.874 3.051 17.874 2.569 C 17.874 2.103 17.709 1.722 17.379 1.427 C 17.064 1.131 16.679 0.983 16.223 0.983 C 15.767 0.983 15.373 1.131 15.043 1.427 C 14.729 1.722 14.571 2.103 14.571 2.569 C 14.571 3.067 14.729 3.463 15.043 3.759 Z M 20.153 16.652 L 20.153 16.145 L 22.122 15.817 L 23.872 15.817 L 25.83 16.145 L 25.83 16.652 Z M 21.36 16.652 C 21.391 16.09 21.415 15.42 21.431 14.642 C 21.446 13.864 21.454 13.053 21.454 12.21 C 21.47 11.367 21.478 10.589 21.478 9.875 L 21.478 7.087 C 21.478 6.547 21.47 6.049 21.454 5.595 C 21.454 5.12 21.46 3.883 21.445 3.407 L 20.065 3.001 L 20.065 2.589 L 24.292 1.348 L 24.624 1.598 L 24.624 12.21 C 24.639 13.053 24.655 13.864 24.671 14.642 C 24.687 15.42 24.71 16.09 24.742 16.652 Z M 26.894 16.652 L 26.894 16.145 L 28.792 15.817 L 30.518 15.817 L 32.5 16.145 L 32.5 16.652 Z M 28.006 16.652 C 28.053 16.09 28.085 15.42 28.101 14.642 C 28.116 13.864 28.124 13.053 28.124 12.21 L 28.124 6.406 C 28.124 5.412 28.006 4.731 27.769 4.363 C 27.549 3.996 27.202 3.812 26.729 3.812 C 26.445 3.812 26.145 3.899 25.83 4.071 C 25.515 4.223 25.207 4.461 24.907 4.785 C 24.608 5.087 24.316 5.455 24.032 5.887 L 23.985 5.077 L 24.198 5.077 C 24.592 4.234 25.002 3.542 25.428 3.001 C 25.853 2.439 26.303 2.029 26.776 1.769 C 27.265 1.488 27.785 1.348 28.337 1.348 C 29.236 1.348 29.953 1.748 30.489 2.548 C 31.025 3.326 31.294 4.579 31.294 6.309 L 31.294 12.21 C 31.309 13.053 31.325 13.864 31.341 14.642 C 31.357 15.42 31.38 16.09 31.412 16.652 Z M 37.398 17.017 C 36.737 17.017 36.124 16.899 35.557 16.663 C 34.991 16.427 34.433 16.094 33.882 15.665 L 33.977 11.676 L 34.448 11.676 L 35.723 15.955 L 34.92 15.955 L 34.92 15.279 C 35.314 15.579 35.683 15.815 36.029 15.987 C 36.375 16.159 36.824 16.244 37.374 16.244 C 37.799 16.244 38.161 16.148 38.459 15.955 C 38.758 15.762 38.986 15.483 39.144 15.118 C 39.317 14.754 39.403 14.325 39.403 13.831 C 39.403 13.059 39.191 12.48 38.766 12.094 C 38.357 11.708 37.87 11.343 37.303 11 L 36.643 10.614 C 36.202 10.357 35.778 10.056 35.369 9.713 C 34.96 9.348 34.621 8.887 34.354 8.33 C 34.087 7.75 33.953 7.01 33.953 6.11 C 33.953 5.187 34.102 4.372 34.401 3.664 C 34.7 2.935 35.156 2.367 35.77 1.959 C 36.383 1.552 37.146 1.348 38.058 1.348 C 38.672 1.348 39.215 1.444 39.686 1.637 C 40.174 1.83 40.654 2.109 41.126 2.474 L 41.031 6.27 L 40.559 6.27 L 39.309 2.152 L 40.135 2.152 L 40.135 3.117 C 39.836 2.753 39.529 2.495 39.215 2.345 C 38.9 2.195 38.515 2.12 38.058 2.12 C 37.492 2.12 37.036 2.313 36.69 2.699 C 36.36 3.064 36.194 3.589 36.194 4.276 C 36.194 5.048 36.407 5.638 36.831 6.045 C 37.256 6.431 37.752 6.785 38.318 7.107 L 38.979 7.493 C 39.434 7.772 39.868 8.083 40.276 8.426 C 40.701 8.769 41.047 9.23 41.314 9.81 C 41.582 10.367 41.715 11.107 41.715 12.03 C 41.715 13.081 41.542 13.981 41.196 14.732 C 40.866 15.461 40.378 16.03 39.734 16.437 C 39.089 16.824 38.31 17.017 37.398 17.017 Z\" fill=\"var(--token-470311dc-ecb1-4ea7-94b5-3bfc5ca7b39a, rgb(63, 95, 95)) /* {&quot;name&quot;:&quot;Dark Accent&quot;} */\"></path></svg>',svgContentId:368110383,withExternalLayout:true,...addPropertyOverrides({i5czuJoCW:{svgContentId:8958044975}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rf0u5w\",layoutDependency:layoutDependency,layoutId:\"xcL8BZkTi\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vdwhud\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"pF5murT0k\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z03c3j\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"hsHdIBJe7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:\"Explore our huge range of enamel pins, perfect for adding flair to your attire, bags, and beyond.\"})}),className:\"framer-ihbgr7\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"q6YpAdRGq\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CJ0PVRbPT\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Explore\"})})})}),className:\"framer-1bquo16\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"g5NQ40UIG\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10vnkic\",layoutDependency:layoutDependency,layoutId:\"Vo2zOwG3I\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-336rfc\",layoutDependency:layoutDependency,layoutId:\"oEnoe8XD9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bzaef\",layoutDependency:layoutDependency,layoutId:\"BX8ph3dfG\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iSF7E5Kgg\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-r2idow framer-17hfp1n\",\"data-framer-name\":\"FURE_Manufactory\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EcKv5eRwm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 16\"><path d=\"M 0.694 15.614 L 0.694 15.102 L 1.895 14.869 L 2.263 14.869 L 3.495 15.102 L 3.495 15.614 Z M 0.694 0.819 L 0.694 0.33 L 2.359 0.33 L 2.359 1.168 L 2.327 1.168 Z M 1.831 15.614 L 1.831 0.796 L 2.311 0.796 L 2.311 15.614 Z M 5.367 15.614 L 2.247 2.331 L 2.023 2.331 L 2.023 0.33 L 4.167 0.33 L 6.808 11.706 L 6.6 11.706 L 6.632 11.543 L 9.256 0.33 L 9.561 0.33 L 9.561 1.703 L 9.449 1.703 L 9.384 1.959 L 6.248 15.614 Z M 8.248 15.614 L 8.248 15.102 L 9.865 14.776 L 11.001 14.776 L 12.665 15.102 L 12.665 15.614 Z M 9.224 15.614 C 9.246 15.009 9.262 14.296 9.272 13.474 C 9.294 12.652 9.304 11.799 9.304 10.915 C 9.315 10.031 9.32 9.193 9.32 8.403 L 9.32 0.33 L 11.625 0.33 C 11.604 0.935 11.588 1.641 11.577 2.447 C 11.566 3.269 11.561 4.091 11.561 4.913 L 11.561 10.915 C 11.561 11.799 11.566 12.652 11.577 13.474 C 11.588 14.296 11.604 15.009 11.625 15.614 Z M 9.865 1.168 L 9.865 0.33 L 12.665 0.33 L 12.665 0.819 L 11.001 1.168 Z M 13.238 15.614 L 13.238 15.102 L 14.359 14.869 L 14.647 14.869 L 15.959 15.102 L 15.959 15.614 Z M 14.071 15.614 L 17.399 0.261 L 18.6 0.261 L 21.961 15.614 L 19.544 15.614 L 16.967 3.029 L 17.255 3.029 L 14.599 15.614 Z M 15.463 10.566 L 15.463 9.938 L 19.768 9.938 L 19.768 10.566 Z M 18.248 15.614 L 18.248 15.102 L 20.024 14.776 L 21.432 14.776 L 22.777 15.102 L 22.777 15.614 Z M 23.371 15.614 L 23.371 15.102 L 24.604 14.869 L 24.972 14.869 L 26.3 15.102 L 26.3 15.614 Z M 24.54 15.614 L 24.54 0.726 L 25.02 0.726 L 25.02 15.614 Z M 29.741 0.819 L 29.741 0.33 L 32.638 0.33 L 32.638 0.819 L 31.517 1.052 L 31.149 1.052 Z M 30.669 15.66 L 25.004 2.82 L 24.988 2.82 L 24.187 1.005 L 23.371 0.819 L 23.371 0.33 L 26.524 0.33 L 31.437 11.427 L 31.101 11.427 L 31.101 0.33 L 31.597 0.33 L 31.597 15.66 Z M 38.287 15.986 C 37.551 15.986 36.895 15.816 36.319 15.474 C 35.742 15.133 35.284 14.567 34.942 13.776 C 34.611 12.985 34.446 11.915 34.446 10.566 L 34.446 7.426 C 34.446 6.635 34.441 5.813 34.43 4.96 C 34.43 4.091 34.425 3.254 34.414 2.447 C 34.403 1.641 34.387 0.935 34.366 0.33 L 36.751 0.33 C 36.729 0.935 36.713 1.641 36.703 2.447 C 36.692 3.254 36.687 4.091 36.687 4.96 L 36.687 9.961 C 36.687 11.047 36.767 11.915 36.927 12.566 C 37.097 13.218 37.343 13.691 37.663 13.986 C 37.994 14.265 38.394 14.404 38.863 14.404 C 39.333 14.404 39.738 14.265 40.08 13.986 C 40.432 13.691 40.704 13.218 40.896 12.566 C 41.088 11.9 41.184 11.023 41.184 9.938 L 41.184 0.33 L 41.664 0.33 L 41.664 9.566 C 41.664 11.116 41.536 12.365 41.28 13.311 C 41.024 14.257 40.645 14.939 40.144 15.358 C 39.642 15.777 39.023 15.986 38.287 15.986 Z M 33.406 0.819 L 33.406 0.33 L 37.743 0.33 L 37.743 0.819 L 36.142 1.168 L 35.006 1.168 Z M 40.031 0.819 L 40.031 0.33 L 42.688 0.33 L 42.688 0.819 L 41.536 1.075 L 41.28 1.075 Z M 43.408 15.614 L 43.408 15.102 L 45.073 14.776 L 46.209 14.776 L 48.082 15.102 L 48.082 15.614 Z M 44.449 15.614 C 44.47 15.009 44.486 14.296 44.497 13.474 C 44.518 12.652 44.529 11.799 44.529 10.915 L 44.529 4.913 C 44.529 4.06 44.523 3.238 44.513 2.447 C 44.502 1.641 44.486 0.935 44.465 0.33 L 46.849 0.33 C 46.828 0.935 46.812 1.641 46.801 2.447 C 46.791 3.238 46.78 4.06 46.769 4.913 L 46.769 10.915 C 46.78 11.799 46.791 12.652 46.801 13.474 C 46.812 14.296 46.828 15.009 46.849 15.614 Z M 45.697 8.147 L 45.697 7.472 L 48.514 7.472 L 48.514 8.147 Z M 48.834 10.403 L 48.274 8.03 L 48.274 7.612 L 48.834 5.239 L 49.17 5.239 L 49.17 10.403 Z M 43.408 0.819 L 43.408 0.33 L 46.209 0.33 L 46.209 1.168 L 45.073 1.168 Z M 50.338 4.448 L 49.122 0.61 L 49.682 0.959 L 45.409 0.959 L 45.409 0.33 L 50.498 0.33 L 50.69 4.448 Z M 49.92 15.614 L 49.92 15.102 L 51.04 14.869 L 51.328 14.869 L 52.64 15.102 L 52.64 15.614 Z M 50.752 15.614 L 54.081 0.261 L 55.281 0.261 L 58.642 15.614 L 56.226 15.614 L 53.649 3.029 L 53.937 3.029 L 51.28 15.614 Z M 52.144 10.566 L 52.144 9.938 L 56.45 9.938 L 56.45 10.566 Z M 54.929 15.614 L 54.929 15.102 L 56.705 14.776 L 58.114 14.776 L 59.458 15.102 L 59.458 15.614 Z M 64.471 15.986 C 63.82 15.986 63.196 15.831 62.598 15.521 C 62.001 15.195 61.467 14.707 60.998 14.055 C 60.528 13.404 60.16 12.574 59.894 11.566 C 59.627 10.558 59.494 9.364 59.494 7.984 C 59.494 6.604 59.632 5.409 59.91 4.401 C 60.198 3.378 60.582 2.54 61.062 1.889 C 61.542 1.238 62.076 0.757 62.662 0.447 C 63.249 0.121 63.852 -0.042 64.471 -0.042 C 64.93 -0.042 65.378 0.028 65.815 0.168 C 66.263 0.307 66.679 0.548 67.063 0.889 L 67.24 4.611 L 66.888 4.611 L 65.607 0.586 L 66.568 1.052 L 66.631 1.54 C 66.29 1.168 65.943 0.912 65.591 0.772 C 65.239 0.633 64.914 0.563 64.615 0.563 C 64.135 0.563 63.681 0.827 63.255 1.354 C 62.838 1.866 62.502 2.672 62.247 3.773 C 61.99 4.859 61.862 6.27 61.862 8.007 C 61.862 9.744 61.985 11.155 62.23 12.241 C 62.487 13.326 62.822 14.125 63.239 14.637 C 63.654 15.133 64.113 15.381 64.615 15.381 C 64.924 15.381 65.255 15.311 65.607 15.172 C 65.97 15.017 66.316 14.753 66.648 14.381 L 66.599 14.893 L 65.655 15.335 L 66.919 11.101 L 67.272 11.101 L 67.112 15.056 C 66.738 15.366 66.322 15.598 65.863 15.753 C 65.404 15.909 64.94 15.986 64.471 15.986 Z M 70.239 15.614 L 70.239 15.102 L 71.999 14.776 L 73.231 14.776 L 74.992 15.102 L 74.992 15.614 Z M 71.423 15.614 C 71.445 15.009 71.461 14.296 71.471 13.474 C 71.482 12.652 71.487 11.799 71.487 10.915 C 71.498 10.031 71.503 9.193 71.503 8.403 L 71.503 7.379 C 71.503 6.588 71.498 5.766 71.487 4.913 C 71.487 4.06 71.482 3.238 71.471 2.447 C 71.461 1.641 71.445 0.935 71.423 0.33 L 73.808 0.33 C 73.786 0.935 73.77 1.641 73.76 2.447 C 73.749 3.269 73.744 4.091 73.744 4.913 L 73.744 10.915 C 73.744 11.799 73.749 12.652 73.76 13.474 C 73.77 14.296 73.786 15.009 73.808 15.614 Z M 68.302 4.82 L 68.495 0.33 L 76.753 0.33 L 76.944 4.82 L 76.592 4.82 L 75.36 0.61 L 75.952 0.959 L 69.294 0.959 L 69.871 0.61 L 68.639 4.82 Z M 82.404 15.986 C 81.796 15.986 81.215 15.823 80.66 15.498 C 80.115 15.172 79.63 14.676 79.203 14.009 C 78.777 13.342 78.435 12.504 78.179 11.496 C 77.934 10.488 77.811 9.31 77.811 7.961 C 77.811 6.627 77.934 5.464 78.179 4.471 C 78.435 3.463 78.777 2.626 79.203 1.959 C 79.63 1.292 80.121 0.796 80.676 0.47 C 81.23 0.129 81.807 -0.042 82.404 -0.042 C 83.001 -0.042 83.573 0.121 84.116 0.447 C 84.671 0.772 85.162 1.269 85.589 1.936 C 86.016 2.602 86.352 3.44 86.597 4.448 C 86.853 5.456 86.981 6.635 86.981 7.984 C 86.981 9.318 86.853 10.488 86.597 11.496 C 86.352 12.504 86.016 13.342 85.589 14.009 C 85.162 14.66 84.671 15.156 84.116 15.498 C 83.573 15.823 83.001 15.986 82.404 15.986 Z M 82.404 15.381 C 82.788 15.381 83.114 15.211 83.38 14.869 C 83.658 14.513 83.882 14.009 84.052 13.357 C 84.234 12.706 84.362 11.923 84.436 11.008 C 84.522 10.093 84.565 9.085 84.565 7.984 C 84.565 6.867 84.522 5.859 84.436 4.96 C 84.362 4.045 84.234 3.262 84.052 2.61 C 83.882 1.959 83.658 1.455 83.38 1.098 C 83.114 0.741 82.788 0.563 82.404 0.563 C 82.02 0.563 81.689 0.741 81.412 1.098 C 81.135 1.439 80.905 1.936 80.723 2.587 C 80.553 3.238 80.425 4.021 80.339 4.936 C 80.265 5.836 80.228 6.836 80.228 7.937 C 80.228 9.054 80.265 10.07 80.339 10.985 C 80.425 11.9 80.553 12.683 80.723 13.334 C 80.905 13.986 81.135 14.49 81.412 14.846 C 81.689 15.203 82.02 15.381 82.404 15.381 Z M 87.857 15.614 L 87.857 15.102 L 89.522 14.776 L 90.722 14.776 L 92.354 15.102 L 92.354 15.614 Z M 88.898 15.614 C 88.919 15.009 88.935 14.296 88.946 13.474 C 88.967 12.652 88.978 11.799 88.978 10.915 L 88.978 4.913 C 88.978 4.06 88.972 3.238 88.962 2.447 C 88.951 1.641 88.935 0.935 88.913 0.33 L 91.282 0.33 C 91.271 0.935 91.261 1.641 91.25 2.447 C 91.24 3.238 91.229 4.06 91.218 4.913 L 91.218 10.915 C 91.229 11.799 91.24 12.652 91.25 13.474 C 91.261 14.296 91.271 15.009 91.282 15.614 Z M 96.019 15.87 C 95.4 15.87 94.92 15.715 94.579 15.405 C 94.237 15.079 93.987 14.536 93.827 13.776 L 93.155 10.868 C 93.048 10.357 92.931 9.922 92.802 9.566 C 92.675 9.193 92.509 8.907 92.307 8.705 C 92.104 8.503 91.837 8.403 91.506 8.403 L 90.018 8.403 L 90.018 7.821 L 91.794 7.821 C 92.307 7.821 92.701 7.666 92.979 7.356 C 93.267 7.03 93.464 6.604 93.571 6.076 C 93.688 5.533 93.747 4.952 93.747 4.332 C 93.747 3.215 93.592 2.378 93.283 1.819 C 92.973 1.245 92.504 0.959 91.874 0.959 L 90.002 0.959 L 90.002 0.33 L 91.906 0.33 C 93.304 0.33 94.317 0.664 94.947 1.331 C 95.587 1.998 95.907 2.936 95.907 4.145 C 95.907 4.843 95.737 5.502 95.395 6.123 C 95.064 6.743 94.574 7.247 93.923 7.635 C 93.283 8.023 92.498 8.224 91.57 8.24 L 91.57 8.077 C 92.253 8.123 92.824 8.216 93.283 8.356 C 93.742 8.48 94.115 8.666 94.403 8.914 C 94.701 9.147 94.942 9.449 95.123 9.822 C 95.315 10.178 95.475 10.62 95.603 11.148 L 96.708 15.288 L 95.923 14.776 L 97.54 15.102 L 97.54 15.614 C 97.377 15.661 97.211 15.7 97.044 15.73 C 96.876 15.776 96.705 15.807 96.531 15.823 C 96.362 15.854 96.191 15.87 96.019 15.87 Z M 87.857 0.819 L 87.857 0.33 L 90.658 0.33 L 90.658 1.168 L 89.522 1.168 Z M 99.014 15.614 L 99.014 15.102 L 100.742 14.776 L 101.959 14.776 L 103.687 15.102 L 103.687 15.614 Z M 100.167 15.614 C 100.177 15.025 100.188 14.459 100.198 13.916 C 100.209 13.373 100.214 12.838 100.214 12.311 C 100.225 11.783 100.23 11.233 100.23 10.659 L 100.23 8.751 L 102.471 8.751 L 102.471 12.311 C 102.481 12.838 102.492 13.373 102.503 13.916 C 102.514 14.459 102.525 15.025 102.535 15.614 Z M 100.775 11.101 L 97.462 0.33 L 99.958 0.33 L 102.375 8.542 L 102.215 8.542 L 102.263 8.379 L 104.568 0.33 L 105.112 0.33 L 101.879 11.101 Z M 96.853 0.819 L 96.853 0.33 L 101.287 0.33 L 101.287 0.819 L 99.558 1.168 L 98.262 1.168 Z M 103.207 0.819 L 103.207 0.33 L 105.896 0.33 L 105.896 0.819 L 104.712 1.052 L 104.375 1.052 Z\" fill=\"var(--token-470311dc-ecb1-4ea7-94b5-3bfc5ca7b39a, rgb(63, 95, 95)) /* {&quot;name&quot;:&quot;Dark Accent&quot;} */\"></path></svg>',svgContentId:1458781084,withExternalLayout:true,...addPropertyOverrides({i5czuJoCW:{svgContentId:10048715676}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hc8weo\",layoutDependency:layoutDependency,layoutId:\"EoF0OEEMn\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nuqsms\",layoutDependency:layoutDependency,layoutId:\"zXV9LmKnZ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1equah4\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"dx1RhVij4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dlydcb\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"eR0xT7yvn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:\"Mumbai-based craftsmanship. From concept to creation, we specialise in turning ideas into reality. Looking for custom designs, bulk orders, or corporate gifts?\"})}),className:\"framer-1ej5r2j\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"mz4fcqyPg\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iSF7E5Kgg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Know more\"})})})}),className:\"framer-1g4kkzj\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"k0BLnJgFP\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gttm8h\",layoutDependency:layoutDependency,layoutId:\"ZaBwE_pxQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10u364m\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"DBCuA2MOt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-721ofx\",layoutDependency:layoutDependency,layoutId:\"Q0_VzBCfv\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eSRXq0B69\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xicxpp framer-17hfp1n\",\"data-framer-name\":\"living\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ohVFvAp8V\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 43 18\"><path d=\"M 0 0.054 L 1.198 0.054 L 1.198 11.527 C 1.198 12.063 1.286 12.426 1.461 12.615 C 1.64 12.804 1.927 12.876 2.322 12.831 C 2.457 12.822 2.556 12.811 2.618 12.797 C 2.679 12.781 2.739 12.765 2.8 12.75 L 3.049 13.803 C 2.955 13.83 2.832 13.857 2.679 13.884 C 2.523 13.912 2.366 13.927 2.208 13.932 C 1.49 13.977 0.942 13.819 0.565 13.459 C 0.188 13.094 0 12.545 0 11.811 L 0 0.054 Z M 4.678 13.884 L 4.678 3.512 L 5.883 3.512 L 5.883 13.884 Z M 5.291 1.729 C 5.044 1.729 4.833 1.645 4.658 1.479 C 4.483 1.308 4.395 1.103 4.395 0.864 C 4.395 0.626 4.483 0.423 4.658 0.257 C 4.833 0.085 5.044 0 5.291 0 C 5.538 0 5.749 0.086 5.924 0.257 C 6.099 0.423 6.186 0.626 6.186 0.864 C 6.186 1.103 6.099 1.308 5.924 1.479 C 5.749 1.645 5.538 1.729 5.291 1.729 Z M 17.055 3.512 L 13.279 13.884 L 12 13.884 L 8.224 3.512 L 9.523 3.512 L 12.592 12.297 L 12.687 12.297 L 15.756 3.512 L 17.055 3.512 Z M 19.413 13.884 L 19.413 3.512 L 20.618 3.512 L 20.618 13.884 Z M 20.025 1.729 C 19.779 1.729 19.568 1.645 19.393 1.479 C 19.218 1.308 19.13 1.103 19.13 0.864 C 19.13 0.626 19.218 0.423 19.393 0.257 C 19.568 0.085 19.779 0 20.025 0 C 20.272 0 20.483 0.086 20.658 0.257 C 20.833 0.423 20.921 0.626 20.921 0.864 C 20.921 1.103 20.833 1.308 20.658 1.479 C 20.483 1.645 20.272 1.729 20.025 1.729 Z M 24.985 7.401 L 24.985 13.884 L 23.786 13.884 L 23.786 3.512 L 24.951 3.512 L 24.951 5.139 L 25.059 5.139 C 25.301 4.608 25.678 4.182 26.19 3.863 C 26.706 3.539 27.343 3.377 28.101 3.377 C 28.797 3.377 29.407 3.523 29.932 3.815 C 30.462 4.104 30.872 4.529 31.164 5.092 C 31.46 5.655 31.608 6.346 31.608 7.165 L 31.608 13.884 L 30.41 13.884 L 30.41 7.239 C 30.41 6.388 30.172 5.715 29.696 5.22 C 29.225 4.725 28.593 4.477 27.798 4.477 C 27.255 4.477 26.773 4.594 26.351 4.828 C 25.929 5.063 25.595 5.4 25.348 5.841 C 25.106 6.278 24.985 6.798 24.985 7.401 Z M 38.708 17.99 C 38.003 17.99 37.386 17.898 36.857 17.713 C 36.327 17.533 35.881 17.286 35.517 16.97 C 35.154 16.655 34.871 16.302 34.669 15.91 L 35.652 15.262 C 35.8 15.523 35.997 15.78 36.244 16.032 C 36.496 16.284 36.821 16.493 37.22 16.66 C 37.624 16.826 38.12 16.91 38.708 16.91 C 39.623 16.91 40.362 16.68 40.922 16.221 C 41.488 15.762 41.771 15.048 41.771 14.08 L 41.771 11.744 L 41.663 11.744 C 41.524 12.059 41.324 12.374 41.064 12.689 C 40.804 13 40.462 13.259 40.041 13.466 C 39.623 13.673 39.105 13.776 38.486 13.776 C 37.66 13.776 36.926 13.571 36.285 13.162 C 35.647 12.752 35.145 12.167 34.777 11.406 C 34.413 10.641 34.232 9.729 34.232 8.671 C 34.232 7.622 34.409 6.699 34.763 5.902 C 35.122 5.105 35.623 4.484 36.264 4.038 C 36.906 3.593 37.653 3.37 38.506 3.37 C 39.139 3.37 39.664 3.482 40.081 3.707 C 40.498 3.928 40.833 4.203 41.084 4.531 C 41.34 4.86 41.54 5.18 41.683 5.49 L 41.804 5.49 L 41.804 3.512 L 42.975 3.512 L 42.975 14.154 C 42.975 15.032 42.789 15.755 42.417 16.322 C 42.044 16.889 41.537 17.308 40.896 17.578 C 40.254 17.853 39.525 17.99 38.708 17.99 Z M 38.627 12.676 C 39.291 12.676 39.859 12.516 40.33 12.196 C 40.801 11.872 41.163 11.408 41.414 10.805 C 41.665 10.202 41.791 9.484 41.791 8.651 C 41.791 7.84 41.667 7.122 41.421 6.496 C 41.174 5.866 40.815 5.371 40.344 5.011 C 39.877 4.646 39.305 4.464 38.627 4.464 C 37.936 4.464 37.353 4.651 36.877 5.024 C 36.401 5.398 36.042 5.902 35.8 6.537 C 35.558 7.167 35.437 7.872 35.437 8.651 C 35.437 9.443 35.56 10.143 35.807 10.751 C 36.054 11.354 36.415 11.827 36.89 12.169 C 37.366 12.507 37.945 12.676 38.627 12.676 Z\" fill=\"var(--token-470311dc-ecb1-4ea7-94b5-3bfc5ca7b39a, rgb(63, 95, 95)) /* {&quot;name&quot;:&quot;Dark Accent&quot;} */\"></path></svg>',svgContentId:3059785917,withExternalLayout:true,...addPropertyOverrides({i5czuJoCW:{svgContentId:11649720509}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-roxb1t\",layoutDependency:layoutDependency,layoutId:\"CW6DIywyX\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rdyq5u\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"HUAbzzyoP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3jb8ba\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"eq29WaWcg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:\"Elevate your living spaces with our curated collection of essentials. From elegant decor to functional accessories, discover pieces that enhance your everyday life.\"})}),className:\"framer-1j02ow7\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"SyAlf84J1\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eSRXq0B69\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Bring it home\"})})})}),className:\"framer-fgb6ns\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"KtjceTjkk\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1364td6\",layoutDependency:layoutDependency,layoutId:\"ltCmxQlx8\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jqe77q\",\"data-framer-name\":\"Studio\",layoutDependency:layoutDependency,layoutId:\"GXjK1Iwt_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tlssxo\",layoutDependency:layoutDependency,layoutId:\"O_6NLciCa\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yOgC5foOx\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1re3ap0 framer-17hfp1n\",\"data-framer-name\":\"FURE_Studio\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kJYnF_JkR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 16\"><path d=\"M 6.301 7.825 C 6.301 7.825 7.9 6.452 7.885 5.214 C 7.861 3.18 1.084 1.532 1.548 4.85 C 2.012 8.168 6.108 10.651 5.509 13.091 C 5.152 14.543 2.032 14.678 1.741 13.776 C 1.291 12.384 8.271 11.657 11.632 9.944 C 14.178 8.647 17.819 3.342 16.021 4.486 C 14.137 5.685 13.088 9.966 11.91 13.027 C 11.745 13.455 12.192 14.132 12.895 14.332 C 14.282 14.728 10.211 10.655 11.375 11.293 C 13.173 12.277 20.089 9.837 20.089 9.837 C 20.089 9.837 18.778 11.322 19.361 12.277 C 20.311 13.836 23.793 10.308 23.793 10.308 C 23.793 10.308 23.116 11.256 23.707 11.914 C 25.259 13.641 29.937 9.837 29.937 9.837 C 29.937 9.837 27.708 11.881 28.631 12.705 C 30.43 14.311 38.822 0.33 36.317 1.468 C 34.433 2.324 31.752 12.841 32.314 12.684 C 35.076 11.914 39.336 9.837 39.336 9.837 C 39.336 9.837 38.507 11.019 38.822 11.914 C 39.721 14.461 50.169 9.837 50.169 9.837 C 50.169 9.837 47.747 11.849 48.735 12.491 C 49.625 13.07 51.069 11.1 51.069 11.1 C 51.069 11.1 52.824 11.431 54.58 11.1 C 56.635 10.712 58.112 9.837 58.112 9.837 M 40 6.391 C 41.597 6.426 42.484 6.451 44.089 6.134\" fill=\"transparent\" stroke-width=\"1.23\" stroke=\"var(--token-470311dc-ecb1-4ea7-94b5-3bfc5ca7b39a, rgb(63, 95, 95)) /* {&quot;name&quot;:&quot;Dark Accent&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:1307475379,withExternalLayout:true,...addPropertyOverrides({i5czuJoCW:{svgContentId:9897409971}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lvz6s2\",layoutDependency:layoutDependency,layoutId:\"ewLxqASXa\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g7mvm3\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"I5VbetSmf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vr304l\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"GMgsspUhv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:\"Step into our creative hub. Explore new designs, innovative projects, and artistic collaborations.\"})}),className:\"framer-8xd9d6\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"oFbv5V_oL\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yOgC5foOx\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Take a peek\"})})})}),className:\"framer-l1z6tt\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"uwzxHcYX8\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ffz6t5\",\"data-framer-name\":\"About Dropdown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QkUXwwuQO\",onMouseLeave:onMouseLeave50am96,style:{backgroundColor:\"var(--token-2a5b628f-44ff-4d4f-8964-4368b1ed18e0, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-90naoj\",layoutDependency:layoutDependency,layoutId:\"ktVA5uUHl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ttc2yu-container\",layoutDependency:layoutDependency,layoutId:\"tL_3KJ7bq-container\",children:/*#__PURE__*/_jsx(NavigationFeaturedImage,{height:\"100%\",id:\"tL_3KJ7bq\",layoutId:\"tL_3KJ7bq\",style:{height:\"100%\",width:\"100%\"},TfWHPliWv:addImageAlt({src:\"https://framerusercontent.com/images/2gjgAj6T3ofJOgPrgJyUDOebg.webp\",srcSet:\"https://framerusercontent.com/images/2gjgAj6T3ofJOgPrgJyUDOebg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2gjgAj6T3ofJOgPrgJyUDOebg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2gjgAj6T3ofJOgPrgJyUDOebg.webp 1500w\"},\"\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15cmjll\",layoutDependency:layoutDependency,layoutId:\"QTMX5eqvw\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kf7v9\",\"data-framer-name\":\"Pins\",layoutDependency:layoutDependency,layoutId:\"izYrCLuWG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12dbgly\",layoutDependency:layoutDependency,layoutId:\"ogkaFUn4c\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fFqwrDzIo\"},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1brr2mv framer-17hfp1n\",\"data-framer-name\":\"Banka_Impex_logo\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:325,layoutDependency:layoutDependency,layoutId:\"FfPO0tkOn\",svg:'<svg width=\"325\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M129.996 22.864c0-8.748 5.418-14.216 12.227-14.216 4.126 0 7.058 1.89 8.549 4.325V9.046h8.5v27.735h-8.5v-3.927c-1.541 2.436-4.473 4.324-8.598 4.324-6.76 0-12.178-5.566-12.178-14.314Zm20.776.05c0-4.424-2.833-6.86-6.064-6.86-3.181 0-6.063 2.386-6.063 6.81 0 4.423 2.882 6.909 6.063 6.909 3.231 0 6.064-2.436 6.064-6.86ZM100.961 36.78V0h8.499v20.329l8.4-11.283h10.488l-11.532 13.917 11.631 13.818H117.91l-8.45-11.63v11.63h-8.499Zm-14.356 0V21.72c0-3.777-2.087-5.864-5.318-5.864-3.23 0-5.318 2.087-5.318 5.865v15.06h-8.5V9.046h8.5v3.678c1.69-2.336 4.672-3.976 8.4-3.976 6.411 0 10.686 4.374 10.686 11.83V36.78h-8.45Zm-54.56-13.916c0-8.748 5.417-14.216 12.227-14.216 4.125 0 7.058 1.89 8.549 4.325V9.046h8.5v27.735h-8.5v-3.927c-1.54 2.436-4.474 4.324-8.599 4.324-6.76 0-12.177-5.566-12.177-14.314Zm20.776.05c0-4.424-2.833-6.86-6.064-6.86-3.181 0-6.064 2.386-6.064 6.81 0 4.423 2.883 6.909 6.064 6.909 3.23 0 6.064-2.436 6.064-6.86ZM8.5 12.973c1.54-2.486 4.572-4.325 8.548-4.325 6.86 0 12.228 5.468 12.228 14.216s-5.418 14.314-12.228 14.314c-4.075 0-7.008-1.839-8.549-4.274v3.877H0V0h8.5v12.973Zm12.127 9.89c0-4.423-2.883-6.809-6.113-6.809-3.181 0-6.064 2.436-6.064 6.86 0 4.423 2.883 6.859 6.064 6.859 3.23 0 6.113-2.486 6.113-6.91Z\" fill=\"#B19B72\"/><path d=\"m315.129 36.779-5.319-7.704-4.473 7.704h-9.195l9.145-14.166-9.394-13.569h9.543l5.319 7.655 4.473-7.655h9.195l-9.294 13.967 9.543 13.768h-9.543Zm-34.856-21.323c-2.784 0-4.921 1.69-5.418 4.771h10.637c0-3.032-2.386-4.771-5.219-4.771Zm13.271 12.128c-1.342 5.417-6.263 9.592-13.172 9.592-8.151 0-14.016-5.467-14.016-14.265 0-8.797 5.765-14.265 14.016-14.265 8.102 0 13.818 5.368 13.818 13.818 0 .795-.05 1.64-.149 2.485h-19.236c.299 3.629 2.535 5.319 5.269 5.319 2.386 0 3.728-1.193 4.424-2.684h9.046ZM241.362 12.97c1.541-2.435 4.473-4.324 8.549-4.324 6.809 0 12.227 5.468 12.227 14.216s-5.418 14.314-12.227 14.314c-4.076 0-7.008-1.938-8.549-4.274V50h-8.499V9.044h8.499v3.927Zm12.128 9.892c0-4.424-2.883-6.81-6.114-6.81-3.181 0-6.064 2.436-6.064 6.86 0 4.423 2.883 6.859 6.064 6.859 3.231 0 6.114-2.486 6.114-6.91Zm-35.188 13.917v-15.06c0-3.629-2.088-5.617-5.319-5.617-3.23 0-5.318 1.988-5.318 5.617v15.06h-8.45v-15.06c0-3.629-2.087-5.617-5.318-5.617-3.231 0-5.318 1.988-5.318 5.617v15.06h-8.5V9.044h8.5v3.48c1.64-2.237 4.473-3.778 8.101-3.778 4.176 0 7.555 1.839 9.444 5.17 1.839-2.934 5.318-5.17 9.344-5.17 6.86 0 11.283 4.374 11.283 11.83v16.203h-8.449Zm-52.881 0V9.044h8.499V36.78h-8.499Z\" fill=\"#222\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gy3h37\",layoutDependency:layoutDependency,layoutId:\"DdSxhopi8\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q2m530\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"m_vHTrhBR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1brzhpa\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"DbDFXKUNJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:\"Based in Mumbai, our family, with three generations, boasts a rich legacy spanning 50+ years in the fashion accessories space. Over the decades, we've built a formidable network of capabilities. FURE emerged as our retail brand and since 2014 we've embarked on an exhilarating journey of expanding our product portfolio with Pins, Manufactory, Living, and Studio.\"})}),className:\"framer-b4jlrc\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"Kl2CJ2gYy\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fFqwrDzIo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Know more\"})})})}),className:\"framer-z2xtbx\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"TIhlnhfHf\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-trputh\",layoutDependency:layoutDependency,layoutId:\"nFor4V82n\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yc5kdk\",\"data-framer-name\":\"More\",layoutDependency:layoutDependency,layoutId:\"YVphi8tIP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1szg89i\",layoutDependency:layoutDependency,layoutId:\"sVl1ZnFAU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtcmVndWxhcg==\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102)))\"},children:\"MORE\"})}),className:\"framer-2i77xx\",fonts:[\"GF;Kanit-regular\"],layoutDependency:layoutDependency,layoutId:\"PI7jUajs9\",style:{\"--extracted-r6o4lv\":\"var(--token-0b98ea98-d235-4390-a317-0256aed5918f, rgb(102, 102, 102))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cgjdf8\",layoutDependency:layoutDependency,layoutId:\"Ty7xYCakC\",style:{backgroundColor:\"var(--token-21192934-f2ef-4846-b10e-c0efab009a55, rgb(219, 219, 219))\"}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xyx3v9\",\"data-framer-name\":\"Columns\",layoutDependency:layoutDependency,layoutId:\"zejxmgK7x\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kgbxqc\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"xMJjVlirL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XmmyMVYhk\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Contact us\"})})})}),className:\"framer-poizu0\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"vefjhbM51\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jjksQm2OM\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Custom orders\"})})})}),className:\"framer-ojygit\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"EZ3RKXML6\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xOWEmkqv2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Work with us\"})})})}),className:\"framer-985jo\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"KMeSObv5f\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ghZ5n58R9\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Affiliate program\"})})})}),className:\"framer-5z48je\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"fAvZBFUXR\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Mt6FPtqUG\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Studio blog\"})})})}),className:\"framer-1y6tel8\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"zap8bZ3r_\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Z983lsk4Y\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1s9fi8x\",\"data-styles-preset\":\"vvfY9AIXi\",children:\"Newsletter\"})})})}),className:\"framer-bxd777\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"agIrNix7N\",style:{\"--extracted-r6o4lv\":\"var(--token-a1f2f69a-becc-4bd8-a4c7-f50aa0b8ba1b, rgb(51, 51, 51))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-598r2.framer-17hfp1n, .framer-598r2 .framer-17hfp1n { display: block; }\",\".framer-598r2.framer-1ecr1qk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-598r2 .framer-h2yh04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 84px; justify-content: space-between; overflow: visible; padding: 0px 36px 0px 36px; position: relative; width: 100%; }\",\".framer-598r2 .framer-1lw3v3q { flex: none; height: 84px; overflow: visible; position: relative; text-decoration: none; width: 142px; }\",\".framer-598r2 .framer-jan9qp { flex: none; height: 36px; left: calc(50.00000000000002% - 142px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 142px; }\",\".framer-598r2 .framer-1re3a6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 84px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-15xksik, .framer-598r2 .framer-48fzvf, .framer-598r2 .framer-iovwsp, .framer-598r2 .framer-11vdyxi { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 24px; position: relative; text-decoration: none; width: auto; }\",\".framer-598r2 .framer-fplb9u, .framer-598r2 .framer-tak1o7, .framer-598r2 .framer-uc0dvh, .framer-598r2 .framer-3ac4ln, .framer-598r2 .framer-18ipcg5, .framer-598r2 .framer-c4s655, .framer-598r2 .framer-4uug6w, .framer-598r2 .framer-1mrtyun, .framer-598r2 .framer-xv61y4, .framer-598r2 .framer-1dplrgm, .framer-598r2 .framer-wscouf, .framer-598r2 .framer-13j9lfu, .framer-598r2 .framer-4qxf4i, .framer-598r2 .framer-t7p59r, .framer-598r2 .framer-eiugb, .framer-598r2 .framer-1xp51ap, .framer-598r2 .framer-16qmp6i, .framer-598r2 .framer-1gph5y3, .framer-598r2 .framer-13gio3m, .framer-598r2 .framer-417acx, .framer-598r2 .framer-14nx0rb, .framer-598r2 .framer-jmi5kj, .framer-598r2 .framer-14bzxuh, .framer-598r2 .framer-18srvyd, .framer-598r2 .framer-18pyxox, .framer-598r2 .framer-gp4wys, .framer-598r2 .framer-u033x3, .framer-598r2 .framer-1ka1uv8, .framer-598r2 .framer-9jow5a, .framer-598r2 .framer-1halcue, .framer-598r2 .framer-7icqgp, .framer-598r2 .framer-vx5taf, .framer-598r2 .framer-bkscfw, .framer-598r2 .framer-um389w, .framer-598r2 .framer-1tiacs8, .framer-598r2 .framer-y7hac1, .framer-598r2 .framer-1fbn2j, .framer-598r2 .framer-14m2l5z, .framer-598r2 .framer-1bquo16, .framer-598r2 .framer-1g4kkzj, .framer-598r2 .framer-fgb6ns, .framer-598r2 .framer-l1z6tt, .framer-598r2 .framer-z2xtbx, .framer-598r2 .framer-poizu0, .framer-598r2 .framer-ojygit, .framer-598r2 .framer-985jo, .framer-598r2 .framer-5z48je, .framer-598r2 .framer-1y6tel8, .framer-598r2 .framer-bxd777 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-598r2 .framer-yj0m7k, .framer-598r2 .framer-1vheyue { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 24px; position: relative; width: auto; }\",\".framer-598r2 .framer-q9e8z7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 84px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 142px; }\",\".framer-598r2 .framer-hbfpjo-container, .framer-598r2 .framer-yvwq0v-container, .framer-598r2 .framer-1yajw9g-container, .framer-598r2 .framer-1899g38-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-598r2 .framer-9uyz64, .framer-598r2 .framer-pae12j, .framer-598r2 .framer-15zf4ro, .framer-598r2 .framer-ffz6t5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 36px 36px 48px 36px; position: relative; width: 100%; }\",\".framer-598r2 .framer-1wwf3b0, .framer-598r2 .framer-s8mnwo, .framer-598r2 .framer-10vnkic { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-598r2 .framer-60vkst, .framer-598r2 .framer-q90tkb, .framer-598r2 .framer-azauun, .framer-598r2 .framer-1s5kxbv, .framer-598r2 .framer-336rfc, .framer-598r2 .framer-kf7v9 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-zyjsbe, .framer-598r2 .framer-n8diop, .framer-598r2 .framer-o6sym0, .framer-598r2 .framer-c0lwiw, .framer-598r2 .framer-10bzaef, .framer-598r2 .framer-12dbgly { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-598r2 .framer-13wa77p { flex: none; height: 16px; position: relative; text-decoration: none; width: 63px; }\",\".framer-598r2 .framer-16b79ye, .framer-598r2 .framer-jqau1r, .framer-598r2 .framer-1dvf0tw, .framer-598r2 .framer-wjgvu6, .framer-598r2 .framer-sfahls, .framer-598r2 .framer-rf0u5w, .framer-598r2 .framer-1hc8weo, .framer-598r2 .framer-roxb1t, .framer-598r2 .framer-1lvz6s2, .framer-598r2 .framer-1gy3h37, .framer-598r2 .framer-cgjdf8 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-598r2 .framer-1o3xfbi, .framer-598r2 .framer-18dsj44, .framer-598r2 .framer-khky0n, .framer-598r2 .framer-sj8nmt, .framer-598r2 .framer-1nuqsms, .framer-598r2 .framer-90naoj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-598r2 .framer-1ndv7sh, .framer-598r2 .framer-3wh9bb, .framer-598r2 .framer-qlff3k, .framer-598r2 .framer-uzmmq, .framer-598r2 .framer-fstwtk, .framer-598r2 .framer-1vdwhud, .framer-598r2 .framer-1equah4, .framer-598r2 .framer-1rdyq5u, .framer-598r2 .framer-g7mvm3, .framer-598r2 .framer-q2m530, .framer-598r2 .framer-xyx3v9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-3l1tor, .framer-598r2 .framer-g4ot8r, .framer-598r2 .framer-ft6c0j, .framer-598r2 .framer-xkh8di, .framer-598r2 .framer-1jagw49, .framer-598r2 .framer-6lwyhi, .framer-598r2 .framer-ojua9t, .framer-598r2 .framer-1q5f57u, .framer-598r2 .framer-1kn96ze, .framer-598r2 .framer-1kgbxqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-1kpjntz, .framer-598r2 .framer-lyizig, .framer-598r2 .framer-gttm8h, .framer-598r2 .framer-15cmjll { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-598r2 .framer-1lhf909 { flex: none; height: 16px; position: relative; text-decoration: none; width: 42px; }\",\".framer-598r2 .framer-rt1kee, .framer-598r2 .framer-13430o7, .framer-598r2 .framer-10u364m, .framer-598r2 .framer-1jqe77q, .framer-598r2 .framer-yc5kdk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-598r2 .framer-1jw0tqo, .framer-598r2 .framer-721ofx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-1avjcfu { aspect-ratio: 2.3966480446927374 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; text-decoration: none; width: 43px; }\",\".framer-598r2 .framer-10zjajt, .framer-598r2 .framer-1364td6, .framer-598r2 .framer-trputh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-598r2 .framer-16a8sn8, .framer-598r2 .framer-tlssxo, .framer-598r2 .framer-1szg89i { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-pc33g, .framer-598r2 .framer-1re3ap0 { flex: none; height: 16px; position: relative; text-decoration: none; width: 60px; }\",\".framer-598r2 .framer-75dans-container { flex: none; height: 200px; position: relative; width: 150px; }\",\".framer-598r2 .framer-k6nvyw, .framer-598r2 .framer-2i77xx { flex: none; height: 16px; position: relative; white-space: pre; width: auto; }\",\".framer-598r2 .framer-11i0nf0-container, .framer-598r2 .framer-ttc2yu-container { flex: none; height: 200px; position: relative; width: 300px; }\",\".framer-598r2 .framer-18gt998 { flex: none; height: 17px; position: relative; text-decoration: none; width: 42px; }\",\".framer-598r2 .framer-z03c3j, .framer-598r2 .framer-1dlydcb, .framer-598r2 .framer-3jb8ba, .framer-598r2 .framer-1vr304l, .framer-598r2 .framer-1brzhpa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-598r2 .framer-ihbgr7, .framer-598r2 .framer-1ej5r2j, .framer-598r2 .framer-1j02ow7, .framer-598r2 .framer-8xd9d6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-598r2 .framer-r2idow { flex: none; height: 16px; position: relative; text-decoration: none; width: 106px; }\",\".framer-598r2 .framer-xicxpp { flex: none; height: 18px; position: relative; text-decoration: none; width: 43px; }\",\".framer-598r2 .framer-1brr2mv { aspect-ratio: 6.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; text-decoration: none; width: 104px; }\",\".framer-598r2 .framer-b4jlrc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-598r2.framer-1ecr1qk, .framer-598r2 .framer-1re3a6p, .framer-598r2 .framer-15xksik, .framer-598r2 .framer-yj0m7k, .framer-598r2 .framer-48fzvf, .framer-598r2 .framer-iovwsp, .framer-598r2 .framer-1vheyue, .framer-598r2 .framer-11vdyxi, .framer-598r2 .framer-q9e8z7, .framer-598r2 .framer-9uyz64, .framer-598r2 .framer-1wwf3b0, .framer-598r2 .framer-60vkst, .framer-598r2 .framer-zyjsbe, .framer-598r2 .framer-1o3xfbi, .framer-598r2 .framer-1ndv7sh, .framer-598r2 .framer-3l1tor, .framer-598r2 .framer-g4ot8r, .framer-598r2 .framer-ft6c0j, .framer-598r2 .framer-1kpjntz, .framer-598r2 .framer-q90tkb, .framer-598r2 .framer-n8diop, .framer-598r2 .framer-3wh9bb, .framer-598r2 .framer-xkh8di, .framer-598r2 .framer-rt1kee, .framer-598r2 .framer-1jw0tqo, .framer-598r2 .framer-qlff3k, .framer-598r2 .framer-1jagw49, .framer-598r2 .framer-10zjajt, .framer-598r2 .framer-13430o7, .framer-598r2 .framer-16a8sn8, .framer-598r2 .framer-uzmmq, .framer-598r2 .framer-6lwyhi, .framer-598r2 .framer-18dsj44, .framer-598r2 .framer-pae12j, .framer-598r2 .framer-s8mnwo, .framer-598r2 .framer-azauun, .framer-598r2 .framer-o6sym0, .framer-598r2 .framer-khky0n, .framer-598r2 .framer-fstwtk, .framer-598r2 .framer-ojua9t, .framer-598r2 .framer-1q5f57u, .framer-598r2 .framer-1kn96ze, .framer-598r2 .framer-sj8nmt, .framer-598r2 .framer-15zf4ro, .framer-598r2 .framer-lyizig, .framer-598r2 .framer-1s5kxbv, .framer-598r2 .framer-c0lwiw, .framer-598r2 .framer-1vdwhud, .framer-598r2 .framer-z03c3j, .framer-598r2 .framer-10vnkic, .framer-598r2 .framer-336rfc, .framer-598r2 .framer-10bzaef, .framer-598r2 .framer-1nuqsms, .framer-598r2 .framer-1equah4, .framer-598r2 .framer-1dlydcb, .framer-598r2 .framer-gttm8h, .framer-598r2 .framer-10u364m, .framer-598r2 .framer-721ofx, .framer-598r2 .framer-1rdyq5u, .framer-598r2 .framer-3jb8ba, .framer-598r2 .framer-1364td6, .framer-598r2 .framer-1jqe77q, .framer-598r2 .framer-tlssxo, .framer-598r2 .framer-g7mvm3, .framer-598r2 .framer-1vr304l, .framer-598r2 .framer-ffz6t5, .framer-598r2 .framer-90naoj, .framer-598r2 .framer-15cmjll, .framer-598r2 .framer-kf7v9, .framer-598r2 .framer-12dbgly, .framer-598r2 .framer-q2m530, .framer-598r2 .framer-1brzhpa, .framer-598r2 .framer-trputh, .framer-598r2 .framer-yc5kdk, .framer-598r2 .framer-1szg89i, .framer-598r2 .framer-xyx3v9, .framer-598r2 .framer-1kgbxqc { gap: 0px; } .framer-598r2.framer-1ecr1qk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-598r2.framer-1ecr1qk > :first-child, .framer-598r2 .framer-15xksik > :first-child, .framer-598r2 .framer-yj0m7k > :first-child, .framer-598r2 .framer-48fzvf > :first-child, .framer-598r2 .framer-iovwsp > :first-child, .framer-598r2 .framer-1vheyue > :first-child, .framer-598r2 .framer-11vdyxi > :first-child, .framer-598r2 .framer-1wwf3b0 > :first-child, .framer-598r2 .framer-60vkst > :first-child, .framer-598r2 .framer-zyjsbe > :first-child, .framer-598r2 .framer-1o3xfbi > :first-child, .framer-598r2 .framer-3l1tor > :first-child, .framer-598r2 .framer-g4ot8r > :first-child, .framer-598r2 .framer-ft6c0j > :first-child, .framer-598r2 .framer-1kpjntz > :first-child, .framer-598r2 .framer-q90tkb > :first-child, .framer-598r2 .framer-n8diop > :first-child, .framer-598r2 .framer-xkh8di > :first-child, .framer-598r2 .framer-rt1kee > :first-child, .framer-598r2 .framer-1jw0tqo > :first-child, .framer-598r2 .framer-1jagw49 > :first-child, .framer-598r2 .framer-10zjajt > :first-child, .framer-598r2 .framer-13430o7 > :first-child, .framer-598r2 .framer-16a8sn8 > :first-child, .framer-598r2 .framer-6lwyhi > :first-child, .framer-598r2 .framer-18dsj44 > :first-child, .framer-598r2 .framer-s8mnwo > :first-child, .framer-598r2 .framer-azauun > :first-child, .framer-598r2 .framer-o6sym0 > :first-child, .framer-598r2 .framer-khky0n > :first-child, .framer-598r2 .framer-ojua9t > :first-child, .framer-598r2 .framer-1q5f57u > :first-child, .framer-598r2 .framer-1kn96ze > :first-child, .framer-598r2 .framer-sj8nmt > :first-child, .framer-598r2 .framer-lyizig > :first-child, .framer-598r2 .framer-1s5kxbv > :first-child, .framer-598r2 .framer-c0lwiw > :first-child, .framer-598r2 .framer-z03c3j > :first-child, .framer-598r2 .framer-10vnkic > :first-child, .framer-598r2 .framer-336rfc > :first-child, .framer-598r2 .framer-10bzaef > :first-child, .framer-598r2 .framer-1nuqsms > :first-child, .framer-598r2 .framer-1dlydcb > :first-child, .framer-598r2 .framer-gttm8h > :first-child, .framer-598r2 .framer-10u364m > :first-child, .framer-598r2 .framer-721ofx > :first-child, .framer-598r2 .framer-3jb8ba > :first-child, .framer-598r2 .framer-1364td6 > :first-child, .framer-598r2 .framer-1jqe77q > :first-child, .framer-598r2 .framer-tlssxo > :first-child, .framer-598r2 .framer-1vr304l > :first-child, .framer-598r2 .framer-90naoj > :first-child, .framer-598r2 .framer-15cmjll > :first-child, .framer-598r2 .framer-kf7v9 > :first-child, .framer-598r2 .framer-12dbgly > :first-child, .framer-598r2 .framer-1brzhpa > :first-child, .framer-598r2 .framer-trputh > :first-child, .framer-598r2 .framer-yc5kdk > :first-child, .framer-598r2 .framer-1szg89i > :first-child, .framer-598r2 .framer-1kgbxqc > :first-child { margin-top: 0px; } .framer-598r2.framer-1ecr1qk > :last-child, .framer-598r2 .framer-15xksik > :last-child, .framer-598r2 .framer-yj0m7k > :last-child, .framer-598r2 .framer-48fzvf > :last-child, .framer-598r2 .framer-iovwsp > :last-child, .framer-598r2 .framer-1vheyue > :last-child, .framer-598r2 .framer-11vdyxi > :last-child, .framer-598r2 .framer-1wwf3b0 > :last-child, .framer-598r2 .framer-60vkst > :last-child, .framer-598r2 .framer-zyjsbe > :last-child, .framer-598r2 .framer-1o3xfbi > :last-child, .framer-598r2 .framer-3l1tor > :last-child, .framer-598r2 .framer-g4ot8r > :last-child, .framer-598r2 .framer-ft6c0j > :last-child, .framer-598r2 .framer-1kpjntz > :last-child, .framer-598r2 .framer-q90tkb > :last-child, .framer-598r2 .framer-n8diop > :last-child, .framer-598r2 .framer-xkh8di > :last-child, .framer-598r2 .framer-rt1kee > :last-child, .framer-598r2 .framer-1jw0tqo > :last-child, .framer-598r2 .framer-1jagw49 > :last-child, .framer-598r2 .framer-10zjajt > :last-child, .framer-598r2 .framer-13430o7 > :last-child, .framer-598r2 .framer-16a8sn8 > :last-child, .framer-598r2 .framer-6lwyhi > :last-child, .framer-598r2 .framer-18dsj44 > :last-child, .framer-598r2 .framer-s8mnwo > :last-child, .framer-598r2 .framer-azauun > :last-child, .framer-598r2 .framer-o6sym0 > :last-child, .framer-598r2 .framer-khky0n > :last-child, .framer-598r2 .framer-ojua9t > :last-child, .framer-598r2 .framer-1q5f57u > :last-child, .framer-598r2 .framer-1kn96ze > :last-child, .framer-598r2 .framer-sj8nmt > :last-child, .framer-598r2 .framer-lyizig > :last-child, .framer-598r2 .framer-1s5kxbv > :last-child, .framer-598r2 .framer-c0lwiw > :last-child, .framer-598r2 .framer-z03c3j > :last-child, .framer-598r2 .framer-10vnkic > :last-child, .framer-598r2 .framer-336rfc > :last-child, .framer-598r2 .framer-10bzaef > :last-child, .framer-598r2 .framer-1nuqsms > :last-child, .framer-598r2 .framer-1dlydcb > :last-child, .framer-598r2 .framer-gttm8h > :last-child, .framer-598r2 .framer-10u364m > :last-child, .framer-598r2 .framer-721ofx > :last-child, .framer-598r2 .framer-3jb8ba > :last-child, .framer-598r2 .framer-1364td6 > :last-child, .framer-598r2 .framer-1jqe77q > :last-child, .framer-598r2 .framer-tlssxo > :last-child, .framer-598r2 .framer-1vr304l > :last-child, .framer-598r2 .framer-90naoj > :last-child, .framer-598r2 .framer-15cmjll > :last-child, .framer-598r2 .framer-kf7v9 > :last-child, .framer-598r2 .framer-12dbgly > :last-child, .framer-598r2 .framer-1brzhpa > :last-child, .framer-598r2 .framer-trputh > :last-child, .framer-598r2 .framer-yc5kdk > :last-child, .framer-598r2 .framer-1szg89i > :last-child, .framer-598r2 .framer-1kgbxqc > :last-child { margin-bottom: 0px; } .framer-598r2 .framer-1re3a6p > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-598r2 .framer-1re3a6p > :first-child, .framer-598r2 .framer-q9e8z7 > :first-child, .framer-598r2 .framer-9uyz64 > :first-child, .framer-598r2 .framer-1ndv7sh > :first-child, .framer-598r2 .framer-3wh9bb > :first-child, .framer-598r2 .framer-qlff3k > :first-child, .framer-598r2 .framer-uzmmq > :first-child, .framer-598r2 .framer-pae12j > :first-child, .framer-598r2 .framer-fstwtk > :first-child, .framer-598r2 .framer-15zf4ro > :first-child, .framer-598r2 .framer-1vdwhud > :first-child, .framer-598r2 .framer-1equah4 > :first-child, .framer-598r2 .framer-1rdyq5u > :first-child, .framer-598r2 .framer-g7mvm3 > :first-child, .framer-598r2 .framer-ffz6t5 > :first-child, .framer-598r2 .framer-q2m530 > :first-child, .framer-598r2 .framer-xyx3v9 > :first-child { margin-left: 0px; } .framer-598r2 .framer-1re3a6p > :last-child, .framer-598r2 .framer-q9e8z7 > :last-child, .framer-598r2 .framer-9uyz64 > :last-child, .framer-598r2 .framer-1ndv7sh > :last-child, .framer-598r2 .framer-3wh9bb > :last-child, .framer-598r2 .framer-qlff3k > :last-child, .framer-598r2 .framer-uzmmq > :last-child, .framer-598r2 .framer-pae12j > :last-child, .framer-598r2 .framer-fstwtk > :last-child, .framer-598r2 .framer-15zf4ro > :last-child, .framer-598r2 .framer-1vdwhud > :last-child, .framer-598r2 .framer-1equah4 > :last-child, .framer-598r2 .framer-1rdyq5u > :last-child, .framer-598r2 .framer-g7mvm3 > :last-child, .framer-598r2 .framer-ffz6t5 > :last-child, .framer-598r2 .framer-q2m530 > :last-child, .framer-598r2 .framer-xyx3v9 > :last-child { margin-right: 0px; } .framer-598r2 .framer-15xksik > *, .framer-598r2 .framer-yj0m7k > *, .framer-598r2 .framer-48fzvf > *, .framer-598r2 .framer-iovwsp > *, .framer-598r2 .framer-1vheyue > *, .framer-598r2 .framer-11vdyxi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-598r2 .framer-q9e8z7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-598r2 .framer-9uyz64 > *, .framer-598r2 .framer-pae12j > *, .framer-598r2 .framer-15zf4ro > *, .framer-598r2 .framer-ffz6t5 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-598r2 .framer-1wwf3b0 > *, .framer-598r2 .framer-s8mnwo > *, .framer-598r2 .framer-10vnkic > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-598r2 .framer-60vkst > *, .framer-598r2 .framer-q90tkb > *, .framer-598r2 .framer-rt1kee > *, .framer-598r2 .framer-13430o7 > *, .framer-598r2 .framer-azauun > *, .framer-598r2 .framer-1s5kxbv > *, .framer-598r2 .framer-336rfc > *, .framer-598r2 .framer-10u364m > *, .framer-598r2 .framer-1jqe77q > *, .framer-598r2 .framer-kf7v9 > *, .framer-598r2 .framer-yc5kdk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-598r2 .framer-zyjsbe > *, .framer-598r2 .framer-n8diop > *, .framer-598r2 .framer-16a8sn8 > *, .framer-598r2 .framer-o6sym0 > *, .framer-598r2 .framer-c0lwiw > *, .framer-598r2 .framer-10bzaef > *, .framer-598r2 .framer-tlssxo > *, .framer-598r2 .framer-12dbgly > *, .framer-598r2 .framer-1szg89i > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-598r2 .framer-1o3xfbi > *, .framer-598r2 .framer-18dsj44 > *, .framer-598r2 .framer-khky0n > *, .framer-598r2 .framer-sj8nmt > *, .framer-598r2 .framer-1nuqsms > *, .framer-598r2 .framer-90naoj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-598r2 .framer-1ndv7sh > *, .framer-598r2 .framer-3wh9bb > *, .framer-598r2 .framer-qlff3k > *, .framer-598r2 .framer-uzmmq > *, .framer-598r2 .framer-fstwtk > *, .framer-598r2 .framer-1vdwhud > *, .framer-598r2 .framer-1equah4 > *, .framer-598r2 .framer-1rdyq5u > *, .framer-598r2 .framer-g7mvm3 > *, .framer-598r2 .framer-q2m530 > *, .framer-598r2 .framer-xyx3v9 > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-598r2 .framer-3l1tor > *, .framer-598r2 .framer-g4ot8r > *, .framer-598r2 .framer-ft6c0j > *, .framer-598r2 .framer-xkh8di > *, .framer-598r2 .framer-1jagw49 > *, .framer-598r2 .framer-6lwyhi > *, .framer-598r2 .framer-ojua9t > *, .framer-598r2 .framer-1q5f57u > *, .framer-598r2 .framer-1kn96ze > *, .framer-598r2 .framer-z03c3j > *, .framer-598r2 .framer-1dlydcb > *, .framer-598r2 .framer-3jb8ba > *, .framer-598r2 .framer-1vr304l > *, .framer-598r2 .framer-1brzhpa > *, .framer-598r2 .framer-1kgbxqc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-598r2 .framer-1kpjntz > *, .framer-598r2 .framer-lyizig > *, .framer-598r2 .framer-gttm8h > *, .framer-598r2 .framer-15cmjll > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-598r2 .framer-1jw0tqo > *, .framer-598r2 .framer-721ofx > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-598r2 .framer-10zjajt > *, .framer-598r2 .framer-1364td6 > *, .framer-598r2 .framer-trputh > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } }\",\".framer-598r2.framer-v-1jts7v9 .framer-4uug6w { order: 0; }\",\".framer-598r2.framer-v-1jts7v9 .framer-1mrtyun { order: 1; }\",\".framer-598r2.framer-v-1jts7v9 .framer-xv61y4 { order: 2; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mQ3kW17oe\":{\"layout\":[\"fixed\",\"auto\"]},\"F9l94oYOD\":{\"layout\":[\"fixed\",\"auto\"]},\"dwaqpYz0D\":{\"layout\":[\"fixed\",\"auto\"]},\"DoVUl9XJq\":{\"layout\":[\"fixed\",\"auto\"]},\"i5czuJoCW\":{\"layout\":[\"fixed\",\"auto\"]},\"GjyaY2qTw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYNjaaO8CA=withCSS(Component,css,\"framer-598r2\");export default FramerYNjaaO8CA;FramerYNjaaO8CA.displayName=\"Navigation/FURE\";FramerYNjaaO8CA.defaultProps={height:84,width:1200};addPropertyControls(FramerYNjaaO8CA,{variant:{options:[\"dl7rhKlnV\",\"mQ3kW17oe\",\"F9l94oYOD\",\"dwaqpYz0D\",\"DoVUl9XJq\",\"i5czuJoCW\",\"GjyaY2qTw\"],optionTitles:[\"Default\",\"Products\",\"Collections\",\"New In\",\"Most Loved\",\"Discover\",\"About\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYNjaaO8CA,[{explicitInter:true,fonts:[{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKZ-Go6G5tXcoaXEQGodLxA.woff2\",weight:\"400\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4-OSWlX6BJNUJy.woff2\",weight:\"300\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr5aOiWlX6BJNUJy.woff2\",weight:\"200\"}]},...NavigationIconsFonts,...NavigationFeaturedImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYNjaaO8CA\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mQ3kW17oe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F9l94oYOD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dwaqpYz0D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DoVUl9XJq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i5czuJoCW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GjyaY2qTw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"84\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YNjaaO8CA.map"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Slideshow", "RichText2", "u", "css", "FramerTYY09zBjI", "withCSS", "TYY09zBjI_default", "addFonts", "SlideshowFonts", "NavigationIconsFonts", "getFonts", "wpxhZnHsK_default", "NavigationFeaturedImageFonts", "dobe1DFyP_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1neda0o", "args", "onMouseEnterukfpb6", "onMouseEnter179g6hw", "onMouseLeave50am96", "onMouseEnter40s3ne", "onMouseEnterr6bs66", "onMouseEnter4x93fg", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerYNjaaO8CA", "withCSS", "YNjaaO8CA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
