{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/be4xrCsGjhEIXT4yd2DD/NSMXZnSdDZbYI4aTIjLO/FrameshopStock.js", "ssg:https://framerusercontent.com/modules/eFUG6VRWf3ZCWjj2E6gk/g4nEmJ1sLgmEr0iy0ArO/FrameshopQuantitySelector.js", "ssg:https://framerusercontent.com/modules/Z7eNirmgPawmhcvuEUg4/0M152VKyX9MgQkyKJ4rw/FrameshopBuyNow.js", "ssg:https://framerusercontent.com/modules/8pbfOOIBVt7QVcBFfpG1/yiV0U49jQRG23AjbZ4HH/VwTT6H5M1.js", "ssg:https://framerusercontent.com/modules/ivBANhOG5fumN2V7Ep1k/nM7EgqzeZHQFNJR7fVx0/AgUcF3ZXK.js", "ssg:https://framerusercontent.com/modules/rm5Ewv0XnqBUMP2dupdf/a9uxNDZhpFGpaOgb8foi/iBjEDqNrG.js", "ssg:https://framerusercontent.com/modules/qrQiln9UgAb4c4WO2VAD/mrCZlW3NwxVviKql3lXd/W4oceyHr6.js", "ssg:https://framerusercontent.com/modules/wMjCDdlUwEnBQhG4U7AY/WxVioroU3jZzqgVGdeLG/uAyEW8jLz.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function FrameshopStock(props){const{shopId,frameshopArticleId,textColor,fontSize,fontFamily,fontWeight,errorText,spinnerColor,spinnerSize,outOfStockText}=props;const[stockQuantity,setStockQuantity]=React.useState(null);const[loading,setLoading]=React.useState(true);const[error,setError]=React.useState(false);// Fonction pour charger dynamiquement les polices Google Fonts\nconst loadGoogleFont=font=>{if(!font)return;const linkId=`google-font-${font.replace(/\\s+/g,\"-\")}`;if(!document.getElementById(linkId)){const link=document.createElement(\"link\");link.id=linkId;link.href=`https://fonts.googleapis.com/css2?family=${font.replace(/ /g,\"+\")}&display=swap`;link.rel=\"stylesheet\";document.head.appendChild(link);}};// Charger la police choisie\nReact.useEffect(()=>{if(fontFamily){loadGoogleFont(fontFamily);}},[fontFamily]);// Injection des keyframes pour l'animation du spinner\nReact.useEffect(()=>{const styleSheet=document.createElement(\"style\");styleSheet.type=\"text/css\";styleSheet.innerText=spinnerKeyframes;document.head.appendChild(styleSheet);// Nettoyage lors du d\u00E9montage du composant\nreturn()=>{document.head.removeChild(styleSheet);};},[]);// Fonction pour r\u00E9cup\u00E9rer le stock\nconst fetchStock=async()=>{if(!shopId||!frameshopArticleId){setError(true);setLoading(false);return;}try{setLoading(true);const response=await fetch(`https://frameshopv2.support-cd7.workers.dev/stock?shopId=${encodeURIComponent(shopId)}&frameshop_article_id=${encodeURIComponent(frameshopArticleId)}`,{method:\"GET\",headers:{\"Content-Type\":\"application/json\"}});if(response.ok){const data=await response.json();setStockQuantity(data.stock_quantity);setError(false);}else{console.error(\"Error fetching stock:\",response.statusText);setError(true);}}catch(err){console.error(\"Error fetching stock:\",err);setError(true);}finally{setLoading(false);}};// Appeler fetchStock lorsque le composant est mont\u00E9 ou lorsque shopId ou frameshopArticleId changent\nReact.useEffect(()=>{fetchStock();},[shopId,frameshopArticleId]);const textStyle={color:textColor,fontSize:`${fontSize}px`,fontFamily:fontFamily,fontWeight:fontWeight,textAlign:\"left\"};if(loading){// Afficher le spinner pendant le chargement\nreturn /*#__PURE__*/_jsx(\"div\",{style:spinnerContainerStyle,children:/*#__PURE__*/_jsx(\"div\",{style:{...spinnerStyle,borderTopColor:spinnerColor,width:`${spinnerSize}px`,height:`${spinnerSize}px`,borderWidth:`${spinnerSize/8}px`}})});}else if(error){return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:errorText||\"Error loading stock.\"});}else if(stockQuantity===0){// Afficher le message personnalis\u00E9 lorsque le stock est \u00E0 z\u00E9ro\nreturn /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:outOfStockText});}else{return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:`${stockQuantity}`});}}// Styles pour le spinner\nconst spinnerContainerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\"};const spinnerStyle={borderStyle:\"solid\",borderColor:\"rgba(0, 0, 0, 0.1)\",borderTopStyle:\"solid\",borderTopColor:\"#000\",borderRadius:\"50%\",animation:\"spin 1s linear infinite\"};// Animation du spinner\nconst spinnerKeyframes=`\n    @keyframes spin {\n        0% { transform: rotate(0deg); }\n        100% { transform: rotate(360deg); }\n    }\n`;FrameshopStock.defaultProps={shopId:\"\",frameshopArticleId:\"\",textColor:\"#000000\",fontSize:16,fontFamily:\"Inter\",fontWeight:\"400\",errorText:\"Error loading stock.\",spinnerColor:\"#000000\",spinnerSize:24,outOfStockText:\"Out of Stock\"};addPropertyControls(FrameshopStock,{shopId:{title:\"Shop ID\",type:ControlType.String,defaultValue:\"\"},frameshopArticleId:{title:\"Frameshop Article ID\",type:ControlType.String,defaultValue:\"\"},textColor:{title:\"Text Color\",type:ControlType.Color},fontSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:100,defaultValue:16},fontFamily:{title:\"Font Family\",type:ControlType.String},fontWeight:{title:\"Font Weight\",type:ControlType.Enum,options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"100 Thin\",\"200 Extra Light\",\"300 Light\",\"400 Normal\",\"500 Medium\",\"600 Semi Bold\",\"700 Bold\",\"800 Extra Bold\",\"900 Black\"],defaultValue:\"400\"},errorText:{title:\"Error Text\",type:ControlType.String,defaultValue:\"Error loading stock.\"},spinnerColor:{title:\"Spinner Color\",type:ControlType.Color,defaultValue:\"#000000\"},spinnerSize:{title:\"Spinner Size\",type:ControlType.Number,min:10,max:100,defaultValue:24,unit:\"px\"},outOfStockText:{title:\"Out of Stock Text\",type:ControlType.String,defaultValue:\"Out of Stock\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameshopStock\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FrameshopStock.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{Plus,Minus}from\"lucide-react\";import{quantityEvents}from\"https://framer.com/m/QuantityEvents-8ZjF.js@kwJ8NiZrOZKCDFD8SMI4\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function FrameshopQuantitySelector(props){const[quantity,setQuantity]=useState(props.initialQuantity||1)// Quantit\u00E9 initiale\n;const[stockQuantity,setStockQuantity]=useState(null);const[loadingStock,setLoadingStock]=useState(true);const[errorStock,setErrorStock]=useState(false);// Fonction pour r\u00E9cup\u00E9rer le stock depuis l'API\nconst fetchStock=async()=>{if(!props.shopId||!props.frameshopArticleId){setErrorStock(true);setLoadingStock(false);return;}try{setLoadingStock(true);const response=await fetch(`https://frameshopv2.support-cd7.workers.dev/stock?shopId=${encodeURIComponent(props.shopId)}&frameshop_article_id=${encodeURIComponent(props.frameshopArticleId)}`);if(response.ok){const data=await response.json();setStockQuantity(data.stock_quantity);setErrorStock(false);}else{console.error(\"Error fetching stock:\",response.statusText);setErrorStock(true);}}catch(err){console.error(\"Error fetching stock:\",err);setErrorStock(true);}finally{setLoadingStock(false);}};// R\u00E9initialisation de la quantit\u00E9 au montage\nuseEffect(()=>{const initialQuantity=props.initialQuantity||1;setQuantity(initialQuantity);quantityEvents.publish(initialQuantity)// R\u00E9initialiser l'\u00E9v\u00E9nement global avec la quantit\u00E9 initiale\n;},[props.initialQuantity]);// Initialisation pour r\u00E9cup\u00E9rer le stock\nuseEffect(()=>{fetchStock();},[props.shopId,props.frameshopArticleId]);// Mise \u00E0 jour de la quantit\u00E9 et publication via events\nconst updateQuantity=newQuantity=>{setQuantity(newQuantity);quantityEvents.publish(newQuantity)// Notifie tous les abonn\u00E9s\n;};// Gestion des incr\u00E9ments/d\u00E9cr\u00E9ments\nconst increaseQuantity=()=>{if(stockQuantity===null||quantity<stockQuantity){updateQuantity(quantity+1);}};const decreaseQuantity=()=>{if(quantity>1){updateQuantity(quantity-1);}};const isIncrementDisabled=stockQuantity!==null&&quantity>=stockQuantity;const styles={container:{display:\"flex\",alignItems:\"center\",gap:\"10px\"},button:{border:`1px solid ${props.buttonBorderColor}`,background:props.buttonBackgroundColor,color:props.buttonTextColor,width:`${props.buttonSize}px`,height:`${props.buttonSize}px`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",borderRadius:\"4px\",fontSize:`${props.buttonSize*.9}px`,lineHeight:1,padding:0},buttonDisabled:{opacity:.5,cursor:\"not-allowed\"},quantity:{fontSize:`${props.fontSize}px`,fontWeight:props.fontWeight,color:props.textColor}};return /*#__PURE__*/_jsx(\"div\",{style:styles.container,children:loadingStock?/*#__PURE__*/_jsx(\"p\",{children:\"Loading stock...\"}):errorStock?/*#__PURE__*/_jsx(\"p\",{children:\"Error fetching stock\"}):/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"button\",{style:styles.button,onClick:decreaseQuantity,disabled:quantity<=1,children:/*#__PURE__*/_jsx(Minus,{size:props.buttonSize*.6,color:props.buttonTextColor})}),/*#__PURE__*/_jsx(\"div\",{style:styles.quantity,children:quantity}),/*#__PURE__*/_jsx(\"button\",{style:{...styles.button,...isIncrementDisabled?styles.buttonDisabled:{}},onClick:increaseQuantity,disabled:isIncrementDisabled,children:/*#__PURE__*/_jsx(Plus,{size:props.buttonSize*.6,color:props.buttonTextColor})})]})});}FrameshopQuantitySelector.defaultProps={shopId:\"\",frameshopArticleId:\"\",buttonBackgroundColor:\"#E5E5E5\",buttonTextColor:\"#000000\",buttonBorderColor:\"#E5E5E5\",buttonSize:30,fontSize:14,fontWeight:\"bold\",textColor:\"#000000\",initialQuantity:1};addPropertyControls(FrameshopQuantitySelector,{shopId:{type:ControlType.String,title:\"ShopID\",defaultValue:\"\"},frameshopArticleId:{type:ControlType.String,title:\"Frameshop Article ID\",defaultValue:\"\"},buttonBackgroundColor:{type:ControlType.Color,title:\"Button Background\",defaultValue:\"#E5E5E5\"},buttonTextColor:{type:ControlType.Color,title:\"Button Text Color\",defaultValue:\"#000000\"},buttonBorderColor:{type:ControlType.Color,title:\"Button Border Color\",defaultValue:\"#E5E5E5\"},buttonSize:{type:ControlType.Number,title:\"Button Size\",defaultValue:30,min:20,max:100,unit:\"px\",displayStepper:true},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:14,min:8,max:36,unit:\"px\"},fontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Thin\",\"Extra Light\",\"Light\",\"Regular\",\"Medium\",\"Semi Bold\",\"Bold\",\"Extra Bold\",\"Black\"],defaultValue:\"400\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameshopQuantitySelector\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FrameshopQuantitySelector.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{quantityEvents}from\"https://framer.com/m/QuantityEvents-8ZjF.js@kwJ8NiZrOZKCDFD8SMI4\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function FrameshopBuyNow(props){const{shopId,frameshopArticleId,successUrl,cancelUrl,buttonBackgroundColor,buttonTextColor,buttonFontSize,buttonFontFamily,buttonFontWeight,buttonPadding,buttonBorderRadius,showBorders,buttonBorderColor,buttonBorderWidth,buttonText,buttonTopLeftRadius,buttonTopRightRadius,buttonBottomRightRadius,buttonBottomLeftRadius,paddingTop,paddingRight,paddingBottom,paddingLeft,isBorderRadiusMixed,isPaddingMixed,spinnerSize,spinnerBorderThickness,spinnerBorderColor,spinnerBorderTopColor,spinnerAnimationSpeed,collectAddress,collectPhone,enableShipping,shippingTitle1,shippingRate1,shippingTitle2,shippingRate2,outOfStockText,buttonDisabledStyle}=props;const[isLoading,setIsLoading]=React.useState(false);const[quantity,setQuantity]=React.useState(1)// Quantit\u00E9 par d\u00E9faut\n;const[toastMessage,setToastMessage]=React.useState(\"\");const[showToast,setShowToast]=React.useState(false);// \u00C9tats pour la gestion des stocks\nconst[stockQuantity,setStockQuantity]=React.useState(null);const[loadingStock,setLoadingStock]=React.useState(true);const[errorStock,setErrorStock]=React.useState(false);// Charger la police choisie\nconst loadGoogleFont=font=>{const linkId=`google-font-${font.replace(/\\s+/g,\"-\")}`;if(!document.getElementById(linkId)){const link=document.createElement(\"link\");link.href=`https://fonts.googleapis.com/css2?family=${font.replace(/ /g,\"+\")}&display=swap`;link.rel=\"stylesheet\";link.id=linkId;document.head.appendChild(link);}};React.useEffect(()=>{if(buttonFontFamily){loadGoogleFont(buttonFontFamily);}},[buttonFontFamily]);// Gestion des \u00E9v\u00E9nements pour la quantit\u00E9\nReact.useEffect(()=>{const handleQuantityUpdate=newQuantity=>{setQuantity(newQuantity);};quantityEvents.subscribe(handleQuantityUpdate);setQuantity(quantityEvents.getQuantity())// Quantit\u00E9 initiale\n;return()=>{quantityEvents.unsubscribe(handleQuantityUpdate);};},[]);// Fonction pour r\u00E9cup\u00E9rer le stock du produit\nconst fetchStock=async()=>{if(!shopId||!frameshopArticleId){setErrorStock(true);setLoadingStock(false);return;}try{setLoadingStock(true);const response=await fetch(`https://frameshopv2.support-cd7.workers.dev/stock?shopId=${encodeURIComponent(shopId)}&frameshop_article_id=${encodeURIComponent(frameshopArticleId)}`,{method:\"GET\",headers:{\"Content-Type\":\"application/json\"}});if(response.ok){const data=await response.json();setStockQuantity(data.stock_quantity);setErrorStock(false);}else{console.error(\"Error fetching stock:\",response.statusText);setErrorStock(true);}}catch(err){console.error(\"Error fetching stock:\",err);setErrorStock(true);}finally{setLoadingStock(false);}};React.useEffect(()=>{fetchStock();},[shopId,frameshopArticleId]);// Fonction pour afficher le toast\nconst showToastMessage=message=>{setToastMessage(message);setShowToast(true);setTimeout(()=>setShowToast(false),3e3);};const handleBuyNow=async()=>{setIsLoading(true);// Pr\u00E9pare les options de livraison\nconst shippingOptions=[];if(enableShipping){if(shippingTitle1&&shippingRate1){shippingOptions.push({title:shippingTitle1,amount:shippingRate1});}if(shippingTitle2&&shippingRate2){shippingOptions.push({title:shippingTitle2,amount:shippingRate2});}}try{const response=await fetch(\"https://frameshopcheckout.support-cd7.workers.dev\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({shopId,frameshopArticleIds:[{id:frameshopArticleId,quantity}],successUrl,cancelUrl,collectAddress,collectPhone,shippingOptions})});const data=await response.json();if(response.ok){window.location.href=data.url;}else{console.error(\"Error:\",data);showToastMessage(\"\\xc9chec de la cr\\xe9ation de la session de paiement.\");}}catch(error){console.error(\"Request error:\",error);showToastMessage(\"\\xc9chec de la connexion au serveur.\");}finally{setIsLoading(false);}};// D\u00E9termination si le bouton doit \u00EAtre d\u00E9sactiv\u00E9\nconst isDisabled=stockQuantity===0||loadingStock||errorStock;// D\u00E9termination du texte \u00E0 afficher\nconst displayText=isDisabled?outOfStockText:buttonText;// Style du bouton avec prise en compte de l'\u00E9tat de stock\nconst buttonStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:buttonBackgroundColor,color:buttonTextColor,fontSize:`${buttonFontSize}px`,fontFamily:buttonFontFamily,fontWeight:buttonFontWeight,borderRadius:isBorderRadiusMixed?`${buttonTopLeftRadius}px ${buttonTopRightRadius}px ${buttonBottomRightRadius}px ${buttonBottomLeftRadius}px`:`${buttonBorderRadius}px`,padding:isPaddingMixed?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${buttonPadding}px`,cursor:isDisabled?\"not-allowed\":\"pointer\",border:showBorders?`${buttonBorderWidth}px solid ${buttonBorderColor}`:\"none\",width:\"100%\",position:\"relative\",opacity:isDisabled?.6:1,pointerEvents:isDisabled?\"none\":\"auto\",...isDisabled&&buttonDisabledStyle};const spinnerStyle={width:`${spinnerSize}px`,height:`${spinnerSize}px`,border:`${spinnerBorderThickness}px solid ${spinnerBorderColor}`,borderTop:`${spinnerBorderThickness}px solid ${spinnerBorderTopColor}`,borderRadius:\"50%\",animation:`spin ${spinnerAnimationSpeed}s linear infinite`};const spinnerKeyframes=`\n        @keyframes spin {\n            0% { transform: rotate(0deg); }\n            100% { transform: rotate(360deg); }\n        }\n    `;const toastStyle={position:\"fixed\",bottom:\"20px\",left:\"50%\",transform:\"translateX(-50%)\",backgroundColor:\"#ff4d4f\",color:\"#fff\",padding:\"10px 20px\",borderRadius:\"8px\",boxShadow:\"0px 4px 6px rgba(0,0,0,0.1)\",zIndex:9999};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:spinnerKeyframes}),showToast&&/*#__PURE__*/_jsx(\"div\",{style:toastStyle,children:toastMessage}),/*#__PURE__*/_jsx(\"button\",{style:buttonStyle,onClick:handleBuyNow,disabled:isDisabled,children:isLoading?/*#__PURE__*/_jsx(\"div\",{style:spinnerStyle}):displayText})]});}const toastStyle={position:\"fixed\",bottom:\"20px\",left:\"50%\",transform:\"translateX(-50%)\",backgroundColor:\"#ff4d4f\",color:\"#fff\",padding:\"10px 20px\",borderRadius:\"8px\",boxShadow:\"0px 4px 6px rgba(0,0,0,0.1)\",zIndex:9999};FrameshopBuyNow.defaultProps={shopId:\"\",frameshopArticleId:\"\",successUrl:\"\",cancelUrl:\"\",buttonBackgroundColor:\"#000000\",buttonTextColor:\"#FFFFFF\",buttonFontSize:16,buttonFontFamily:\"Inter\",buttonFontWeight:\"400\",buttonPadding:10,buttonBorderRadius:10,showBorders:false,buttonBorderColor:\"#000000\",buttonBorderWidth:1,buttonText:\"Buy Now\",spinnerSize:20,spinnerBorderThickness:3,spinnerBorderColor:\"rgba(255, 255, 255, 0.3)\",spinnerBorderTopColor:\"#fff\",spinnerAnimationSpeed:1,buttonTopLeftRadius:10,buttonTopRightRadius:10,buttonBottomRightRadius:10,buttonBottomLeftRadius:10,paddingTop:10,paddingRight:10,paddingBottom:10,paddingLeft:10,isBorderRadiusMixed:false,isPaddingMixed:false,collectAddress:true,collectPhone:true,enableShipping:false,shippingTitle1:\"\",shippingRate1:0,shippingTitle2:\"\",shippingRate2:0,outOfStockText:\"Out Of Stock\",buttonDisabledStyle:{}};addPropertyControls(FrameshopBuyNow,{shopId:{title:\"Shop ID\",type:ControlType.String},frameshopArticleId:{title:\"Frameshop Article ID\",type:ControlType.String,defaultValue:\"\"},successUrl:{title:\"Success URL\",type:ControlType.String},cancelUrl:{title:\"Cancel URL\",type:ControlType.String},collectAddress:{// Ajout du contr\u00F4le\ntitle:\"Collect Address\",type:ControlType.Boolean,defaultValue:true},collectPhone:{// Ajout du contr\u00F4le\ntitle:\"Collect Phone\",type:ControlType.Boolean,defaultValue:true},enableShipping:{// Ajout du contr\u00F4le\ntitle:\"Enable Shipping\",type:ControlType.Boolean,defaultValue:false},shippingTitle1:{// Ajout du contr\u00F4le conditionnel\ntitle:\"Shipping Option 1 Title\",type:ControlType.String,defaultValue:\"Standard\",hidden:props=>!props.enableShipping},shippingRate1:{// Ajout du contr\u00F4le conditionnel\ntitle:\"Shipping Option 1 Rate\",type:ControlType.Number,defaultValue:5,hidden:props=>!props.enableShipping},shippingTitle2:{// Ajout du contr\u00F4le conditionnel\ntitle:\"Shipping Option 2 Title\",type:ControlType.String,defaultValue:\"Express\",hidden:props=>!props.enableShipping},shippingRate2:{// Ajout du contr\u00F4le conditionnel\ntitle:\"Shipping Option 2 Rate\",type:ControlType.Number,defaultValue:10,hidden:props=>!props.enableShipping},buttonText:{title:\"Text\",type:ControlType.String,defaultValue:\"Buy Now\"},outOfStockText:{title:\"Out of Stock Text\",type:ControlType.String,defaultValue:\"Out Of Stock\"},buttonBackgroundColor:{title:\"Background\",type:ControlType.Color},buttonTextColor:{title:\"Text Color\",type:ControlType.Color},buttonFontSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:100,unit:\"px\",displayStepper:true},buttonFontFamily:{title:\"Font Family\",type:ControlType.String},buttonFontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Thin\",\"Extra Light\",\"Light\",\"Regular\",\"Medium\",\"Semi Bold\",\"Bold\",\"Extra Bold\",\"Black\"],defaultValue:\"400\"},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"isPaddingMixed\",toggleTitles:[\"Uniform\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonBorderRadius:{title:\"Border Radius\",type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"isBorderRadiusMixed\",toggleTitles:[\"Uniform\",\"Individual\"],valueKeys:[\"buttonTopLeftRadius\",\"buttonTopRightRadius\",\"buttonBottomRightRadius\",\"buttonBottomLeftRadius\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},showBorders:{title:\"Show Borders\",type:ControlType.Boolean,defaultValue:false},buttonBorderColor:{title:\"Border Color\",type:ControlType.Color,hidden:props=>!props.showBorders},buttonBorderWidth:{title:\"Border Width\",type:ControlType.Number,min:0,max:20,hidden:props=>!props.showBorders},spinnerSize:{title:\"Spinner Size\",type:ControlType.Number,defaultValue:20,min:5,max:100},spinnerBorderThickness:{title:\"Spinner Border Thickness\",type:ControlType.Number,defaultValue:3,min:1,max:10},spinnerBorderColor:{title:\"Spinner Border Color\",type:ControlType.Color,defaultValue:\"rgba(255, 255, 255, 0.3)\"},spinnerBorderTopColor:{title:\"Spinner Border Top Color\",type:ControlType.Color,defaultValue:\"#fff\"},spinnerAnimationSpeed:{title:\"Spinner Speed (s)\",type:ControlType.Number,defaultValue:1,min:.1,max:5,step:.1},buttonDisabledStyle:{title:\"Button Disabled Style\",type:ControlType.Object,properties:{backgroundColor:{type:ControlType.Color,title:\"Background Color\"},textColor:{type:ControlType.Color,title:\"Text Color\"}},defaultValue:{}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameshopBuyNow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FrameshopBuyNow.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/5vbfq5glbOa5vORjeRCy/leBRmobS8AT5NTrnR9Qa/dn51PuMst.js\";const cycleOrder=[\"xSN6gyHEB\",\"eJhsOafhi\"];const serializationHash=\"framer-5NVLS\";const variantClassNames={eJhsOafhi:\"framer-v-121k1xk\",xSN6gyHEB:\"framer-v-cxlxnw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"xSN6gyHEB\",Open:\"eJhsOafhi\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,T8rQFvSBR:answer??props.T8rQFvSBR??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xSN6gyHEB\",W88zB8mIG:question??props.W88zB8mIG??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xSN6gyHEB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8bhi8x=activeVariantCallback(async(...args)=>{setVariant(\"eJhsOafhi\");});const onTapsjtcat=activeVariantCallback(async(...args)=>{setVariant(\"xSN6gyHEB\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"eJhsOafhi\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cxlxnw\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"xSN6gyHEB\",ref:ref??ref1,style:{...style},...addPropertyOverrides({eJhsOafhi:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp1lbi\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pMLJzv0Z8\",onTap:onTap8bhi8x,...addPropertyOverrides({eJhsOafhi:{onTap:onTapsjtcat}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uzy4j4\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"CSfgxToZB\",style:{opacity:.3,rotate:0},variants:{eJhsOafhi:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w5o0n4\",layoutDependency:layoutDependency,layoutId:\"aDMnyoDNI\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dwnc9a\",layoutDependency:layoutDependency,layoutId:\"BBHdD8xIx\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-2ig2tq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zxxp1Sh0F\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jez7ok\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"Mnp30Cx_d\",style:{opacity:0},variants:{eJhsOafhi:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-5tj1w1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zCEotEPGb\",style:{\"--extracted-r6o4lv\":\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{eJhsOafhi:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5NVLS.framer-pa9xb3, .framer-5NVLS .framer-pa9xb3 { display: block; }\",\".framer-5NVLS.framer-cxlxnw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-5NVLS .framer-dp1lbi { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-5NVLS .framer-uzy4j4 { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-5NVLS .framer-w5o0n4 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-5NVLS .framer-dwnc9a { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-5NVLS .framer-2ig2tq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5NVLS .framer-jez7ok { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-5NVLS .framer-5tj1w1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5NVLS.framer-cxlxnw, .framer-5NVLS .framer-dp1lbi, .framer-5NVLS .framer-jez7ok { gap: 0px; } .framer-5NVLS.framer-cxlxnw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5NVLS.framer-cxlxnw > :first-child, .framer-5NVLS .framer-jez7ok > :first-child { margin-top: 0px; } .framer-5NVLS.framer-cxlxnw > :last-child, .framer-5NVLS .framer-jez7ok > :last-child { margin-bottom: 0px; } .framer-5NVLS .framer-dp1lbi > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5NVLS .framer-dp1lbi > :first-child { margin-left: 0px; } .framer-5NVLS .framer-dp1lbi > :last-child { margin-right: 0px; } .framer-5NVLS .framer-jez7ok > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eJhsOafhi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVwTT6H5M1=withCSS(Component,css,\"framer-5NVLS\");export default FramerVwTT6H5M1;FramerVwTT6H5M1.displayName=\"Component Informations (Product page)\";FramerVwTT6H5M1.defaultProps={height:100,width:400};addPropertyControls(FramerVwTT6H5M1,{variant:{options:[\"xSN6gyHEB\",\"eJhsOafhi\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerVwTT6H5M1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVwTT6H5M1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"100\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eJhsOafhi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ComponentInformationsProductPage from\"https://framerusercontent.com/modules/8pbfOOIBVt7QVcBFfpG1/yiV0U49jQRG23AjbZ4HH/VwTT6H5M1.js\";const ComponentInformationsProductPageFonts=getFonts(ComponentInformationsProductPage);const serializationHash=\"framer-8p2e8\";const variantClassNames={VHLYYq1Jo:\"framer-v-uo2loe\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({ecoConsciousPackaging,height,howToUseContent,id,width,...props})=>{return{...props,kpLq9E3SR:howToUseContent??props.kpLq9E3SR??\"Apply a pea-sized amount to cleansed face and neck morning and night, gently massaging in an upward motion.\",zQGho7sV1:ecoConsciousPackaging??props.zQGho7sV1??\"This tote is thoughtfully packaged in recyclable materials, ensuring your purchase is as kind to the planet as it is beautiful.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zQGho7sV1,kpLq9E3SR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VHLYYq1Jo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-uo2loe\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VHLYYq1Jo\",ref:ref??ref1,style:{backgroundColor:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13li4iy-container\",layoutDependency:layoutDependency,layoutId:\"cHQco9q1U-container\",children:/*#__PURE__*/_jsx(ComponentInformationsProductPage,{height:\"100%\",id:\"cHQco9q1U\",layoutId:\"cHQco9q1U\",style:{width:\"100%\"},T8rQFvSBR:zQGho7sV1,variant:\"xSN6gyHEB\",W88zB8mIG:\"Packaging\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1azboj1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"cnwF3zww7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+101,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p4etss-container\",layoutDependency:layoutDependency,layoutId:\"MLdraS135-container\",children:/*#__PURE__*/_jsx(ComponentInformationsProductPage,{height:\"100%\",id:\"MLdraS135\",layoutId:\"MLdraS135\",style:{width:\"100%\"},T8rQFvSBR:kpLq9E3SR,variant:\"xSN6gyHEB\",W88zB8mIG:\"Dimensions\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8p2e8.framer-1tyj2ef, .framer-8p2e8 .framer-1tyj2ef { display: block; }\",\".framer-8p2e8.framer-uo2loe { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8p2e8 .framer-13li4iy-container, .framer-8p2e8 .framer-1p4etss-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-8p2e8 .framer-1azboj1 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8p2e8.framer-uo2loe { gap: 0px; } .framer-8p2e8.framer-uo2loe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8p2e8.framer-uo2loe > :first-child { margin-top: 0px; } .framer-8p2e8.framer-uo2loe > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 121\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zQGho7sV1\":\"ecoConsciousPackaging\",\"kpLq9E3SR\":\"howToUseContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAgUcF3ZXK=withCSS(Component,css,\"framer-8p2e8\");export default FramerAgUcF3ZXK;FramerAgUcF3ZXK.displayName=\"Accordion\";FramerAgUcF3ZXK.defaultProps={height:121,width:1e3};addPropertyControls(FramerAgUcF3ZXK,{zQGho7sV1:{defaultValue:\"This tote is thoughtfully packaged in recyclable materials, ensuring your purchase is as kind to the planet as it is beautiful.\",displayTextArea:true,title:\"Eco-Conscious Packaging\",type:ControlType.String},kpLq9E3SR:{defaultValue:\"Apply a pea-sized amount to cleansed face and neck morning and night, gently massaging in an upward motion.\",displayTextArea:true,title:\"How To Use ? Content\",type:ControlType.String}});addFonts(FramerAgUcF3ZXK,[{explicitInter:true,fonts:[]},...ComponentInformationsProductPageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAgUcF3ZXK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"zQGho7sV1\\\":\\\"ecoConsciousPackaging\\\",\\\"kpLq9E3SR\\\":\\\"howToUseContent\\\"}\",\"framerIntrinsicHeight\":\"121\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"F836qdhkW\",\"mtHiQQTzF\",\"ZvTjALZnH\",\"oG7DjioKN\"];const serializationHash=\"framer-DClc3\";const variantClassNames={F836qdhkW:\"framer-v-1q5uwy4\",mtHiQQTzF:\"framer-v-1lodeip\",oG7DjioKN:\"framer-v-16qcqd9\",ZvTjALZnH:\"framer-v-1vmysiu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"F836qdhkW\",\"Variant 2\":\"mtHiQQTzF\",\"Variant 3\":\"ZvTjALZnH\",\"Variant 4\":\"oG7DjioKN\"};const getProps=({height,id,image1,image2,image3,image4,width,...props})=>{return{...props,J3ex543sI:image4??props.J3ex543sI,jsX8fuwLg:image3??props.jsX8fuwLg,MWTd8sYqV:image2??props.MWTd8sYqV,uau3yJbF_:image1??props.uau3yJbF_??{src:\"https://framerusercontent.com/images/ZNi10jouqHsdHyxjQn815cvfYhs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZNi10jouqHsdHyxjQn815cvfYhs.jpg?scale-down-to=1024 796w,https://framerusercontent.com/images/ZNi10jouqHsdHyxjQn815cvfYhs.jpg 896w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"F836qdhkW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,uau3yJbF_,MWTd8sYqV,jsX8fuwLg,J3ex543sI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F836qdhkW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ndx56o=activeVariantCallback(async(...args)=>{setVariant(\"F836qdhkW\");});const onTap1opn36g=activeVariantCallback(async(...args)=>{setVariant(\"mtHiQQTzF\");});const onTap1h5bl3s=activeVariantCallback(async(...args)=>{setVariant(\"ZvTjALZnH\");});const onTapdp4gpe=activeVariantCallback(async(...args)=>{setVariant(\"oG7DjioKN\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(MWTd8sYqV);const visible1=isSet(jsX8fuwLg);const visible2=isSet(J3ex543sI);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1q5uwy4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"F836qdhkW\",ref:refBinding,style:{...style},...addPropertyOverrides({mtHiQQTzF:{\"data-framer-name\":\"Variant 2\"},oG7DjioKN:{\"data-framer-name\":\"Variant 4\"},ZvTjALZnH:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+0+0)),pixelHeight:1152,pixelWidth:896,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(uau3yJbF_)},className:\"framer-19l3tbz\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"Js3qWSd3d\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({mtHiQQTzF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+0+0)),pixelHeight:1152,pixelWidth:896,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(MWTd8sYqV)}},oG7DjioKN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+0+0)),pixelHeight:1152,pixelWidth:896,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(J3ex543sI)}},ZvTjALZnH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+0+0)),pixelHeight:1152,pixelWidth:896,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(jsX8fuwLg)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l61ls8\",layoutDependency:layoutDependency,layoutId:\"bOLLEHs9u\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+5)+20),sizes:\"87px\",...toResponsiveImage(uau3yJbF_)},className:\"framer-kkkk2e\",\"data-framer-name\":\"Image 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Vpe2scM26\",onTap:onTap1ndx56o,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+5)+20),sizes:\"87px\",...toResponsiveImage(MWTd8sYqV)},className:\"framer-1lvk8hp\",\"data-framer-name\":\"Image 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ubGh6GnQZ\",onTap:onTap1opn36g,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+5)+20),sizes:\"87px\",...toResponsiveImage(jsX8fuwLg)},className:\"framer-1qd6h2g\",\"data-framer-name\":\"Image 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KX25TS1du\",onTap:onTap1h5bl3s,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||640)-0-(Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+151+5))/2+Math.max(0,((componentViewport?.height||640)-0-156)/1)*1+5)+20),sizes:\"87px\",...toResponsiveImage(J3ex543sI)},className:\"framer-ayfbwq\",\"data-framer-name\":\"Image 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"APNWikpU1\",onTap:onTapdp4gpe,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DClc3.framer-rbss4n, .framer-DClc3 .framer-rbss4n { display: block; }\",\".framer-DClc3.framer-1q5uwy4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 640px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 380px; }\",\".framer-DClc3 .framer-19l3tbz { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DClc3 .framer-1l61ls8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px; position: relative; width: 100%; }\",\".framer-DClc3 .framer-kkkk2e { aspect-ratio: 0.7936507936507936 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 110px); overflow: hidden; position: relative; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DClc3 .framer-1lvk8hp, .framer-DClc3 .framer-1qd6h2g, .framer-DClc3 .framer-ayfbwq { aspect-ratio: 0.7936507936507936 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 111px); overflow: hidden; position: relative; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DClc3.framer-1q5uwy4, .framer-DClc3 .framer-1l61ls8 { gap: 0px; } .framer-DClc3.framer-1q5uwy4 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-DClc3.framer-1q5uwy4 > :first-child { margin-top: 0px; } .framer-DClc3.framer-1q5uwy4 > :last-child { margin-bottom: 0px; } .framer-DClc3 .framer-1l61ls8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DClc3 .framer-1l61ls8 > :first-child { margin-left: 0px; } .framer-DClc3 .framer-1l61ls8 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 640\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mtHiQQTzF\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZvTjALZnH\":{\"layout\":[\"fixed\",\"fixed\"]},\"oG7DjioKN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uau3yJbF_\":\"image1\",\"MWTd8sYqV\":\"image2\",\"jsX8fuwLg\":\"image3\",\"J3ex543sI\":\"image4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriBjEDqNrG=withCSS(Component,css,\"framer-DClc3\");export default FrameriBjEDqNrG;FrameriBjEDqNrG.displayName=\"Product Showcase (Product Page)\";FrameriBjEDqNrG.defaultProps={height:640,width:380};addPropertyControls(FrameriBjEDqNrG,{variant:{options:[\"F836qdhkW\",\"mtHiQQTzF\",\"ZvTjALZnH\",\"oG7DjioKN\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},uau3yJbF_:{__defaultAssetReference:\"data:framer/asset-reference,ZNi10jouqHsdHyxjQn815cvfYhs.jpg?originalFilename=PRODUIT+1.jpg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},MWTd8sYqV:{title:\"Image 2\",type:ControlType.ResponsiveImage},jsX8fuwLg:{description:\"\",title:\"Image 3\",type:ControlType.ResponsiveImage},J3ex543sI:{title:\"Image 4\",type:ControlType.ResponsiveImage}});addFonts(FrameriBjEDqNrG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriBjEDqNrG\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"640\",\"framerIntrinsicWidth\":\"380\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mtHiQQTzF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZvTjALZnH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oG7DjioKN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"uau3yJbF_\\\":\\\"image1\\\",\\\"MWTd8sYqV\\\":\\\"image2\\\",\\\"jsX8fuwLg\\\":\\\"image3\\\",\\\"J3ex543sI\\\":\\\"image4\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iBjEDqNrG.map", "// Generated by Framer (05f1cd7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5vbfq5glbOa5vORjeRCy/leBRmobS8AT5NTrnR9Qa/dn51PuMst.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/fEWM0CBeVCYElfMqACEq/BKc3pO49rJHTBa6TQnKv/Fp12dE23K.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zm2x7D5WHgdZnmup778y/qw8dHhS2EfNwOty4Bsvo/q1uYgQTIC.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/8pVU9zRSNsLWZxkQKvfX/pxRthsDKYgIeUbibwl5f/tVsa3pltO.js\";const PhosphorFonts=getFonts(Phosphor);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"FTvIBqKqj\",\"fpegsxYgg\",\"f8eUZ4BoP\",\"LRNKsZLUA\",\"XZ1j41I4B\",\"znJkThdO7\"];const serializationHash=\"framer-qWuoW\";const variantClassNames={f8eUZ4BoP:\"framer-v-1vxnxdl\",fpegsxYgg:\"framer-v-id1la8\",FTvIBqKqj:\"framer-v-bv1wjy\",LRNKsZLUA:\"framer-v-o3lz6h\",XZ1j41I4B:\"framer-v-bke7p3\",znJkThdO7:\"framer-v-kab3nd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const animation3={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation3,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone 1\":\"LRNKsZLUA\",\"Phone 2\":\"XZ1j41I4B\",\"Phone 3\":\"znJkThdO7\",\"Variant 1\":\"FTvIBqKqj\",\"Variant 2\":\"fpegsxYgg\",\"Variant 3\":\"f8eUZ4BoP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FTvIBqKqj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FTvIBqKqj\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dok38k=activeVariantCallback(async(...args)=>{setVariant(\"f8eUZ4BoP\");});const onTapsfs3pi=activeVariantCallback(async(...args)=>{setVariant(\"FTvIBqKqj\");});const onTap1kabdk7=activeVariantCallback(async(...args)=>{setVariant(\"fpegsxYgg\");});const onTapfzs495=activeVariantCallback(async(...args)=>{setVariant(\"znJkThdO7\");});const onTape3qt92=activeVariantCallback(async(...args)=>{setVariant(\"LRNKsZLUA\");});const onTap1xzvqhp=activeVariantCallback(async(...args)=>{setVariant(\"XZ1j41I4B\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bv1wjy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FTvIBqKqj\",ref:refBinding,style:{...style},...addPropertyOverrides({f8eUZ4BoP:{\"data-framer-name\":\"Variant 3\"},fpegsxYgg:{\"data-framer-name\":\"Variant 2\"},LRNKsZLUA:{\"data-framer-name\":\"Phone 1\"},XZ1j41I4B:{\"data-framer-name\":\"Phone 2\"},znJkThdO7:{\"data-framer-name\":\"Phone 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u7ae6j\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vuTB0gLZq\",onTap:onTap1dok38k,style:{backgroundColor:\"var(--token-26e4ba1a-606c-4709-bbe1-86c51b5372a3, rgb(240, 240, 240))\",borderBottomLeftRadius:35,borderBottomRightRadius:35,borderTopLeftRadius:35,borderTopRightRadius:35},whileHover:animation,...addPropertyOverrides({f8eUZ4BoP:{onTap:onTap1kabdk7},fpegsxYgg:{onTap:onTapsfs3pi},LRNKsZLUA:{onTap:onTapfzs495},XZ1j41I4B:{onTap:onTape3qt92},znJkThdO7:{onTap:onTap1xzvqhp}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-khy93j-container\",\"data-framer-appear-id\":\"khy93j\",initial:animation2,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"r4Ww5_Yn0-container\",nodeId:\"r4Ww5_Yn0\",optimized:true,rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"r4Ww5_Yn0\",layoutId:\"r4Ww5_Yn0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1550udw\",layoutDependency:layoutDependency,layoutId:\"uRz8LjwHv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o4su43\",layoutDependency:layoutDependency,layoutId:\"DgtbszYTm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0)))\"},children:\"Andrea\"})}),className:\"framer-pdy7vk\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MM6rn84W8\",style:{\"--extracted-a0htzi\":\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f8eUZ4BoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0)))\"},children:\"Jemimah\"})})},fpegsxYgg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0)))\"},children:\"Ruth\"})})},XZ1j41I4B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0)))\"},children:\"Ruth\"})})},znJkThdO7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0)))\"},children:\"Jemimah\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176)))\"}})}),className:\"framer-1vzz943\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VbWYGFh80\",style:{\"--extracted-r6o4lv\":\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XZ1j41I4B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})})},znJkThdO7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x04d2c\",layoutDependency:layoutDependency,layoutId:\"aBNSoNeju\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iuk2kf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Q3GFN0gzz-container\",nodeId:\"Q3GFN0gzz\",rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Q3GFN0gzz\",layoutId:\"Q3GFN0gzz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5xbo9o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YYksyZcmM-container\",nodeId:\"YYksyZcmM\",rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"YYksyZcmM\",layoutId:\"YYksyZcmM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tbnju2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WxzASkTxt-container\",nodeId:\"WxzASkTxt\",rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"WxzASkTxt\",layoutId:\"WxzASkTxt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7osr5g-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OrzkzJQPF-container\",nodeId:\"OrzkzJQPF\",rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"OrzkzJQPF\",layoutId:\"OrzkzJQPF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10vc1at-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uctDzEwDr-container\",nodeId:\"uctDzEwDr\",rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"uctDzEwDr\",layoutId:\"uctDzEwDr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7880e\",\"data-styles-preset\":\"Fp12dE23K\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Very happy with my christmas present. Good quality, carefully crafted handbag which suits all my needs for shopping, going on a walk and even a night out. Love the colours and design!\"'})}),className:\"framer-xt7yyz\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wua1cgK3P\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f8eUZ4BoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7880e\",\"data-styles-preset\":\"Fp12dE23K\",style:{\"--framer-text-alignment\":\"center\"},children:\"I recently purchased a bag from Jackie and was absolutely delighted with my experience. The bag was so lovely that I couldn't resist ordering more items! The finishing on each bag is top-notch, reflecting the careful craftsmanship and love put into their creation.  Jackie gets a solid 5-star rating from me for her efficiency and quick delivery. The entire process was smooth, and my items arrived promptly. I highly recommend Jackie's bags for anyone seeking beautifully hand-made accessories with a personal touch.\"})})},fpegsxYgg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b7880e\",\"data-styles-preset\":\"Fp12dE23K\",style:{\"--framer-text-alignment\":\"center\"},children:\" Beautifully made definitely 5 stars would purchase again any time \"})})},XZ1j41I4B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-51ltlj\",\"data-styles-preset\":\"tVsa3pltO\",style:{\"--framer-text-alignment\":\"center\"},children:\" Beautifully made definitely 5 stars would purchase again any time \"})})},znJkThdO7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-51ltlj\",\"data-styles-preset\":\"tVsa3pltO\",style:{\"--framer-text-alignment\":\"center\"},children:\"I recently purchased a bag from Jackie and was absolutely delighted with my experience. The bag was so lovely that I couldn't resist ordering more items! The finishing on each bag is top-notch, reflecting the careful craftsmanship and love put into their creation.  Jackie gets a solid 5-star rating from me for her efficiency and quick delivery. The entire process was smooth, and my items arrived promptly. I highly recommend Jackie's bags for anyone seeking beautifully hand-made accessories with a personal touch.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1tpdk\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NSHbnRxC3\",onTap:onTap1kabdk7,style:{backgroundColor:\"var(--token-26e4ba1a-606c-4709-bbe1-86c51b5372a3, rgb(240, 240, 240))\",borderBottomLeftRadius:35,borderBottomRightRadius:35,borderTopLeftRadius:35,borderTopRightRadius:35},whileHover:animation,...addPropertyOverrides({f8eUZ4BoP:{onTap:onTapsfs3pi},fpegsxYgg:{onTap:onTap1dok38k},LRNKsZLUA:{onTap:onTap1xzvqhp},XZ1j41I4B:{onTap:onTapfzs495},znJkThdO7:{onTap:onTape3qt92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1ofnfqv-container\",\"data-framer-appear-id\":\"1ofnfqv\",initial:animation2,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EvCvKxn4B-container\",nodeId:\"EvCvKxn4B\",optimized:true,rendersWithMotion:true,scopeId:\"W4oceyHr6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"EvCvKxn4B\",layoutId:\"EvCvKxn4B\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qWuoW.framer-1b5ebzk, .framer-qWuoW .framer-1b5ebzk { display: block; }\",\".framer-qWuoW.framer-bv1wjy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-qWuoW .framer-1u7ae6j, .framer-qWuoW .framer-1d1tpdk { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 70px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qWuoW .framer-khy93j-container, .framer-qWuoW .framer-1ofnfqv-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-qWuoW .framer-1550udw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qWuoW .framer-1o4su43 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qWuoW .framer-pdy7vk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qWuoW .framer-1vzz943 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-qWuoW .framer-1x04d2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 5px 10px 5px 10px; position: relative; width: min-content; }\",\".framer-qWuoW .framer-iuk2kf-container, .framer-qWuoW .framer-5xbo9o-container, .framer-qWuoW .framer-1tbnju2-container, .framer-qWuoW .framer-7osr5g-container, .framer-qWuoW .framer-10vc1at-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-qWuoW .framer-xt7yyz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qWuoW.framer-bv1wjy, .framer-qWuoW .framer-1u7ae6j, .framer-qWuoW .framer-1550udw, .framer-qWuoW .framer-1o4su43, .framer-qWuoW .framer-1x04d2c, .framer-qWuoW .framer-1d1tpdk { gap: 0px; } .framer-qWuoW.framer-bv1wjy > *, .framer-qWuoW .framer-1u7ae6j > *, .framer-qWuoW .framer-1d1tpdk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qWuoW.framer-bv1wjy > :first-child, .framer-qWuoW .framer-1u7ae6j > :first-child, .framer-qWuoW .framer-1x04d2c > :first-child, .framer-qWuoW .framer-1d1tpdk > :first-child { margin-left: 0px; } .framer-qWuoW.framer-bv1wjy > :last-child, .framer-qWuoW .framer-1u7ae6j > :last-child, .framer-qWuoW .framer-1x04d2c > :last-child, .framer-qWuoW .framer-1d1tpdk > :last-child { margin-right: 0px; } .framer-qWuoW .framer-1550udw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qWuoW .framer-1550udw > :first-child, .framer-qWuoW .framer-1o4su43 > :first-child { margin-top: 0px; } .framer-qWuoW .framer-1550udw > :last-child, .framer-qWuoW .framer-1o4su43 > :last-child { margin-bottom: 0px; } .framer-qWuoW .framer-1o4su43 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qWuoW .framer-1x04d2c > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-qWuoW.framer-v-o3lz6h.framer-bv1wjy, .framer-qWuoW.framer-v-bke7p3.framer-bv1wjy, .framer-qWuoW.framer-v-kab3nd.framer-bv1wjy { gap: 5px; }\",\".framer-qWuoW.framer-v-o3lz6h .framer-1u7ae6j, .framer-qWuoW.framer-v-o3lz6h .framer-1d1tpdk, .framer-qWuoW.framer-v-bke7p3 .framer-1u7ae6j, .framer-qWuoW.framer-v-bke7p3 .framer-1d1tpdk, .framer-qWuoW.framer-v-kab3nd .framer-1u7ae6j, .framer-qWuoW.framer-v-kab3nd .framer-1d1tpdk { height: 40px; width: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-qWuoW.framer-v-o3lz6h .framer-khy93j-container, .framer-qWuoW.framer-v-o3lz6h .framer-1ofnfqv-container, .framer-qWuoW.framer-v-bke7p3 .framer-khy93j-container, .framer-qWuoW.framer-v-bke7p3 .framer-1ofnfqv-container, .framer-qWuoW.framer-v-kab3nd .framer-khy93j-container, .framer-qWuoW.framer-v-kab3nd .framer-1ofnfqv-container { height: 20px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qWuoW.framer-v-o3lz6h.framer-bv1wjy { gap: 0px; } .framer-qWuoW.framer-v-o3lz6h.framer-bv1wjy > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-qWuoW.framer-v-o3lz6h.framer-bv1wjy > :first-child { margin-left: 0px; } .framer-qWuoW.framer-v-o3lz6h.framer-bv1wjy > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qWuoW.framer-v-bke7p3.framer-bv1wjy { gap: 0px; } .framer-qWuoW.framer-v-bke7p3.framer-bv1wjy > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-qWuoW.framer-v-bke7p3.framer-bv1wjy > :first-child { margin-left: 0px; } .framer-qWuoW.framer-v-bke7p3.framer-bv1wjy > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qWuoW.framer-v-kab3nd.framer-bv1wjy { gap: 0px; } .framer-qWuoW.framer-v-kab3nd.framer-bv1wjy > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-qWuoW.framer-v-kab3nd.framer-bv1wjy > :first-child { margin-left: 0px; } .framer-qWuoW.framer-v-kab3nd.framer-bv1wjy > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 181\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fpegsxYgg\":{\"layout\":[\"fixed\",\"auto\"]},\"f8eUZ4BoP\":{\"layout\":[\"fixed\",\"auto\"]},\"LRNKsZLUA\":{\"layout\":[\"fixed\",\"auto\"]},\"XZ1j41I4B\":{\"layout\":[\"fixed\",\"auto\"]},\"znJkThdO7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW4oceyHr6=withCSS(Component,css,\"framer-qWuoW\");export default FramerW4oceyHr6;FramerW4oceyHr6.displayName=\"Testimonials Show\";FramerW4oceyHr6.defaultProps={height:181,width:1120};addPropertyControls(FramerW4oceyHr6,{variant:{options:[\"FTvIBqKqj\",\"fpegsxYgg\",\"f8eUZ4BoP\",\"LRNKsZLUA\",\"XZ1j41I4B\",\"znJkThdO7\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Phone 1\",\"Phone 2\",\"Phone 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW4oceyHr6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW4oceyHr6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1120\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"181\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fpegsxYgg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f8eUZ4BoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LRNKsZLUA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XZ1j41I4B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"znJkThdO7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W4oceyHr6.map", "// Generated by Framer (d74aa50)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Fetcher,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FrameshopAddToCart from\"https://framerusercontent.com/modules/2U6qFmsOuMql7LNdSDG8/BPyN36u8KGTmpUQo0YAy/FrameshopAddtocart.js\";import FrameshopStock from\"https://framerusercontent.com/modules/be4xrCsGjhEIXT4yd2DD/NSMXZnSdDZbYI4aTIjLO/FrameshopStock.js\";import FrameshopQuantitySelector from\"https://framerusercontent.com/modules/eFUG6VRWf3ZCWjj2E6gk/g4nEmJ1sLgmEr0iy0ArO/FrameshopQuantitySelector.js\";import ButtonButton from\"https://framerusercontent.com/modules/rOgsqeNIcxUu9abjjmWB/QMEqeIFd8Sxl1TusqHmH/W6lT3vppp.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import FrameshopBuyNow from\"https://framerusercontent.com/modules/Z7eNirmgPawmhcvuEUg4/0M152VKyX9MgQkyKJ4rw/FrameshopBuyNow.js\";import Accordion from\"#framer/local/canvasComponent/AgUcF3ZXK/AgUcF3ZXK.js\";import ProductShowcaseProductPage from\"#framer/local/canvasComponent/iBjEDqNrG/iBjEDqNrG.js\";import Footer from\"#framer/local/canvasComponent/O5RQCjaMm/O5RQCjaMm.js\";import Navbar4 from\"#framer/local/canvasComponent/qJ5ksmsRd/qJ5ksmsRd.js\";import AccordionFAQ from\"#framer/local/canvasComponent/VB54vKh5K/VB54vKh5K.js\";import TestimonialsShow from\"#framer/local/canvasComponent/W4oceyHr6/W4oceyHr6.js\";import ButtonCta from\"#framer/local/canvasComponent/y6yrX3GaX/y6yrX3GaX.js\";import FrameshopProductsCMS from\"#framer/local/collection/Rf96c3KKl/Rf96c3KKl.js\";import*as sharedStyle2 from\"#framer/local/css/dn51PuMst/dn51PuMst.js\";import*as sharedStyle1 from\"#framer/local/css/Fp12dE23K/Fp12dE23K.js\";import*as sharedStyle from\"#framer/local/css/q1uYgQTIC/q1uYgQTIC.js\";import*as sharedStyle3 from\"#framer/local/css/tVsa3pltO/tVsa3pltO.js\";import*as sharedStyle4 from\"#framer/local/css/z8n5HRG9M/z8n5HRG9M.js\";import*as sharedStyle5 from\"#framer/local/css/ZqvHAeFTG/ZqvHAeFTG.js\";import metadataProvider from\"#framer/local/webPageMetadata/uAyEW8jLz/uAyEW8jLz.js\";const Navbar4Fonts=getFonts(Navbar4);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ProductShowcaseProductPageFonts=getFonts(ProductShowcaseProductPage);const PhosphorFonts=getFonts(Phosphor);const ButtonButtonFonts=getFonts(ButtonButton);const FrameshopStockFonts=getFonts(FrameshopStock);const FrameshopQuantitySelectorFonts=getFonts(FrameshopQuantitySelector);const FrameshopAddToCartFonts=getFonts(FrameshopAddToCart);const FrameshopBuyNowFonts=getFonts(FrameshopBuyNow);const AccordionFonts=getFonts(Accordion);const ButtonCtaFonts=getFonts(ButtonCta);const MotionDivWithFX=withFX(motion.div);const AccordionFAQFonts=getFonts(AccordionFAQ);const TestimonialsShowFonts=getFonts(TestimonialsShow);const FooterFonts=getFonts(Footer);const breakpoints={gVtvdn58Q:\"(min-width: 1200px)\",rwTiFcEiZ:\"(max-width: 809px)\",xEuQ8mfkC:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rOgJt\";const variantClassNames={gVtvdn58Q:\"framer-v-yvzeg8\",rwTiFcEiZ:\"framer-v-1h2a7ex\",xEuQ8mfkC:\"framer-v-17s20fe\"};const transition1={damping:30,delay:.05,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toString=value=>{return typeof value===\"string\"?value:String(value);};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,x:0,y:100};const transition3={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3,x:0,y:100};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gVtvdn58Q\",Phone:\"rwTiFcEiZ\",Tablet:\"xEuQ8mfkC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gVtvdn58Q\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"uAyEW8jLz\",data:FrameshopProductsCMS,type:\"Collection\"},select:[{collection:\"uAyEW8jLz\",name:\"SqICSQy95\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"Rt1PcXNxl\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"e0ZVBWXcB\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"p2wFjXLU1\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"zzu_WkODa\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"tepjvx1jn\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"tShzVMmpg\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"sbbgJN6Lq\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"dN99Q9Hki\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"Iai67PeND\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"hwkQN_W0t\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"hWDGduqmy\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"vH5WCMbJC\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"FrKTr25J2\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"tW14yknjv\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"e_azPc6w0\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"VyJ6hIe7n\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"wQi0Zq8ZO\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"v6e6wDdRv\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"FX4lsWoxc\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"OVTxgL11Y\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"iEc4IuYNP\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"V9KRoswZ5\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"HJNH9cuco\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"XlGd2H7LR\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"KToFf4RuH\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"PiJGwxMQh\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"U6WwuUbBS\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"SKGcIep7y\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"G7YrS0Nhs\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"H6UzW_9u1\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"hdNZtglk5\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"PBmptYpYw\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"EtpoMgSnJ\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"BUzTKn6mM\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"tEP2zZqNR\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"MricYbzOR\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"MXRZXHUFD\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"gG66Cuswm\",type:\"Identifier\"},{collection:\"uAyEW8jLz\",name:\"ueCnoEFUA\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"uAyEW8jLz\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,tepjvx1jn=getFromCurrentRouteData(\"tepjvx1jn\"),tShzVMmpg=getFromCurrentRouteData(\"tShzVMmpg\"),sbbgJN6Lq=getFromCurrentRouteData(\"sbbgJN6Lq\"),dN99Q9Hki=getFromCurrentRouteData(\"dN99Q9Hki\"),SqICSQy95=getFromCurrentRouteData(\"SqICSQy95\")??\"\",e0ZVBWXcB=getFromCurrentRouteData(\"e0ZVBWXcB\")??0,zzu_WkODa=getFromCurrentRouteData(\"zzu_WkODa\")??\"\",hWDGduqmy=getFromCurrentRouteData(\"hWDGduqmy\")??true,vH5WCMbJC=getFromCurrentRouteData(\"vH5WCMbJC\")??\"\",FrKTr25J2=getFromCurrentRouteData(\"FrKTr25J2\")??\"\",tW14yknjv=getFromCurrentRouteData(\"tW14yknjv\")??\"\",e_azPc6w0=getFromCurrentRouteData(\"e_azPc6w0\")??\"\",VyJ6hIe7n=getFromCurrentRouteData(\"VyJ6hIe7n\")??\"\",wQi0Zq8ZO=getFromCurrentRouteData(\"wQi0Zq8ZO\")??\"\",v6e6wDdRv=getFromCurrentRouteData(\"v6e6wDdRv\")??true,FX4lsWoxc=getFromCurrentRouteData(\"FX4lsWoxc\")??\"\",OVTxgL11Y=getFromCurrentRouteData(\"OVTxgL11Y\")??\"\",iEc4IuYNP=getFromCurrentRouteData(\"iEc4IuYNP\")??\"\",V9KRoswZ5=getFromCurrentRouteData(\"V9KRoswZ5\")??\"\",HJNH9cuco=getFromCurrentRouteData(\"HJNH9cuco\")??\"\",XlGd2H7LR=getFromCurrentRouteData(\"XlGd2H7LR\")??\"\",KToFf4RuH=getFromCurrentRouteData(\"KToFf4RuH\")??\"\",PiJGwxMQh=getFromCurrentRouteData(\"PiJGwxMQh\")??\"\",U6WwuUbBS=getFromCurrentRouteData(\"U6WwuUbBS\")??\"\",SKGcIep7y=getFromCurrentRouteData(\"SKGcIep7y\")??\"\",G7YrS0Nhs=getFromCurrentRouteData(\"G7YrS0Nhs\")??true,H6UzW_9u1=getFromCurrentRouteData(\"H6UzW_9u1\")??\"\",hdNZtglk5=getFromCurrentRouteData(\"hdNZtglk5\")??\"\",PBmptYpYw=getFromCurrentRouteData(\"PBmptYpYw\")??\"\",EtpoMgSnJ=getFromCurrentRouteData(\"EtpoMgSnJ\")??\"\",BUzTKn6mM=getFromCurrentRouteData(\"BUzTKn6mM\")??\"\",tEP2zZqNR=getFromCurrentRouteData(\"tEP2zZqNR\")??\"\",MricYbzOR=getFromCurrentRouteData(\"MricYbzOR\")??\"\",MXRZXHUFD=getFromCurrentRouteData(\"MXRZXHUFD\")??\"\",gG66Cuswm=getFromCurrentRouteData(\"gG66Cuswm\")??\"\",ueCnoEFUA=getFromCurrentRouteData(\"ueCnoEFUA\")??\"\",Rt1PcXNxl=getFromCurrentRouteData(\"Rt1PcXNxl\")??\"\",hwkQN_W0t=getFromCurrentRouteData(\"hwkQN_W0t\")??\"\",Iai67PeND=getFromCurrentRouteData(\"Iai67PeND\")??\"\",ZfJ1czhWpqeoND4HIc,SqICSQy95qeoND4HIc,e0ZVBWXcBqeoND4HIc,tepjvx1jnqeoND4HIc,Rt1PcXNxlqeoND4HIc,idqeoND4HIc,p2wFjXLU1=getFromCurrentRouteData(\"p2wFjXLU1\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=numberToString(e0ZVBWXcB,{currency:\"GBP\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const visible=isSet(vH5WCMbJC);const router=useRouter();const visible1=isSet(tW14yknjv);const visible2=isSet(VyJ6hIe7n);const visible3=isSet(FX4lsWoxc);const visible4=isSet(iEc4IuYNP);const visible5=isSet(HJNH9cuco);const visible6=isSet(KToFf4RuH);const visible7=isSet(U6WwuUbBS);const visible8=isSet(H6UzW_9u1);const visible9=isSet(PBmptYpYw);const visible10=isSet(BUzTKn6mM);const visible11=isSet(MricYbzOR);const visible12=isSet(gG66Cuswm);const elementId=useRouteElementId(\"LBXsTIjCv\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gVtvdn58Q\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-yvzeg8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-nuh8r2-container\",\"data-framer-appear-id\":\"nuh8r2\",initial:animation1,nodeId:\"qHZCGNgEO\",optimized:true,rendersWithMotion:true,scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{variant:\"biIAtoWln\"},xEuQ8mfkC:{variant:\"Ls90NeziU\"}},children:/*#__PURE__*/_jsx(Navbar4,{height:\"100%\",id:\"qHZCGNgEO\",layoutId:\"qHZCGNgEO\",style:{width:\"100%\"},variant:\"qGkfS2MAP\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1vmxiwj\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{height:661,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:740,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-96qp43-container\",nodeId:\"a_j0XnFkB\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(ProductShowcaseProductPage,{height:\"100%\",id:\"a_j0XnFkB\",J3ex543sI:toResponsiveImage(dN99Q9Hki),jsX8fuwLg:toResponsiveImage(sbbgJN6Lq),layoutId:\"a_j0XnFkB\",MWTd8sYqV:toResponsiveImage(tShzVMmpg),style:{height:\"100%\",width:\"100%\"},uau3yJbF_:toResponsiveImage(tepjvx1jn),variant:\"F836qdhkW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18bfk6w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-199jcnw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ock9ss\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3vcx85\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10hmu38\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wcljfu\",\"data-styles-preset\":\"q1uYgQTIC\",style:{\"--framer-text-color\":\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\"},children:\"Content\"})}),className:\"framer-s39yye\",fonts:[\"Inter\"],text:SqICSQy95,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1baevgf\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-b7880e\",\"data-styles-preset\":\"Fp12dE23K\",children:\"\u20AC0.00\"})}),className:\"framer-ajytr0\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vubelc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RYFEsRui7\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"RYFEsRui7\",layoutId:\"RYFEsRui7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mlwvh4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Description \"})}),className:\"framer-1sfep6p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",style:{\"--framer-text-color\":\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\"},children:\"Content\"})}),className:\"framer-1fxxzg8\",fonts:[\"Inter\"],text:zzu_WkODa,verticalAlignment:\"top\",withExternalLayout:true}),hWDGduqmy&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94xfwp\",\"data-framer-name\":\"Size Variants\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Different Sizes Available\"})}),className:\"framer-5m1z1m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),hWDGduqmy&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqt03l\",\"data-framer-name\":\"Size Variants\",children:[visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:vH5WCMbJC,implicitPathVariables:undefined},{href:vH5WCMbJC,implicitPathVariables:undefined},{href:vH5WCMbJC,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3icr7k-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"ziQYDJl2S\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:FrKTr25J2,id:\"ziQYDJl2S\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"ziQYDJl2S\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:tW14yknjv,implicitPathVariables:undefined},{href:tW14yknjv,implicitPathVariables:undefined},{href:tW14yknjv,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k705pd-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"mZEscdYAo\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks1[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:e_azPc6w0,id:\"mZEscdYAo\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"mZEscdYAo\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks1[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible2&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:VyJ6hIe7n,implicitPathVariables:undefined},{href:VyJ6hIe7n,implicitPathVariables:undefined},{href:VyJ6hIe7n,implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ro96z-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"s55LlmpSM\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks2[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:wQi0Zq8ZO,id:\"s55LlmpSM\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"s55LlmpSM\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks2[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})})]})]}),v6e6wDdRv&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eejgcp\",\"data-framer-name\":\"Colour Variants\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Different Colours Available\"})}),className:\"framer-xh8tia\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),v6e6wDdRv&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k7jgc\",\"data-framer-name\":\"Colour Variants\",children:[visible3&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:FX4lsWoxc,implicitPathVariables:undefined},{href:FX4lsWoxc,implicitPathVariables:undefined},{href:FX4lsWoxc,implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fnz3a9-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"th0iaAuIf\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks3[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:OVTxgL11Y,id:\"th0iaAuIf\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"th0iaAuIf\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks3[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible4&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:iEc4IuYNP,implicitPathVariables:undefined},{href:iEc4IuYNP,implicitPathVariables:undefined},{href:iEc4IuYNP,implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oardn2-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"ZB5EUps3a\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks4[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:V9KRoswZ5,id:\"ZB5EUps3a\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"ZB5EUps3a\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks4[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible5&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:HJNH9cuco,implicitPathVariables:undefined},{href:HJNH9cuco,implicitPathVariables:undefined},{href:HJNH9cuco,implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f3sv1y-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"w6MnbzHPZ\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks5[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:XlGd2H7LR,id:\"w6MnbzHPZ\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"w6MnbzHPZ\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks5[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible6&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:KToFf4RuH,implicitPathVariables:undefined},{href:KToFf4RuH,implicitPathVariables:undefined},{href:KToFf4RuH,implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r2q3nb-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"i4eHbwnzQ\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks6[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:PiJGwxMQh,id:\"i4eHbwnzQ\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"i4eHbwnzQ\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks6[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible7&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:U6WwuUbBS,implicitPathVariables:undefined},{href:U6WwuUbBS,implicitPathVariables:undefined},{href:U6WwuUbBS,implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8klep6-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"OUYSxxsdl\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks7[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:SKGcIep7y,id:\"OUYSxxsdl\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"OUYSxxsdl\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks7[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})})]})]}),G7YrS0Nhs&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sufo9w\",\"data-framer-name\":\"Date Variants\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Different Dates Are Available\"})}),className:\"framer-1v03eq0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),G7YrS0Nhs&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdep7y\",\"data-framer-name\":\"Dates Variants\",children:[visible8&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:H6UzW_9u1,implicitPathVariables:undefined},{href:H6UzW_9u1,implicitPathVariables:undefined},{href:H6UzW_9u1,implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18nd8b9-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"MhnX7ez8m\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks8[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:hdNZtglk5,id:\"MhnX7ez8m\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"MhnX7ez8m\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks8[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible9&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:PBmptYpYw,implicitPathVariables:undefined},{href:PBmptYpYw,implicitPathVariables:undefined},{href:PBmptYpYw,implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jwo9f3-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"zbPiMN8I0\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks9[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:EtpoMgSnJ,id:\"zbPiMN8I0\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"zbPiMN8I0\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks9[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible10&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:BUzTKn6mM,implicitPathVariables:undefined},{href:BUzTKn6mM,implicitPathVariables:undefined},{href:BUzTKn6mM,implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqhxsh-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"sRWQBlVE9\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks10[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:tEP2zZqNR,id:\"sRWQBlVE9\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"sRWQBlVE9\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks10[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible11&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:MricYbzOR,implicitPathVariables:undefined},{href:MricYbzOR,implicitPathVariables:undefined},{href:MricYbzOR,implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rgyg2z-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"UoWrTRtOJ\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks11[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:MXRZXHUFD,id:\"UoWrTRtOJ\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"UoWrTRtOJ\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks11[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})}),visible12&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:gG66Cuswm,implicitPathVariables:undefined},{href:gG66Cuswm,implicitPathVariables:undefined},{href:gG66Cuswm,implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h18m7u-container\",\"data-framer-name\":\"Small\",isModuleExternal:true,name:\"Small\",nodeId:\"EeXNc88AN\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{QxXFL7NXK:resolvedLinks12[2]},xEuQ8mfkC:{QxXFL7NXK:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(ButtonButton,{EStuN4mtu:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",fKZIuhkGs:\"var(--token-d5622a07-dda9-49fd-bc0b-ce726c034e42, rgb(255, 255, 255))\",height:\"100%\",HV2vodukn:false,Ib5NOdRzj:ueCnoEFUA,id:\"EeXNc88AN\",K2kXRy0i5:\"DiamondsFour\",L8E6GWJX_:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",layoutId:\"EeXNc88AN\",name:\"Small\",oPctouGOd:12,p2fH9NV3o:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks12[0],Rm6FkTkB9:\"ItQrElKh5\",sCub7sH34:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},tjicQCx5U:{borderColor:\"var(--token-54470bab-9c1b-431e-855c-59079156ad76, rgb(81, 102, 74))\",borderStyle:\"solid\",borderWidth:2},variant:\"KrACZgRah\",width:\"100%\"})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmgojw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-608rxt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y02BNOeeo\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(FrameshopStock,{errorText:\"Error loading stock.\",fontFamily:\"Inter\",fontSize:18,fontWeight:\"700\",frameshopArticleId:Rt1PcXNxl,height:\"100%\",id:\"y02BNOeeo\",layoutId:\"y02BNOeeo\",outOfStockText:\"0\",shopId:\"32e94d26-28dc-4180-80f6-620ec37aa2ec\",spinnerColor:\"rgb(0, 0, 0)\",spinnerSize:24,textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"In Stock \"})}),className:\"framer-uv1wei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14eypye\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14oj44t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mm92zPTdu\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Package\",id:\"Mm92zPTdu\",layoutId:\"Mm92zPTdu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"Free Delivery\"})})},xEuQ8mfkC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"Free Delivery\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"Free Delivery\"})}),className:\"framer-f5oxhc\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:3600,credentials:\"same-origin\",errorFallbackValue:\"Your Country\",fallbackValue:\"City Name\",resultKeyPath:\"city\",resultOutputType:\"string\",url:`https://api.fetch.tools/location`}],children:fetchResult=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"City Name\"})})},xEuQ8mfkC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"City Name\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"City Name\"})}),className:\"framer-1u02zek\",fonts:[\"GF;Lexend-regular\"],text:toString(fetchResult[0]),verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:3600,credentials:\"same-origin\",errorFallbackValue:\"\",fallbackValue:\"City Name\",resultKeyPath:\"country\",resultOutputType:\"string\",url:`https://api.fetch.tools/location`}],children:fetchResult1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"City Name\"})})},xEuQ8mfkC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"City Name\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\"},children:\"City Name\"})}),className:\"framer-1kmigmg\",fonts:[\"GF;Lexend-regular\"],text:toString(fetchResult1[0]),verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3vak4i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Quantity\"})}),className:\"framer-15382gk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b9ckrt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PTR9WtJim\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(FrameshopQuantitySelector,{buttonBackgroundColor:\"var(--token-e308be71-3d5e-4796-b441-361bca8e7707, rgb(199, 211, 193))\",buttonBorderColor:\"rgb(229, 229, 229)\",buttonSize:30,buttonTextColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",fontSize:14,fontWeight:\"400\",frameshopArticleId:Rt1PcXNxl,height:\"100%\",id:\"PTR9WtJim\",layoutId:\"PTR9WtJim\",shopId:\"32e94d26-28dc-4180-80f6-620ec37aa2ec\",textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-anfuu5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gf55e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c26dys-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PK4CGYduk\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(FrameshopAddToCart,{borderBottomWidth:1,borderLeftWidth:0,borderRightWidth:0,borderTopWidth:0,buttonBackgroundColor:\"var(--token-d674d6f7-0f4a-47fd-853e-77e12cc53755, rgb(255, 255, 255))\",buttonBorderColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",buttonBorderRadius:10,buttonBorderWidth:3,buttonBottomLeftRadius:10,buttonBottomRightRadius:10,buttonFontFamily:\"Inter\",buttonFontSize:18,buttonFontWeight:\"500\",buttonPadding:12,buttonText:\"ADD TO CART\",buttonTextColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",buttonTopLeftRadius:10,buttonTopRightRadius:10,confirmationMessage:\"{productName} has been added to your shopping cart.\",frameshop_article_id:Rt1PcXNxl,height:\"100%\",iconPosition:\"left\",id:\"PK4CGYduk\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"PK4CGYduk\",outOfStockText:\"Out of Stock\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,price:e0ZVBWXcB,productImage:toImageSrc(tepjvx1jn),productName:SqICSQy95,shopId:\"32e94d26-28dc-4180-80f6-620ec37aa2ec\",showBorders:true,showIcon:true,style:{width:\"100%\"},toastBackgroundColor:\"rgb(255, 255, 255)\",toastFontFamily:\"Inter\",toastFontSize:14,toastFontWeight:\"400\",toastLineHeight:1.5,toastTextColor:\"rgb(0, 0, 0)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13jh013-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ia6AhuBaK\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(FrameshopBuyNow,{buttonBackgroundColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",buttonBorderColor:\"rgb(0, 0, 0)\",buttonBorderRadius:10,buttonBorderWidth:1,buttonBottomLeftRadius:10,buttonBottomRightRadius:10,buttonFontFamily:\"Inter\",buttonFontSize:18,buttonFontWeight:\"500\",buttonPadding:15,buttonText:\"Buy Now\",buttonTextColor:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",buttonTopLeftRadius:10,buttonTopRightRadius:10,cancelUrl:\"https://sewletsfaceit.framer.website/\",collectAddress:true,collectPhone:true,enableShipping:true,frameshopArticleId:Rt1PcXNxl,height:\"100%\",id:\"Ia6AhuBaK\",isBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"Ia6AhuBaK\",outOfStockText:\"Out Of Stock\",paddingBottom:15,paddingLeft:15,paddingRight:15,paddingTop:15,shippingRate1:0,shippingRate2:0,shippingTitle1:\"Free Delivery\",shippingTitle2:\"\",shopId:\"32e94d26-28dc-4180-80f6-620ec37aa2ec\",showBorders:false,spinnerAnimationSpeed:1,spinnerBorderColor:\"rgba(255, 255, 255, 0.3)\",spinnerBorderThickness:3,spinnerBorderTopColor:\"rgb(255, 255, 255)\",spinnerSize:20,style:{width:\"100%\"},successUrl:\"https://sewletsfaceit.framer.website/\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upm3gz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dcqvr7\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-159siqo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TA7u3vhWA\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lock\",id:\"TA7u3vhWA\",layoutId:\"TA7u3vhWA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\"},children:\"Secure Payment\"})}),className:\"framer-19h3c7l\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n86u41-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KpZm8kjAr\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, rgb(176, 176, 176))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lock\",id:\"KpZm8kjAr\",layoutId:\"KpZm8kjAr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qnsak3\"})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nrk1p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"Information\"})}),className:\"framer-1cyt5wv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`},xEuQ8mfkC:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 440px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:121,width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 528px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnb8dj-container\",nodeId:\"dRphyGXdG\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"dRphyGXdG\",kpLq9E3SR:Iai67PeND,layoutId:\"dRphyGXdG\",style:{width:\"100%\"},width:\"100%\",zQGho7sV1:hwkQN_W0t})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1uow2d6\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eaakwq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wk6ro9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-51ltlj\",\"data-styles-preset\":\"tVsa3pltO\",children:\"Discover\"})}),className:\"framer-1w9rc02\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ihnkgg\",\"data-styles-preset\":\"z8n5HRG9M\",children:\"Related Products\"})}),className:\"framer-1fdgio0\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qwe4i8hHU\"},implicitPathVariables:undefined},{href:{webPageId:\"Qwe4i8hHU\"},implicitPathVariables:undefined},{href:{webPageId:\"Qwe4i8hHU\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nu3zl-container\",nodeId:\"hfraBErDY\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{YeeaC6qGu:resolvedLinks13[2]},xEuQ8mfkC:{YeeaC6qGu:resolvedLinks13[1]}},children:/*#__PURE__*/_jsx(ButtonCta,{d3IHHEer0:{borderColor:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",borderStyle:\"solid\",borderWidth:3},height:\"100%\",id:\"hfraBErDY\",k9d_X1gbT:\"var(--token-d674d6f7-0f4a-47fd-853e-77e12cc53755, rgb(255, 255, 255))\",layoutId:\"hfraBErDY\",S6RyDxFQO:\"rgb(0, 0, 0)\",variant:\"CSakXU1SD\",width:\"100%\",YeeaC6qGu:resolvedLinks13[0],YG3_ugtqi:\"View All\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rc0rsq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xEuQ8mfkC:{query:{from:{alias:\"qeoND4HIc\",data:FrameshopProductsCMS,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"qeoND4HIc\",name:\"ZfJ1czhWp\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"SqICSQy95\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"e0ZVBWXcB\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"tepjvx1jn\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"Rt1PcXNxl\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"qeoND4HIc\",name:\"SqICSQy95\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SqICSQy95},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"qeoND4HIc\",name:\"ZKTCPd7bT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"VuLKpcp8E\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"qeoND4HIc\",name:\"LCJrs5oFO\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qeoND4HIc\",name:\"p2wFjXLU1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:p2wFjXLU1},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qeoND4HIc\",data:FrameshopProductsCMS,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"qeoND4HIc\",name:\"ZfJ1czhWp\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"SqICSQy95\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"e0ZVBWXcB\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"tepjvx1jn\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"Rt1PcXNxl\",type:\"Identifier\"},{collection:\"qeoND4HIc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"qeoND4HIc\",name:\"SqICSQy95\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SqICSQy95},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"qeoND4HIc\",name:\"ZKTCPd7bT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"VuLKpcp8E\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"qeoND4HIc\",name:\"LCJrs5oFO\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qeoND4HIc\",name:\"p2wFjXLU1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:p2wFjXLU1},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({e0ZVBWXcB:e0ZVBWXcBqeoND4HIc,id:idqeoND4HIc,Rt1PcXNxl:Rt1PcXNxlqeoND4HIc,SqICSQy95:SqICSQy95qeoND4HIc,tepjvx1jn:tepjvx1jnqeoND4HIc,ZfJ1czhWp:ZfJ1czhWpqeoND4HIc},index)=>{ZfJ1czhWpqeoND4HIc??=\"\";SqICSQy95qeoND4HIc??=\"\";e0ZVBWXcBqeoND4HIc??=0;Rt1PcXNxlqeoND4HIc??=\"\";const textContent1=numberToString(e0ZVBWXcBqeoND4HIc,{currency:\"GBP\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`qeoND4HIc-${idqeoND4HIc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZfJ1czhWp:ZfJ1czhWpqeoND4HIc},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kj0hvr\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qqpznz\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ZfJ1czhWp:ZfJ1czhWpqeoND4HIc},webPageId:\"uAyEW8jLz\"},motionChild:true,nodeId:\"dRne24CkD\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-f6m14z framer-1igm2lb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ik71an\",\"data-styles-preset\":\"ZqvHAeFTG\",children:\"Sew\\xae Rejuvenating\"})}),className:\"framer-6m4yt3\",fonts:[\"Inter\"],text:SqICSQy95qeoND4HIc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lxzwzg\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yokezh\",\"data-styles-preset\":\"dn51PuMst\",children:\"\u20AC0.00\"})}),className:\"framer-m3q3ra\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-siicig-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PLuU15tHp\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"PLuU15tHp\",layoutId:\"PLuU15tHp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ZfJ1czhWp:ZfJ1czhWpqeoND4HIc},webPageId:\"uAyEW8jLz\"},motionChild:true,nodeId:\"bcWfgGsEg\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{background:{alt:\"\",fit:\"fill\",pixelHeight:1152,pixelWidth:896,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px) - 20px)`,...toResponsiveImage(tepjvx1jnqeoND4HIc)}},xEuQ8mfkC:{background:{alt:\"\",fit:\"fill\",pixelHeight:1152,pixelWidth:896,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px) / 2, 50px) - 20px)`,...toResponsiveImage(tepjvx1jnqeoND4HIc)}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1152,pixelWidth:896,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 96px, 1px) - 20px)`,...toResponsiveImage(tepjvx1jnqeoND4HIc)},className:\"framer-1edvcmk framer-1igm2lb\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b7cyk3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XhAEz1UR4\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(FrameshopAddToCart,{borderBottomWidth:1,borderLeftWidth:0,borderRightWidth:0,borderTopWidth:0,buttonBackgroundColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",buttonBorderColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",buttonBorderRadius:10,buttonBorderWidth:1,buttonBottomLeftRadius:10,buttonBottomRightRadius:10,buttonFontFamily:\"Inter\",buttonFontSize:18,buttonFontWeight:\"500\",buttonPadding:12,buttonText:\"ADD TO CART\",buttonTextColor:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",buttonTopLeftRadius:10,buttonTopRightRadius:10,confirmationMessage:\"{productName} has been added to your shopping cart.\",frameshop_article_id:Rt1PcXNxlqeoND4HIc,height:\"100%\",iconPosition:\"left\",id:\"XhAEz1UR4\",isBorderWidthMixed:false,isButtonBorderRadiusMixed:false,isPaddingMixed:false,layoutId:\"XhAEz1UR4\",outOfStockText:\"Available Soon\",paddingBottom:12,paddingLeft:12,paddingRight:12,paddingTop:12,price:e0ZVBWXcBqeoND4HIc,productImage:toImageSrc(tepjvx1jnqeoND4HIc),productName:SqICSQy95qeoND4HIc,shopId:\"a1246d81-0f09-425e-b2de-58aafaea31df\",showBorders:true,showIcon:true,style:{width:\"100%\"},toastBackgroundColor:\"var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, rgb(241, 245, 240))\",toastFontFamily:\"Inter\",toastFontSize:14,toastFontWeight:\"400\",toastLineHeight:1.5,toastTextColor:\"var(--token-1da1ff54-875f-4baa-b094-af083a222daa, rgb(24, 29, 22))\",width:\"100%\"})})})]})})})},idqeoND4HIc);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mowud0\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-46ouj3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-51ltlj\",\"data-styles-preset\":\"tVsa3pltO\",children:\"Find Answers to Common Questions\"})}),className:\"framer-1vi6y7h\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ihnkgg\",\"data-styles-preset\":\"z8n5HRG9M\",style:{\"--framer-text-alignment\":\"left\"},children:\"Frequently Asked Questions\"})}),className:\"framer-1dpq2h2\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ql17bi\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:303,width:`max(min(1000px, min(${componentViewport?.width||\"100vw\"}, 1200px)), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1evp7-container\",nodeId:\"EEgpdBJhc\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(AccordionFAQ,{height:\"100%\",id:\"EEgpdBJhc\",layoutId:\"EEgpdBJhc\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-bw2gep\",\"data-framer-name\":\"Testimonials\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6hjkug\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s6tjmy\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ihnkgg\",\"data-styles-preset\":\"z8n5HRG9M\",style:{\"--framer-text-alignment\":\"center\"},children:\"What People Say About Our Products\"})}),className:\"framer-1ckx3gs\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:181,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16nobf0-container\",nodeId:\"FgIQyIS6q\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{variant:\"LRNKsZLUA\"}},children:/*#__PURE__*/_jsx(TestimonialsShow,{height:\"100%\",id:\"FgIQyIS6q\",layoutId:\"FgIQyIS6q\",style:{width:\"100%\"},variant:\"FTvIBqKqj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:303,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14mugmh-container\",nodeId:\"QhIkAvue6\",scopeId:\"uAyEW8jLz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rwTiFcEiZ:{variant:\"U7Mfo_9k0\"},xEuQ8mfkC:{variant:\"Rj8XzXXu9\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QhIkAvue6\",layoutId:\"QhIkAvue6\",style:{width:\"100%\"},variant:\"LSWR1OF3A\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rOgJt.framer-1igm2lb, .framer-rOgJt .framer-1igm2lb { display: block; }\",\".framer-rOgJt.framer-yvzeg8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-rOgJt .framer-nuh8r2-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-rOgJt .framer-1vmxiwj { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 96px 64px 96px 64px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-96qp43-container { flex: none; height: 740px; position: relative; width: 380px; }\",\".framer-rOgJt .framer-18bfk6w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-199jcnw { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1ock9ss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-3vcx85 { align-content: flex-start; align-items: flex-start; background-color: var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, #f1f5f0); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rOgJt .framer-10hmu38 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-s39yye, .framer-rOgJt .framer-1w9rc02, .framer-rOgJt .framer-1vi6y7h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-rOgJt .framer-1baevgf, .framer-rOgJt .framer-1lxzwzg { --border-bottom-width: 3px; --border-color: var(--token-0fe4f04e-f1c0-44a4-9d7b-109ea6c07a61, #000000); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-rOgJt .framer-ajytr0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-rOgJt .framer-vubelc-container, .framer-rOgJt .framer-siicig-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-rOgJt .framer-1mlwvh4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1sfep6p, .framer-rOgJt .framer-1fxxzg8, .framer-rOgJt .framer-5m1z1m, .framer-rOgJt .framer-xh8tia, .framer-rOgJt .framer-1v03eq0, .framer-rOgJt .framer-15382gk, .framer-rOgJt .framer-1cyt5wv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rOgJt .framer-94xfwp, .framer-rOgJt .framer-1eejgcp, .framer-rOgJt .framer-sufo9w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1cqt03l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-3icr7k-container, .framer-rOgJt .framer-1k705pd-container, .framer-rOgJt .framer-7ro96z-container, .framer-rOgJt .framer-1fnz3a9-container, .framer-rOgJt .framer-oardn2-container, .framer-rOgJt .framer-f3sv1y-container, .framer-rOgJt .framer-r2q3nb-container, .framer-rOgJt .framer-8klep6-container, .framer-rOgJt .framer-18nd8b9-container, .framer-rOgJt .framer-1jwo9f3-container, .framer-rOgJt .framer-bqhxsh-container, .framer-rOgJt .framer-1rgyg2z-container, .framer-rOgJt .framer-1h18m7u-container, .framer-rOgJt .framer-608rxt-container, .framer-rOgJt .framer-1b9ckrt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rOgJt .framer-10k7jgc, .framer-rOgJt .framer-1jdep7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-kmgojw { align-content: center; align-items: center; background-color: var(--token-e308be71-3d5e-4796-b441-361bca8e7707, #c7d3c1); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rOgJt .framer-uv1wei, .framer-rOgJt .framer-1u02zek, .framer-rOgJt .framer-1kmigmg, .framer-rOgJt .framer-19h3c7l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rOgJt .framer-14eypye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-14oj44t-container { flex: none; height: 31px; position: relative; width: 31px; }\",\".framer-rOgJt .framer-f5oxhc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-rOgJt .framer-3vak4i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-anfuu5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-3gf55e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-1c26dys-container, .framer-rOgJt .framer-13jh013-container, .framer-rOgJt .framer-1b7cyk3-container, .framer-rOgJt .framer-16nobf0-container, .framer-rOgJt .framer-14mugmh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rOgJt .framer-upm3gz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-rOgJt .framer-dcqvr7, .framer-rOgJt .framer-qnsak3 { background-color: var(--token-bc983cf6-1ef2-419d-b62a-4aee98ba1447, #b0b0b0); flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-159siqo-container, .framer-rOgJt .framer-1n86u41-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-rOgJt .framer-6nrk1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1nnb8dj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-rOgJt .framer-1uow2d6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-eaakwq, .framer-rOgJt .framer-6hjkug { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-wk6ro9, .framer-rOgJt .framer-1s6tjmy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-1fdgio0, .framer-rOgJt .framer-1dpq2h2, .framer-rOgJt .framer-1ckx3gs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rOgJt .framer-8nu3zl-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-rOgJt .framer-rc0rsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1kj0hvr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-1qqpznz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; }\",\".framer-rOgJt .framer-f6m14z { align-content: center; align-items: center; aspect-ratio: 4.450549450549451 / 1; background-color: var(--token-1e7f8600-7a19-4af1-ba27-a8fc006dfd40, #f1f5f0); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 75px); justify-content: center; overflow: hidden; padding: 15px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rOgJt .framer-6m4yt3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-rOgJt .framer-m3q3ra { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-rOgJt .framer-1edvcmk { aspect-ratio: 0.7214137214137214 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 464px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-rOgJt .framer-mowud0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-46ouj3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200%; padding: 0px; position: relative; width: 100%; }\",\".framer-rOgJt .framer-1ql17bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-rOgJt .framer-w1evp7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 0; }\",\".framer-rOgJt .framer-bw2gep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-rOgJt[data-border=\"true\"]::after, .framer-rOgJt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-rOgJt.framer-yvzeg8 { width: 810px; } .framer-rOgJt .framer-1vmxiwj { padding: 96px 20px 96px 20px; } .framer-rOgJt .framer-10hmu38 { order: 0; } .framer-rOgJt .framer-1baevgf { order: 1; } .framer-rOgJt .framer-anfuu5 { flex-direction: column; } .framer-rOgJt .framer-3gf55e { flex: none; width: 100%; } .framer-rOgJt .framer-1uow2d6 { padding: 120px 20px 120px 20px; } .framer-rOgJt .framer-rc0rsq { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); justify-content: center; } .framer-rOgJt .framer-1kj0hvr { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-rOgJt .framer-f6m14z { height: var(--framer-aspect-ratio-supported, 80px); } .framer-rOgJt .framer-1edvcmk { height: var(--framer-aspect-ratio-supported, 492px); } .framer-rOgJt .framer-mowud0 { padding: 80px 40px 80px 40px; }}\",\"@media (max-width: 809px) { .framer-rOgJt.framer-yvzeg8 { width: 390px; } .framer-rOgJt .framer-1vmxiwj { flex-direction: column; padding: 96px 20px 96px 20px; } .framer-rOgJt .framer-96qp43-container { aspect-ratio: 0.5748865355521936 / 1; height: var(--framer-aspect-ratio-supported, 348px); width: 100%; } .framer-rOgJt .framer-18bfk6w, .framer-rOgJt .framer-3gf55e, .framer-rOgJt .framer-wk6ro9, .framer-rOgJt .framer-1s6tjmy { flex: none; width: 100%; } .framer-rOgJt .framer-1ock9ss { gap: 25px; } .framer-rOgJt .framer-14oj44t-container { height: 22px; width: 22px; } .framer-rOgJt .framer-anfuu5, .framer-rOgJt .framer-eaakwq, .framer-rOgJt .framer-6hjkug { flex-direction: column; } .framer-rOgJt .framer-1uow2d6, .framer-rOgJt .framer-bw2gep { padding: 100px 20px 100px 20px; } .framer-rOgJt .framer-rc0rsq { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); justify-content: center; } .framer-rOgJt .framer-1kj0hvr { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-rOgJt .framer-f6m14z { height: var(--framer-aspect-ratio-supported, 45px); } .framer-rOgJt .framer-1edvcmk { height: var(--framer-aspect-ratio-supported, 277px); } .framer-rOgJt .framer-mowud0 { padding: 60px 20px 60px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3973.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xEuQ8mfkC\":{\"layout\":[\"fixed\",\"auto\"]},\"rwTiFcEiZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"LBXsTIjCv\":{\"pattern\":\":LBXsTIjCv\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FrameruAyEW8jLz=withCSS(Component,css,\"framer-rOgJt\");export default FrameruAyEW8jLz;FrameruAyEW8jLz.displayName=\"Page\";FrameruAyEW8jLz.defaultProps={height:3973.5,width:1200};addFonts(FrameruAyEW8jLz,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v25/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LVte6KuGEo.woff2\",weight:\"400\"}]},...Navbar4Fonts,...ProductShowcaseProductPageFonts,...PhosphorFonts,...ButtonButtonFonts,...FrameshopStockFonts,...FrameshopQuantitySelectorFonts,...FrameshopAddToCartFonts,...FrameshopBuyNowFonts,...AccordionFonts,...ButtonCtaFonts,...AccordionFAQFonts,...TestimonialsShowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruAyEW8jLz\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xEuQ8mfkC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rwTiFcEiZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"LBXsTIjCv\\\":{\\\"pattern\\\":\\\":LBXsTIjCv\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3973.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,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",
  "names": ["FrameshopStock", "props", "shopId", "frameshopArticleId", "textColor", "fontSize", "fontFamily", "fontWeight", "errorText", "spinnerColor", "spinnerSize", "outOfStockText", "stockQuantity", "setStockQuantity", "ye", "loading", "setLoading", "error", "setError", "loadGoogleFont", "font", "linkId", "link", "ue", "styleSheet", "spinnerKeyframes", "fetchStock", "response", "data", "err", "textStyle", "p", "spinnerContainerStyle", "spinnerStyle", "addPropertyControls", "ControlType", "FrameshopQuantitySelector", "props", "quantity", "setQuantity", "ye", "stockQuantity", "setStockQuantity", "loadingStock", "setLoadingStock", "errorStock", "setErrorStock", "fetchStock", "response", "data", "err", "ue", "initialQuantity", "quantityEvents", "updateQuantity", "newQuantity", "increaseQuantity", "decreaseQuantity", "isIncrementDisabled", "styles", "p", "u", "l", "a", "addPropertyControls", "ControlType", "FrameshopBuyNow", "props", "shopId", "frameshopArticleId", "successUrl", "cancelUrl", "buttonBackgroundColor", "buttonTextColor", "buttonFontSize", "buttonFontFamily", "buttonFontWeight", "buttonPadding", "buttonBorderRadius", "showBorders", "buttonBorderColor", "buttonBorderWidth", "buttonText", "buttonTopLeftRadius", "buttonTopRightRadius", "buttonBottomRightRadius", "buttonBottomLeftRadius", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "isBorderRadiusMixed", "isPaddingMixed", "spinnerSize", "spinnerBorderThickness", "spinnerBorderColor", "spinnerBorderTopColor", "spinnerAnimationSpeed", "collectAddress", "collectPhone", "enableShipping", "shippingTitle1", "shippingRate1", "shippingTitle2", "shippingRate2", "outOfStockText", "buttonDisabledStyle", "isLoading", "setIsLoading", "ye", "quantity", "setQuantity", "toastMessage", "setToastMessage", "showToast", "setShowToast", "stockQuantity", "setStockQuantity", "loadingStock", "setLoadingStock", "errorStock", "setErrorStock", "loadGoogleFont", "font", "linkId", "link", "ue", "handleQuantityUpdate", "newQuantity", "quantityEvents", "fetchStock", "response", "data", "err", "showToastMessage", "message", "handleBuyNow", "shippingOptions", "window", "error", "isDisabled", "displayText", "buttonStyle", "spinnerStyle", "u", "l", "p", "FrameshopBuyNow", "addPropertyControls", "ControlType", "props", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8bhi8x", "args", "onTapsjtcat", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "FramerVwTT6H5M1", "withCSS", "VwTT6H5M1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ComponentInformationsProductPageFonts", "getFonts", "VwTT6H5M1_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "ecoConsciousPackaging", "height", "howToUseContent", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zQGho7sV1", "kpLq9E3SR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "VwTT6H5M1_default", "css", "FramerAgUcF3ZXK", "withCSS", "AgUcF3ZXK_default", "addPropertyControls", "ControlType", "addFonts", "ComponentInformationsProductPageFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uau3yJbF_", "MWTd8sYqV", "jsX8fuwLg", "J3ex543sI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ndx56o", "args", "onTap1opn36g", "onTap1h5bl3s", "onTapdp4gpe", "scopingClassNames", "cx", "visible", "visible1", "visible2", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FrameriBjEDqNrG", "withCSS", "iBjEDqNrG_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "animation3", "transition4", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dok38k", "args", "onTapsfs3pi", "onTap1kabdk7", "onTapfzs495", "onTape3qt92", "onTap1xzvqhp", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "RichText", "css", "FramerW4oceyHr6", "withCSS", "W4oceyHr6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Navbar4Fonts", "getFonts", "qJ5ksmsRd_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ProductShowcaseProductPageFonts", "iBjEDqNrG_default", "PhosphorFonts", "Icon", "ButtonButtonFonts", "W6lT3vppp_default", "FrameshopStockFonts", "FrameshopStock", "FrameshopQuantitySelectorFonts", "FrameshopQuantitySelector", "FrameshopAddToCartFonts", "FrameshopAddToCart", "FrameshopBuyNowFonts", "FrameshopBuyNow", "AccordionFonts", "AgUcF3ZXK_default", "ButtonCtaFonts", "y6yrX3GaX_default", "MotionDivWithFX", "withFX", "motion", "AccordionFAQFonts", "VB54vKh5K_default", "TestimonialsShowFonts", "W4oceyHr6_default", "FooterFonts", "O5RQCjaMm_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "isSet", "toString", "toImageSrc", "animation2", "transition2", "textEffect", "animation3", "transition3", "animation4", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "Rf96c3KKl_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "tepjvx1jn", "tShzVMmpg", "sbbgJN6Lq", "dN99Q9Hki", "SqICSQy95", "e0ZVBWXcB", "zzu_WkODa", "hWDGduqmy", "vH5WCMbJC", "FrKTr25J2", "tW14yknjv", "e_azPc6w0", "VyJ6hIe7n", "wQi0Zq8ZO", "v6e6wDdRv", "FX4lsWoxc", "OVTxgL11Y", "iEc4IuYNP", "V9KRoswZ5", "HJNH9cuco", "XlGd2H7LR", "KToFf4RuH", "PiJGwxMQh", "U6WwuUbBS", "SKGcIep7y", "G7YrS0Nhs", "H6UzW_9u1", "hdNZtglk5", "PBmptYpYw", "EtpoMgSnJ", "BUzTKn6mM", "tEP2zZqNR", "MricYbzOR", "MXRZXHUFD", "gG66Cuswm", "ueCnoEFUA", "Rt1PcXNxl", "hwkQN_W0t", "Iai67PeND", "ZfJ1czhWpqeoND4HIc", "SqICSQy95qeoND4HIc", "e0ZVBWXcBqeoND4HIc", "tepjvx1jnqeoND4HIc", "Rt1PcXNxlqeoND4HIc", "idqeoND4HIc", "p2wFjXLU1", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "router", "useRouter", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "PropertyOverrides2", "qJ5ksmsRd_default", "Container", "iBjEDqNrG_default", "RichText", "x", "Icon", "ResolveLinks", "resolvedLinks", "W6lT3vppp_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "FrameshopStock", "Fetcher", "fetchResult", "fetchResult1", "FrameshopQuantitySelector", "FrameshopAddToCart", "FrameshopBuyNow", "AgUcF3ZXK_default", "resolvedLinks13", "y6yrX3GaX_default", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "textContent1", "PathVariablesContext", "MotionDivWithFX", "Link", "Image2", "VB54vKh5K_default", "W4oceyHr6_default", "O5RQCjaMm_default", "css", "FrameruAyEW8jLz", "withCSS", "uAyEW8jLz_default", "addFonts", "Navbar4Fonts", "ProductShowcaseProductPageFonts", "PhosphorFonts", "ButtonButtonFonts", "FrameshopStockFonts", "FrameshopQuantitySelectorFonts", "FrameshopAddToCartFonts", "FrameshopBuyNowFonts", "AccordionFonts", "ButtonCtaFonts", "AccordionFAQFonts", "TestimonialsShowFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
