{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/AdvUR7x6P46UJaGAR3pE/_useProduct.js", "ssg:https://framerusercontent.com/modules/XUMZkHzkb6JRq7hdD46W/XDIPkVouzBvGXlnftTxs/Shopify_ProductPrice.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/iu1t6Hy4WsIebCrBXmub/QC4DuhiKU9VRKp97JYbP/Character_limit.js", "ssg:https://framerusercontent.com/modules/4GC3OQV394SPYPz9aou5/AAFkIPw77hBpGGTNIOiI/jga3KxjKM.js", "ssg:https://framerusercontent.com/modules/rfGP1UGcaCqo2BSN8n29/W1stTQhqujAUnuCqJvFf/qcHA9mD6X.js", "ssg:https://framerusercontent.com/modules/HEy6TGlaFtuIhdCIDisp/TJJebWPn7MCss3aFZCde/FAQ.js", "ssg:https://framerusercontent.com/modules/5NjJarO0pa8BTJc0KJ9u/fGhpuRF5LmSsEwMGgDi8/uTPPDNTtx.js", "ssg:https://framerusercontent.com/modules/vLamXNOjR1kkEFclZmwp/hnqp9ob1s0WpFw4zxYQR/V2JylVX06.js"],
  "sourcesContent": ["import{useState,useEffect,useMemo}from\"react\";import{useAtom}from\"jotai\";import{useShopify}from\"https://framerusercontent.com/modules/tdCHCV0pSkxlDaX5GkOX/eoP3ogKxOWbw98qAWDYN/_useShopify.js\";import{priceCode}from\"https://framerusercontent.com/modules/7dEgbg7qo3lsQk361YtS/NrF60tPHZRRgADqpoRFr/_utils.js\";import{selectedProductsAtom}from\"https://framerusercontent.com/modules/yZBbIevRfN36MGDPpltx/wGTLw66WgEMH0ulWn0NR/_atoms.js\";import{DefaultProduct}from\"https://framerusercontent.com/modules/fWwtzMT2tYXMW4IKB8On/1dFHOQ0gPjMC0e1WUStY/_test_data.js\";const DefaultSelectedOption={quantity:1,quantityAvailable:null,selectedOption:null,sellingPlan:null};export function useProduct(productID,config,addToSelected){const[selectedProducts,setSelectedProducts]=useAtom(selectedProductsAtom);const{products}=useShopify(config);const[product,setProduct]=useState(config?.testMode?DefaultProduct:null);const selected=product?.id?selectedProducts[product.id]:null;// get price and compare price\nconst getPrice=(camparePrice,price)=>{const comparePriceValue=camparePrice&&camparePrice.amount!==\"0.0\"?priceCode(camparePrice,config):null;const priceValue=priceCode(price,config);return{camparePrice:comparePriceValue!==priceValue?comparePriceValue:null,price:priceValue};};const changeQuantity=quantity=>{if(!product)return;setSelectedProducts(state=>({...state,[product.id]:{...DefaultSelectedOption,...state[product.id],quantity}}));};const selectVariant=(item,sellingPlan)=>{if(!product)return;setSelectedProducts(state=>({...state,[product.id]:{...DefaultSelectedOption,...state[product.id],sellingPlan,quantityAvailable:item.quantityAvailable,selectedOption:item.id}}));};// set first variant as default selected when addToSelected is true\nuseEffect(()=>{if(product&&addToSelected){const defaultVariant=product.variants.nodes[0];setSelectedProducts(state=>({...state,[product.id]:{...DefaultSelectedOption,quantityAvailable:defaultVariant.quantityAvailable,selectedOption:defaultVariant.id}}));return()=>{setSelectedProducts(state=>({...state,[product.id]:null}));};}},[product,addToSelected]);// set product when productID found\nuseEffect(()=>{const foundProduct=products.find(item=>item.id===productID);if(foundProduct){setProduct(config?.testMode?DefaultProduct:foundProduct);}},[products,productID,config?.testMode]);// return result with two mode: when variant selected and when not selected\nconst result=useMemo(()=>{if(!product)return{product:null,availableForSale:null,multiplePrice:null,price:null,stock:null,selectedVariant:null,selectedProduct:null};const selectedVariant=product.variants.nodes.find(item=>item.id===selected?.selectedOption);if(selectedVariant){const selectedSellingPlan=selectedVariant?.sellingPlanAllocations?.nodes.find(item=>item.sellingPlan.id===selected?.sellingPlan);const{compareAtPriceV2,availableForSale,priceV2,quantityAvailable}=selectedVariant;const price=selectedSellingPlan?.checkoutChargeAmount??priceV2;return{product,price:getPrice(compareAtPriceV2,price),multiplePrice:false,availableForSale,stock:quantityAvailable,selectedVariant,selectedProduct:selected};}const{compareAtPriceRange,priceRange,availableForSale,totalInventory}=product??{};const multiplePrice=priceRange.minVariantPrice.amount!==priceRange.maxVariantPrice.amount;return{product,price:getPrice(compareAtPriceRange.minVariantPrice,priceRange.minVariantPrice),multiplePrice,availableForSale,stock:totalInventory,selectedVariant:null,selectedProduct:selected};},[product,selected,config?.languageIsoCode,config?.countryIsoCode]);return{...result,changeQuantity,selectVariant};}\nexport const __FramerMetadata__ = {\"exports\":{\"useProduct\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{cn,ProductBaseControls,ConfigControls,textProperties}from\"https://framerusercontent.com/modules/eAejHXy6apg0StNmpKvK/GXn1lJ5V4nUwhRO9yQKC/_framer_utils.js\";import{useProduct}from\"https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/AdvUR7x6P46UJaGAR3pE/_useProduct.js\";import ComponentWrapper from\"https://framerusercontent.com/modules/hQlZBgGeLDev5WuUJA4d/6ncqGCEKZWsfLWpBe7Jn/ComponentWrapper.js\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Shopify_ProductPrice(props){const{product,price,multiplePrice,availableForSale}=useProduct(props.productID??null,props.config);return /*#__PURE__*/_jsx(ComponentWrapper,{style:styles.container,productID:props.productID||\"EMPTY\",hidden:!product,config:props.config,children:()=>/*#__PURE__*/_jsxs(_Fragment,{children:[price.camparePrice&&/*#__PURE__*/_jsxs(\"span\",{style:cn(props.comparePriceStyle,props.comparePriceStyle.textDecoration),children:[price.camparePrice,\" \"]}),/*#__PURE__*/_jsxs(\"span\",{style:cn(props.priceStyle),children:[multiplePrice?props.startFromTitle:\"\",\" \",price.price]}),!availableForSale&&props.soldOutTitle&&/*#__PURE__*/_jsx(\"span\",{style:cn(props.soldOutStyle),children:props.soldOutTitle})]})});}Shopify_ProductPrice.displayName=\"Product Price\";addPropertyControls(Shopify_ProductPrice,{...ConfigControls,...ProductBaseControls,startFromTitle:{title:\"Start from Label\",type:ControlType.String,defaultValue:\"Start from\"},soldOutTitle:{title:\"Sold out Label\",type:ControlType.String,defaultValue:\"Sold out\"},priceStyle:{title:\"Price\",buttonTitle:\"Style\",type:ControlType.Object,controls:{hidden:{type:ControlType.Boolean,defaultValue:false},...textProperties(18,\"rgba(18, 18, 18, 1)\")}},comparePriceStyle:{title:\"Compare Price\",buttonTitle:\"Style\",type:ControlType.Object,controls:{hidden:{type:ControlType.Boolean,defaultValue:false},textDecoration:{title:\"Decoration\",buttonTitle:\"Style\",type:ControlType.Object,controls:{textDecorationLine:{title:\"Line\",type:ControlType.Enum,options:[\"none\",\"line-through\",\"overline\",\"underline\"],optionTitles:[\"Hidden\",\"Line through\",\"Overline\",\"Underline\"],defaultValue:\"line-through\"},textDecorationColor:{title:\"Color\",type:ControlType.Color,optional:true},textDecorationStyle:{title:\"Style\",type:ControlType.Enum,options:[\"solid\",\"double\",\"dotted\",\"dashed\",\"wavy\"],optionTitles:[\"Solid\",\"Double\",\"Dotted\",\"Dashed\",\"Wavy\"],defaultValue:\"solid\"},textDecorationThickness:{title:\"Thickness\",type:ControlType.Number,min:1,max:30,defaultValue:1}}},...textProperties(16,\"rgba(18, 18, 18, 0.75)\")}},soldOutStyle:{title:\"Sold Out\",buttonTitle:\"Style\",type:ControlType.Object,controls:{hidden:{type:ControlType.Boolean,defaultValue:false},lineThrough:{type:ControlType.Boolean,defaultValue:true},...textProperties(14,\"#fff\"),backgroundColor:{type:ControlType.Color,defaultValue:\"#000000\"},border:{type:ControlType.Border,defaultValue:{borderWidth:0}},padding:{type:ControlType.Padding,defaultValue:\"2px 8px 2px 8px\"},borderRadius:{type:ControlType.BorderRadius,defaultValue:\"20px\"}}}});const styles={container:{display:\"flex\",flexDirection:\"row\",flexWrap:\"wrap\",gap:8,alignItems:\"center\"},comparePrice:{textDecoration:\"line-through\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Shopify_ProductPrice\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}// Setting Maximum Text Character Limit in Framer CMS by Doruk Kavcioglu\n// Framer.guide | Framer Course - Coming Soon\nexport function withCharacterLimit(Component){return props=>{// Extract text property\nconst{text,...otherProps}=props;const limit=80// Set character limit\n;// Check if text is longer than limit, if so, trim it\nlet trimmedText=text;if(text?.length>limit){trimmedText=text.slice(0,limit).trim()// Trim extra spaces\n;// Check if trimmed text ends with dot\nif(trimmedText.endsWith(\".\")){trimmedText=trimmedText.slice(0,-1).trim()// Remove extra dot if it ends with a dot\n;}trimmedText+=\"...\"// Add three dots\n;}return /*#__PURE__*/_jsx(Component,{...otherProps,text:trimmedText});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCharacterLimit\":{\"type\":\"reactHoc\",\"name\":\"withCharacterLimit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Character_limit.map", "// Generated by Framer (f73129a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Pathway Extreme-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Pathway Extreme\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Liw3igP5eg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-dYYy4 .framer-styles-preset-bhyncf:not(.rich-text-wrapper), .framer-dYYy4 .framer-styles-preset-bhyncf.rich-text-wrapper p { --framer-font-family: \"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-dYYy4 .framer-styles-preset-bhyncf:not(.rich-text-wrapper), .framer-dYYy4 .framer-styles-preset-bhyncf.rich-text-wrapper p { --framer-font-family: \"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-dYYy4 .framer-styles-preset-bhyncf:not(.rich-text-wrapper), .framer-dYYy4 .framer-styles-preset-bhyncf.rich-text-wrapper p { --framer-font-family: \"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-dYYy4\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ProductPrice from\"https://framerusercontent.com/modules/XUMZkHzkb6JRq7hdD46W/XDIPkVouzBvGXlnftTxs/Shopify_ProductPrice.js\";import{withCharacterLimit}from\"https://framerusercontent.com/modules/iu1t6Hy4WsIebCrBXmub/QC4DuhiKU9VRKp97JYbP/Character_limit.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yOAQOWihl9EIJKOMwxdo/a6nPzvJqaINdofaxrSUI/aQBmYI0Ys.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/4GC3OQV394SPYPz9aou5/AAFkIPw77hBpGGTNIOiI/jga3KxjKM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/i2AcXMclpd8ia332v05U/gIb4J4KKYPBbLJaHn0FA/jmQRX66ck.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/WXBaOhjRl18mU1xNCfAw/VEXHUjbKahY99P8O5wmW/MA__YUPQ6.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/JCDZvXBUj2yutwVolVdy/TSfC2eEnwjtxCkd5d2ms/W6cY7i5V4.js\";const ProductPriceFonts=getFonts(ProductPrice);const RichTextWithCharacterLimit1xa3j8x=withCodeBoundaryForOverrides(RichText,{nodeId:\"OsEbJCjjl\",override:withCharacterLimit,scopeId:\"qcHA9mD6X\"});const enabledGestures={EB4FdUO_T:{hover:true},pFPUfmyqj:{hover:true},reMcmPSwO:{hover:true}};const cycleOrder=[\"pFPUfmyqj\",\"EB4FdUO_T\",\"w_Dq0Q0in\",\"EXAFJU8Ip\",\"reMcmPSwO\"];const serializationHash=\"framer-TSatB\";const variantClassNames={EB4FdUO_T:\"framer-v-1p66nvo\",EXAFJU8Ip:\"framer-v-1d649dt\",pFPUfmyqj:\"framer-v-8tgz7a\",reMcmPSwO:\"framer-v-1n3i86z\",w_Dq0Q0in:\"framer-v-cq8tve\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Card (Desktop Archive)\":\"reMcmPSwO\",\"Mobile 2\":\"EXAFJU8Ip\",Desktop:\"pFPUfmyqj\",Mobile:\"w_Dq0Q0in\",Tablet:\"EB4FdUO_T\"};const getProps=({color,height,id,image,info,productID,slug,title,width,...props})=>{return{...props,HRyY8Ob6S:image??props.HRyY8Ob6S,J6rGozt5u:title??props.J6rGozt5u??\"Product Name\",jULI0vmyn:info??props.jULI0vmyn??\"Test\",l28caue4X:slug??props.l28caue4X,U_dLj_OKd:productID??props.U_dLj_OKd??\"test\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pFPUfmyqj\",YJvR5Ncyi:color??props.YJvR5Ncyi??\"rgb(0, 0, 0)\"};};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,HRyY8Ob6S,J6rGozt5u,U_dLj_OKd,l28caue4X,jULI0vmyn,YJvR5Ncyi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pFPUfmyqj\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"reMcmPSwO-hover\")return true;if([\"EXAFJU8Ip\",\"reMcmPSwO\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:l28caue4X,motionChild:true,nodeId:\"pFPUfmyqj\",openInNewTab:false,scopeId:\"qcHA9mD6X\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-8tgz7a\",className,classNames)} framer-llgjn4`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pFPUfmyqj\",ref:refBinding,style:{...style},...addPropertyOverrides({\"EB4FdUO_T-hover\":{\"data-framer-name\":undefined},\"pFPUfmyqj-hover\":{\"data-framer-name\":undefined},\"reMcmPSwO-hover\":{\"data-framer-name\":undefined},EB4FdUO_T:{\"data-framer-name\":\"Tablet\"},EXAFJU8Ip:{\"data-framer-name\":\"Mobile 2\"},reMcmPSwO:{\"data-framer-name\":\"Card (Desktop Archive)\"},w_Dq0Q0in:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12otkyb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"bk1FPGAHY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1so5mon\",layoutDependency:layoutDependency,layoutId:\"tvPWO0jeQ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(HRyY8Ob6S),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1akfr1\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"clUqvQ3nS\",...addPropertyOverrides({EB4FdUO_T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(HRyY8Ob6S),...{positionX:\"center\",positionY:\"top\"}}},EXAFJU8Ip:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) / 2, 1px)`,...toResponsiveImage(HRyY8Ob6S),...{positionX:\"center\",positionY:\"center\"}}},reMcmPSwO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+(((componentViewport?.height||350)-0)*1-0-(((componentViewport?.height||350)-0)*1-0)*1)/2)+((((componentViewport?.height||350)-0)*1-0)*1*.5000000000000002-((((componentViewport?.height||350)-0)*1-0)*1-0)*1/2)),sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) / 2, 1px)`,...toResponsiveImage(HRyY8Ob6S),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2axxlg\",\"data-border\":true,\"data-framer-name\":\"Frame 30\",layoutDependency:layoutDependency,layoutId:\"MQAczJWME\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"EB4FdUO_T-hover\":{backgroundColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\"},\"pFPUfmyqj-hover\":{backgroundColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\"},\"reMcmPSwO-hover\":{backgroundColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\"},EXAFJU8Ip:{\"--border-top-width\":\"0px\"},reMcmPSwO:{\"--border-top-width\":\"0px\"},w_Dq0Q0in:{\"--border-top-width\":\"0px\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aevevo\",layoutDependency:layoutDependency,layoutId:\"d9eFke2_8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7fti5\",layoutDependency:layoutDependency,layoutId:\"At0nEBpxo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11pxab2-container\",\"data-framer-name\":\"Price\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ebBgyyX7M-container\",name:\"Price\",nodeId:\"ebBgyyX7M\",rendersWithMotion:true,scopeId:\"qcHA9mD6X\",children:/*#__PURE__*/_jsx(ProductPrice,{comparePriceStyle:{color:\"rgba(125, 125, 125, 0.75)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},fontSize:12,hidden:true,padding:\"0px 0px 0px 0px\",textDecoration:{textDecorationLine:\"line-through\",textDecorationStyle:\"solid\",textDecorationThickness:1}},config:{countryIsoCode:\"IT\",languageIsoCode:\"IT\",permissions:{selling_plans:false},storeDomain:\"svapxc-ue.myshopify.com\",storefrontToken:\"b340c8e36c46675c7cae0859676c7826\",testMode:false},font:{},height:\"100%\",id:\"ebBgyyX7M\",layoutId:\"ebBgyyX7M\",name:\"Price\",priceStyle:{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:12,hidden:false,padding:\"0px\"},productID:U_dLj_OKd,soldOutStyle:{backgroundColor:\"rgb(0, 0, 0)\",border:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"20px\",color:\"rgb(17, 17, 17)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},fontSize:12,hidden:false,lineThrough:true,padding:\"2px 8px 2px 8px\"},soldOutTitle:\"\",startFromTitle:\"Start from\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"pFPUfmyqj-hover\":{priceStyle:{color:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:12,hidden:false,padding:\"0px\"}},\"reMcmPSwO-hover\":{priceStyle:{color:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontSize:16,hidden:false,padding:\"0px\"}},EXAFJU8Ip:{comparePriceStyle:{color:\"rgba(125, 125, 125, 0.75)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:12,hidden:true,padding:\"0px 0px 0px 0px\",textDecoration:{textDecorationLine:\"line-through\",textDecorationStyle:\"solid\",textDecorationThickness:1}},priceStyle:{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontSize:14,hidden:false,padding:\"0px\"}},reMcmPSwO:{comparePriceStyle:{color:\"rgba(125, 125, 125, 0.75)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:12,hidden:true,padding:\"0px 0px 0px 0px\",textDecoration:{textDecorationLine:\"line-through\",textDecorationStyle:\"solid\",textDecorationThickness:1}},priceStyle:{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontSize:16,hidden:false,padding:\"0px\"}},w_Dq0Q0in:{comparePriceStyle:{color:\"rgba(125, 125, 125, 0.75)\",font:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:12,hidden:true,padding:\"0px 0px 0px 0px\",textDecoration:{textDecorationLine:\"line-through\",textDecorationStyle:\"solid\",textDecorationThickness:1}}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ucvfct\",layoutDependency:layoutDependency,layoutId:\"Db6f8CFWM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3yqxf\",layoutDependency:layoutDependency,layoutId:\"KOodwAnX6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-19m8p1o\",\"data-styles-preset\":\"jmQRX66ck\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0)))\"},children:\"Product Name\"})}),className:\"framer-n9gxiz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VSMu6Ul1D\",style:{\"--extracted-1w1cjl5\":\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:J6rGozt5u,variants:{\"EB4FdUO_T-hover\":{\"--extracted-1w1cjl5\":\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"},\"pFPUfmyqj-hover\":{\"--extracted-1w1cjl5\":\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"},\"reMcmPSwO-hover\":{\"--extracted-1eung3n\":\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"},EXAFJU8Ip:{\"--extracted-1lwpl3i\":\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\"},reMcmPSwO:{\"--extracted-1eung3n\":\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EB4FdUO_T-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-19m8p1o\",\"data-styles-preset\":\"jmQRX66ck\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255)))\"},children:\"Product Name\"})})},\"pFPUfmyqj-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-19m8p1o\",\"data-styles-preset\":\"jmQRX66ck\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255)))\"},children:\"Product Name\"})})},\"reMcmPSwO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-q8vev8\",\"data-styles-preset\":\"W6cY7i5V4\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255)))\"},children:\"Product Name\"})})},EXAFJU8Ip:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1wp9ssy\",\"data-styles-preset\":\"aQBmYI0Ys\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0)))\"},children:\"Product Name\"})})},reMcmPSwO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-q8vev8\",\"data-styles-preset\":\"W6cY7i5V4\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0)))\"},children:\"Product Name\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zzfwfe\",layoutDependency:layoutDependency,layoutId:\"MIIVDkcvv\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithCharacterLimit1xa3j8x,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-bhyncf\",\"data-styles-preset\":\"jga3KxjKM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-YJvR5Ncyi-qcHA9mD6X))\"},children:\"Test\"})}),className:\"framer-1xa3j8x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OsEbJCjjl\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-YJvR5Ncyi-qcHA9mD6X)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-YJvR5Ncyi-qcHA9mD6X\":YJvR5Ncyi},text:jULI0vmyn,variants:{\"reMcmPSwO-hover\":{\"--extracted-r6o4lv\":\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"reMcmPSwO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l6qmqb\",\"data-styles-preset\":\"MA__YUPQ6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255)))\"},children:\"Test\"})})},reMcmPSwO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l6qmqb\",\"data-styles-preset\":\"MA__YUPQ6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-YJvR5Ncyi-qcHA9mD6X))\"},children:\"Test\"})})}},baseVariant,gestureVariant)})})]})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TSatB.framer-llgjn4, .framer-TSatB .framer-llgjn4 { display: block; }\",\".framer-TSatB.framer-8tgz7a { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 332px; }\",\".framer-TSatB .framer-12otkyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TSatB .framer-1so5mon { flex: none; height: 380px; overflow: hidden; position: relative; width: 100%; }\",\".framer-TSatB .framer-1akfr1 { flex: none; gap: 0px; height: 100%; left: calc(50.13123359580055% - 100% / 2); mix-blend-mode: darken; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-TSatB .framer-2axxlg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-TSatB .framer-aevevo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TSatB .framer-1h7fti5, .framer-TSatB .framer-l3yqxf { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-TSatB .framer-11pxab2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TSatB .framer-ucvfct { 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-TSatB .framer-n9gxiz, .framer-TSatB .framer-1xa3j8x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TSatB .framer-zzfwfe { 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; min-height: 15px; padding: 0px; position: relative; width: 100%; }\",\".framer-TSatB.framer-v-cq8tve.framer-8tgz7a { cursor: unset; width: 165px; }\",\".framer-TSatB.framer-v-cq8tve .framer-1so5mon { height: 200px; }\",\".framer-TSatB.framer-v-1d649dt.framer-8tgz7a { cursor: unset; flex-direction: row; width: 330px; }\",\".framer-TSatB.framer-v-1d649dt .framer-12otkyb { flex: 1 0 0px; flex-direction: row; width: 1px; }\",\".framer-TSatB.framer-v-1d649dt .framer-1so5mon { flex: 1 0 0px; height: 200px; width: 1px; }\",\".framer-TSatB.framer-v-1d649dt .framer-2axxlg { align-self: stretch; flex: 1 0 0px; gap: 8px; height: auto; justify-content: flex-start; width: 1px; }\",\".framer-TSatB.framer-v-1d649dt .framer-aevevo, .framer-TSatB.framer-v-1n3i86z .framer-aevevo { gap: unset; height: 100%; justify-content: space-between; }\",\".framer-TSatB.framer-v-1d649dt .framer-1h7fti5, .framer-TSatB.framer-v-1n3i86z .framer-1h7fti5 { order: 1; }\",\".framer-TSatB.framer-v-1d649dt .framer-ucvfct, .framer-TSatB.framer-v-1n3i86z .framer-ucvfct { gap: 4px; order: 0; }\",\".framer-TSatB.framer-v-1d649dt .framer-l3yqxf, .framer-TSatB.framer-v-1n3i86z .framer-l3yqxf { order: 0; }\",\".framer-TSatB.framer-v-1d649dt .framer-zzfwfe, .framer-TSatB.framer-v-1n3i86z .framer-zzfwfe { min-height: unset; order: 1; }\",\".framer-TSatB.framer-v-1n3i86z.framer-8tgz7a { flex-direction: row; height: 350px; width: 330px; }\",\".framer-TSatB.framer-v-1n3i86z .framer-12otkyb { flex: 1 0 0px; flex-direction: row; height: 100%; width: 1px; }\",\".framer-TSatB.framer-v-1n3i86z .framer-1so5mon { flex: 1 0 0px; height: 100%; width: 1px; }\",\".framer-TSatB.framer-v-1n3i86z .framer-1akfr1 { left: 0px; }\",\".framer-TSatB.framer-v-1n3i86z .framer-2axxlg { gap: 8px; height: 100%; justify-content: flex-start; padding: 16px; width: 50%; }\",\".framer-TSatB.framer-v-1n3i86z.hover .framer-aevevo { gap: unset; }\",\".framer-TSatB.framer-v-1n3i86z.hover .framer-zzfwfe { min-height: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-TSatB[data-border=\"true\"]::after, .framer-TSatB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 428\n * @framerIntrinsicWidth 332\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EB4FdUO_T\":{\"layout\":[\"fixed\",\"auto\"]},\"w_Dq0Q0in\":{\"layout\":[\"fixed\",\"auto\"]},\"EXAFJU8Ip\":{\"layout\":[\"fixed\",\"auto\"]},\"reMcmPSwO\":{\"layout\":[\"fixed\",\"fixed\"]},\"hvRe9zg8P\":{\"layout\":[\"fixed\",\"auto\"]},\"Ro6W49_IT\":{\"layout\":[\"fixed\",\"auto\"]},\"lI1sMES6e\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HRyY8Ob6S\":\"image\",\"J6rGozt5u\":\"title\",\"U_dLj_OKd\":\"productID\",\"l28caue4X\":\"slug\",\"jULI0vmyn\":\"info\",\"YJvR5Ncyi\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqcHA9mD6X=withCSS(Component,css,\"framer-TSatB\");export default FramerqcHA9mD6X;FramerqcHA9mD6X.displayName=\"Modern Product Card\";FramerqcHA9mD6X.defaultProps={height:428,width:332};addPropertyControls(FramerqcHA9mD6X,{variant:{options:[\"pFPUfmyqj\",\"EB4FdUO_T\",\"w_Dq0Q0in\",\"EXAFJU8Ip\",\"reMcmPSwO\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Mobile 2\",\"Card (Desktop Archive)\"],title:\"Variant\",type:ControlType.Enum},HRyY8Ob6S:{description:\"Product Image\",title:\"Image\",type:ControlType.ResponsiveImage},J6rGozt5u:{defaultValue:\"Product Name\",displayTextArea:false,title:\"Title\",type:ControlType.String},U_dLj_OKd:{defaultValue:\"test\",displayTextArea:false,title:\"productID\",type:ControlType.String},l28caue4X:{title:\"Slug\",type:ControlType.Link},jULI0vmyn:{defaultValue:\"Test\",displayTextArea:true,title:\"Info\",type:ControlType.String},YJvR5Ncyi:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerqcHA9mD6X,[{explicitInter:true,fonts:[{family:\"Pathway Extreme\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak6t11Liw3igP5eg.woff2\",weight:\"500\"},{family:\"Pathway Extreme\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Liw3igP5eg.woff2\",weight:\"400\"},{family:\"Pathway Extreme\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xakBtp1Liw3igP5eg.woff2\",weight:\"600\"},{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\"}]},...ProductPriceFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqcHA9mD6X\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"332\",\"framerVariables\":\"{\\\"HRyY8Ob6S\\\":\\\"image\\\",\\\"J6rGozt5u\\\":\\\"title\\\",\\\"U_dLj_OKd\\\":\\\"productID\\\",\\\"l28caue4X\\\":\\\"slug\\\",\\\"jULI0vmyn\\\":\\\"info\\\",\\\"YJvR5Ncyi\\\":\\\"color\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EB4FdUO_T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w_Dq0Q0in\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EXAFJU8Ip\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"reMcmPSwO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hvRe9zg8P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ro6W49_IT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lI1sMES6e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"428\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qcHA9mD6X.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{useState}from\"react\";// Code component provided by Eleveight Supply\u2122. All rights reserved 2024.\n/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight 100%\n */export default function FAQ(props){const{items:passedItems,questionStyles,answerStyles,faqStyles,linkStyles,transition}=props;// Fallback to default items if passed-in items is empty or undefined\nconst items=passedItems&&passedItems.length>0?passedItems:FAQ.defaultProps.items;const[openIndex,setOpenIndex]=useState(null);const toggle=index=>{setOpenIndex(openIndex===index?null:index);};return /*#__PURE__*/_jsx(\"div\",{children:items.map((item,index)=>/*#__PURE__*/_jsx(FAQItem,{question:item.question,answer:item.answer,isOpen:openIndex===index,toggle:()=>toggle(index),questionStyles:questionStyles,answerStyles:answerStyles,linkStyles:linkStyles,isLastItem:index===items.length-1,faqStyles:faqStyles,transition:transition},index))});}const FAQItem=({question,answer,isOpen,toggle,questionStyles,answerStyles,linkStyles,isLastItem,faqStyles,transition})=>{const containerStyle={padding:`${faqStyles.faqPaddingTop}px ${faqStyles.faqPaddingRight}px ${faqStyles.faqPaddingBottom}px ${faqStyles.faqPaddingLeft}px`,backgroundColor:faqStyles.faqFill,borderTopLeftRadius:`${faqStyles.faqBorderRadiusTopLeft}px`,borderTopRightRadius:`${faqStyles.faqBorderRadiusTopRight}px`,borderBottomRightRadius:`${faqStyles.faqBorderRadiusBottomRight}px`,borderBottomLeftRadius:`${faqStyles.faqBorderRadiusBottomLeft}px`,border:`${faqStyles.faqBorder.width}px ${faqStyles.faqBorder.style} ${faqStyles.faqBorder.color}`,marginBottom:isLastItem?\"0\":`${faqStyles.containerSpacing}px`,cursor:\"pointer\",userSelect:\"none\",boxSizing:\"border-box\"};const questionStyle={color:questionStyles.questionColor,...questionStyles.questionFont,display:\"flex\",justifyContent:\"space-between\",alignItems:\"flex-start\",userSelect:\"none\",margin:0};const answerContainerStyle={overflow:\"hidden\"};const answerStyle={color:answerStyles.answerColor,...answerStyles.answerFont,marginTop:`${questionStyles.questionAnswerSpacing}px`,userSelect:\"none\"};const iconStyle={display:\"flex\",alignItems:\"center\",justifyContent:\"center\",margin:0,padding:0,marginLeft:\"12px\"};// Link styling and adding `onClick=\"event.stopPropagation()\"`\nconst linkStyle={color:linkStyles.linkColor,textDecoration:linkStyles.underline?\"underline\":\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,onClick:toggle,children:[/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:1},animate:{opacity:1},transition:transition,style:questionStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:{margin:0,flex:1},children:question}),/*#__PURE__*/_jsx(motion.div,{initial:{rotate:0,opacity:1},animate:{rotate:isOpen?180:0,opacity:isOpen?.5:1},transition:transition,style:iconStyle,children:/*#__PURE__*/_jsx(\"svg\",{width:faqStyles.chevronSize,viewBox:\"6 1 12 20\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",d:\"M17 10l-5 5-5-5\"})})})]}),/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:isOpen&&/*#__PURE__*/_jsx(motion.div,{initial:{height:0,opacity:0},animate:{height:\"auto\",opacity:1},exit:{height:0,opacity:0},transition:transition,style:answerContainerStyle,children:/*#__PURE__*/_jsx(\"div\",{style:answerStyle,dangerouslySetInnerHTML:{__html:answer.replace(/<a\\b([^>]*)>/gi,`<a onclick=\"event.stopPropagation()\" style=\"color: ${linkStyle.color}; text-decoration: ${linkStyle.textDecoration};\" $1>`)}})})})]});};FAQ.defaultProps={items:[{question:\"How do I set it up, is it easy?\",answer:\"It's pretty simple, just go to the property controls, start adding your questions, then play around with the font styling.\"},{question:\"Oh it also uses Framer's native transitions?\",answer:\"Yes, this uses Framer's native transition library, Framer motion, so you won't miss anything.\"},{question:\"Thank you for using Eleveight Supply!\",answer:\"Enjoy your new components, keep saving precious time and continue creating amazing stuff\"}],questionStyles:{questionFont:{family:\"Inter\",size:16,weight:400,letterSpacing:\"normal\",lineHeight:\"normal\"},questionColor:\"#ffffff\",questionAnswerSpacing:10},answerStyles:{answerFont:{family:\"Inter\",size:16,weight:400,letterSpacing:\"normal\",lineHeight:\"normal\"},answerColor:\"#ffffff\"},linkStyles:{linkColor:\"#007aff\",underline:true},faqStyles:{faqFill:\"#0d0d0d\",faqBorder:{color:\"#171717\",width:1,style:\"solid\"},containerSpacing:8,faqBorderRadiusTopLeft:10,faqBorderRadiusTopRight:10,faqBorderRadiusBottomRight:10,faqBorderRadiusBottomLeft:10,faqPaddingTop:16,faqPaddingRight:16,faqPaddingBottom:16,faqPaddingLeft:16,chevronSize:12},transition:{type:\"spring\",stiffness:400,damping:50}};addPropertyControls(FAQ,{items:{type:ControlType.Array,defaultValue:[{question:\"How do I set it up, is it easy?\",answer:\"It's pretty simple, just go to the property controls, start adding your questions, then play around with the font styling.\"},{question:\"Oh it also uses Framer's native transitions?\",answer:\"Yes, this uses Framer's native transition library, Framer motion, so you won't miss anything.\"},{question:\"Thank you for using Eleveight Supply!\",answer:\"Enjoy your new components, keep saving precious time and continue creating amazing stuff\"}],propertyControl:{type:ControlType.Object,controls:{question:{type:ControlType.String,title:\"Question\"},answer:{type:ControlType.String,title:\"Answer\",control:ControlType.StringArea,defaultValue:\"\",description:\"For links use: <a href='yourlink'>text</a>\"}}},title:\"FAQ Items\"},questionStyles:{type:ControlType.Object,title:\"[Q] Font\",controls:{questionFont:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},questionColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000\"},questionAnswerSpacing:{type:ControlType.Number,title:\"Gap\",defaultValue:10,displayStepper:true,unit:\"px\",description:\"Gap between the Question and answer\"}}},answerStyles:{type:ControlType.Object,title:\"[A] Font\",controls:{answerFont:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},answerColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000\"}}},linkStyles:{type:ControlType.Object,title:\"[Link] Style\",controls:{linkColor:{type:ControlType.Color,title:\"Link Color\",defaultValue:\"#007aff\"},underline:{type:ControlType.Boolean,title:\"Underline\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"}}},faqStyles:{type:ControlType.Object,title:\"Styles\",controls:{faqFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\"},faqBorder:{type:ControlType.Object,title:\"Border\",controls:{color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#171717\"},width:{type:ControlType.Number,title:\"Width\",min:0,max:10,defaultValue:1,unit:\"px\"},style:{type:ControlType.Enum,title:\"Style\",options:[\"solid\",\"dashed\",\"dotted\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\"],defaultValue:\"solid\"}}},containerSpacing:{type:ControlType.Number,title:\"Rows Gap\",defaultValue:16,unit:\"px\"},faqBorderRadius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:10,toggleKey:\"uniformBorderRadius\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"faqBorderRadiusTopLeft\",\"faqBorderRadiusTopRight\",\"faqBorderRadiusBottomRight\",\"faqBorderRadiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},faqPadding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:16,toggleKey:\"uniformPadding\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"faqPaddingTop\",\"faqPaddingRight\",\"faqPaddingBottom\",\"faqPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},chevronSize:{type:ControlType.Number,title:\"Chevron Size\",defaultValue:12,unit:\"px\",min:1,max:30,displayStepper:true}}},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:50}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FAQ\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"100%\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FAQ.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FAQ from\"https://framerusercontent.com/modules/HEy6TGlaFtuIhdCIDisp/TJJebWPn7MCss3aFZCde/FAQ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6qnQZL6cmZkP69sTImWt/d0LgJi10kvxaIrd5KcdZ/U2lKbvIy0.js\";import Button from\"https://framerusercontent.com/modules/sOiizqTVgGtXP0lLGMco/0fVJHMLd8TbtIQ4H0Evg/ZZ0Rwka6P.js\";const ButtonFonts=getFonts(Button);const FAQFonts=getFonts(FAQ);const cycleOrder=[\"s27rpGECU\",\"ZfffB4MVf\",\"YT2FD1xCW\"];const serializationHash=\"framer-gOxpn\";const variantClassNames={s27rpGECU:\"framer-v-1j7e837\",YT2FD1xCW:\"framer-v-1p23dqt\",ZfffB4MVf:\"framer-v-ga79l0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"s27rpGECU\",Mobile:\"YT2FD1xCW\",Tablet:\"ZfffB4MVf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"s27rpGECU\"};};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:\"s27rpGECU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"YT2FD1xCW\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"YT2FD1xCW\")return true;return false;};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-1j7e837\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"s27rpGECU\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({YT2FD1xCW:{\"data-framer-name\":\"Mobile\"},ZfffB4MVf:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r03tj5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"vliRchDJy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-xwel2y\",\"data-styles-preset\":\"U2lKbvIy0\",children:\"FAQ\"})}),className:\"framer-1rg5vle\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eNrxf0cKa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ePDLQVAnT\"},motionChild:true,nodeId:\"hPIeqEMJA\",scopeId:\"uTPPDNTtx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qt2v08 framer-kwsi74\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"hPIeqEMJA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+32+0+(0+50+(((componentViewport?.height||656)-128)*1-0-107)/1*1)+0,...addPropertyOverrides({ZfffB4MVf:{y:(componentViewport?.y||0)+16+0+(0+50+(((componentViewport?.height||640)-112)*1-0-107)/1*1)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r4xzmw-container\",layoutDependency:layoutDependency,layoutId:\"uSyzFQhyS-container\",nodeId:\"uSyzFQhyS\",rendersWithMotion:true,scopeId:\"uTPPDNTtx\",children:/*#__PURE__*/_jsx(Button,{d8IQ9NJZf:true,gRa1PsHaP:{borderColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",borderStyle:\"solid\",borderWidth:1},h5O0X9W6U:\"center\",height:\"100%\",hj7GLCQTt:true,id:\"uSyzFQhyS\",layoutId:\"uSyzFQhyS\",Qh4YIcE8V:\"more info\",Qqj1GGlNe:\"center\",udJXberzM:\"rgb(255, 255, 255)\",ueS6cYOOZ:false,variant:\"bMRkGRfiR\",VfNJqG_yd:\"rgb(0, 0, 0)\",width:\"100%\",...addPropertyOverrides({ZfffB4MVf:{udJXberzM:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",variant:\"TORkHifK3\",VfNJqG_yd:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-miy8qt\",\"data-framer-name\":\"Questions\",layoutDependency:layoutDependency,layoutId:\"MifN2yrPq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e7k3cu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SciIrWV9Q-container\",nodeId:\"SciIrWV9Q\",rendersWithMotion:true,scopeId:\"uTPPDNTtx\",children:/*#__PURE__*/_jsx(FAQ,{answerStyles:{answerColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",answerFont:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"135%\"}},faqStyles:{chevronSize:12,containerSpacing:16,faqBorder:{color:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",style:\"solid\",width:0},faqBorderRadius:0,faqBorderRadiusBottomLeft:0,faqBorderRadiusBottomRight:0,faqBorderRadiusTopLeft:0,faqBorderRadiusTopRight:0,faqFill:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",faqPadding:16,faqPaddingBottom:16,faqPaddingLeft:16,faqPaddingRight:16,faqPaddingTop:16,uniformBorderRadius:false,uniformPadding:false},height:\"100%\",id:\"SciIrWV9Q\",items:[{answer:\"We accept payments via paypal, a safe and fast way to complete your purchases.\",question:\"WHAT PAYMENT METHODS DO YOU ACCEPT?\"},{answer:\"Yes, we ship internationally! Delivery times for international orders usually range from 5 to 10 working days, depending on the destination country.\",question:\"DO YOU OFFER INTERNATIONAL SHIPPING?\"},{answer:\"After your payment is confirmed, you will receive a tracking code. You can use it to follow your package directly on the poste italiane website.\",question:\"HOW CAN I TRACK MY ORDER?\"},{answer:'You can find all the details about returns on our \"Terms and conditions\" page.',question:\"WHAT IS YOUR RETURN POLICY?\"},{answer:'If you have any questions or need assistance, you can reach us through the contact form available on our \"About\" page.',question:\"HOW CAN I CONTACT CUSTOMER SERVICE?\"},{answer:\"We have a size guide to help you choose the right fit, available on each product page.\",question:\"HOW DO I CHOOSE THE RIGHT SIZE?\"},{answer:\"You can enter your discount code or gift card during the checkout process.\",question:\"HOW CAN I USE A DISCOUNT CODE OR GIFT CARD?\"},{answer:\"At the moment, we do not offer installment payment solutions.\",question:\"DO YOU OFFER INSTALLMENT PAYMENT OPTIONS?\"}],layoutId:\"SciIrWV9Q\",linkStyles:{linkColor:\"var(--token-0b8f33e5-c644-4a59-be77-0d53c12ce1b5, rgb(93, 93, 93))\",underline:true},questionStyles:{questionAnswerSpacing:8,questionColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",questionFont:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"}},style:{width:\"100%\"},transition:{damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"},width:\"100%\",...addPropertyOverrides({YT2FD1xCW:{answerStyles:{answerColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",answerFont:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"150%\"}},faqStyles:{chevronSize:10,containerSpacing:8,faqBorder:{color:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",style:\"solid\",width:0},faqBorderRadius:0,faqBorderRadiusBottomLeft:0,faqBorderRadiusBottomRight:0,faqBorderRadiusTopLeft:0,faqBorderRadiusTopRight:0,faqFill:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",faqPadding:0,faqPaddingBottom:12,faqPaddingLeft:0,faqPaddingRight:0,faqPaddingTop:12,uniformBorderRadius:false,uniformPadding:true},questionStyles:{questionAnswerSpacing:8,questionColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",questionFont:{fontFamily:'\"Albert Sans\", \"Albert Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"}}},ZfffB4MVf:{answerStyles:{answerColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",answerFont:{fontFamily:'\"Pathway Extreme\", \"Pathway Extreme Placeholder\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"150%\"}}}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zn8ci8\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"TYujLacIZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,...addPropertyOverrides({YT2FD1xCW:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+16+74+0+332+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e2q64n-container\",layoutDependency:layoutDependency,layoutId:\"E7TbwRpwJ-container\",nodeId:\"E7TbwRpwJ\",rendersWithMotion:true,scopeId:\"uTPPDNTtx\",children:/*#__PURE__*/_jsx(Button,{d8IQ9NJZf:true,gRa1PsHaP:{borderColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",borderStyle:\"solid\",borderWidth:1},h5O0X9W6U:\"center\",height:\"100%\",hj7GLCQTt:true,id:\"E7TbwRpwJ\",layoutId:\"E7TbwRpwJ\",Qh4YIcE8V:\"more info\",Qqj1GGlNe:\"center\",style:{width:\"100%\"},udJXberzM:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",ueS6cYOOZ:false,variant:\"TORkHifK3\",VfNJqG_yd:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gOxpn.framer-kwsi74, .framer-gOxpn .framer-kwsi74 { display: block; }\",\".framer-gOxpn.framer-1j7e837 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px 32px 96px 32px; position: relative; width: 1440px; }\",\".framer-gOxpn .framer-1r03tj5 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gOxpn .framer-1rg5vle { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gOxpn .framer-1qt2v08 { 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: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gOxpn .framer-1r4xzmw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gOxpn .framer-miy8qt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-gOxpn .framer-e7k3cu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gOxpn .framer-zn8ci8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gOxpn .framer-1e2q64n-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-gOxpn.framer-v-ga79l0.framer-1j7e837 { gap: 24px; justify-content: flex-start; padding: 16px 16px 96px 16px; width: 810px; }\",\".framer-gOxpn.framer-v-ga79l0 .framer-miy8qt { gap: 16px; }\",\".framer-gOxpn.framer-v-1p23dqt.framer-1j7e837 { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 16px 16px 96px 16px; width: 360px; }\",\".framer-gOxpn.framer-v-1p23dqt .framer-1r03tj5 { align-self: unset; flex: none; flex-direction: row; height: min-content; width: 100%; }\",\".framer-gOxpn.framer-v-1p23dqt .framer-miy8qt { gap: 32px; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 656\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZfffB4MVf\":{\"layout\":[\"fixed\",\"auto\"]},\"YT2FD1xCW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameruTPPDNTtx=withCSS(Component,css,\"framer-gOxpn\");export default FrameruTPPDNTtx;FrameruTPPDNTtx.displayName=\"FAQ\";FrameruTPPDNTtx.defaultProps={height:656,width:1440};addPropertyControls(FrameruTPPDNTtx,{variant:{options:[\"s27rpGECU\",\"ZfffB4MVf\",\"YT2FD1xCW\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruTPPDNTtx,[{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:\"Albert Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_qY32TxAj1g.woff2\",weight:\"600\"},{family:\"Pathway Extreme\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pathwayextreme/v3/neI6zCC3pJ0rsaH2_sD-QttXPfDPonvkQ-pxx5gufvP2VmLjiFyxGf8BLymNjYv2Oy6vkLmw4xak2N11Liw3igP5eg.woff2\",weight:\"400\"}]},...ButtonFonts,...FAQFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruTPPDNTtx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZfffB4MVf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YT2FD1xCW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"656\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uTPPDNTtx.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/VBFyWRZkH8vuIvVvye1b/djOr46HB0qYjdxSgk1mZ/cC5vR0H2Y.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6qnQZL6cmZkP69sTImWt/d0LgJi10kvxaIrd5KcdZ/U2lKbvIy0.js\";import Button from\"https://framerusercontent.com/modules/sOiizqTVgGtXP0lLGMco/0fVJHMLd8TbtIQ4H0Evg/ZZ0Rwka6P.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"pBuXcuYaW\",\"l34ZNyX4e\",\"mkOO878Lg\"];const serializationHash=\"framer-m9cyZ\";const variantClassNames={l34ZNyX4e:\"framer-v-1bcakq0\",mkOO878Lg:\"framer-v-r85kk9\",pBuXcuYaW:\"framer-v-1tbrt8k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"pBuXcuYaW\",Mobile:\"mkOO878Lg\",Tablet:\"l34ZNyX4e\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pBuXcuYaW\"};};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:\"pBuXcuYaW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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-1tbrt8k\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pBuXcuYaW\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({l34ZNyX4e:{\"data-framer-name\":\"Tablet\"},mkOO878Lg:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zcgtkz\",layoutDependency:layoutDependency,layoutId:\"wIQRmfgW4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-xwel2y\",\"data-styles-preset\":\"U2lKbvIy0\",children:\"LET'S TALK!\"})}),className:\"framer-g7eow5\",\"data-framer-name\":\"Let\u2019s collaborate!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I_Sn_YczZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sczjtl\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"ipYxssg7s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1ez0ric\",\"data-styles-preset\":\"cC5vR0H2Y\",children:[/*#__PURE__*/_jsx(motion.strong,{children:\"NEED PIECES FOR A SHOOT, A PROJECT OR SOMETHING WILD?\"}),/*#__PURE__*/_jsx(motion.br,{}),\"We rent, we collab, we talk. Let\u2019s build something together \u2014 hit us up.\"]})}),className:\"framer-1sj2xyn\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"vSTOyKWlM\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h0qz24\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"oVBK5XQCM\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ePDLQVAnT\"},motionChild:true,nodeId:\"gLFNO3yZK\",scopeId:\"V2JylVX06\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tan2m6 framer-1kg5nzj\",layoutDependency:layoutDependency,layoutId:\"gLFNO3yZK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+32+(((componentViewport?.height||338)-64-313)/2+160+96)+0+0,...addPropertyOverrides({l34ZNyX4e:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||362)-80-313)/2+160+96)+0+0},mkOO878Lg:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+16+(((componentViewport?.height||330)-80-281)/2+160+64)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ho0tqz-container\",layoutDependency:layoutDependency,layoutId:\"x2cYeQsve-container\",nodeId:\"x2cYeQsve\",rendersWithMotion:true,scopeId:\"V2JylVX06\",children:/*#__PURE__*/_jsx(Button,{d8IQ9NJZf:true,gRa1PsHaP:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},h5O0X9W6U:\"center\",height:\"100%\",hj7GLCQTt:true,id:\"x2cYeQsve\",layoutId:\"x2cYeQsve\",Qh4YIcE8V:\"contact us\",Qqj1GGlNe:\"center\",udJXberzM:\"rgb(255, 255, 255)\",ueS6cYOOZ:false,variant:\"bMRkGRfiR\",VfNJqG_yd:\"rgb(0, 0, 0)\",width:\"100%\",...addPropertyOverrides({l34ZNyX4e:{gRa1PsHaP:{borderColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",borderStyle:\"solid\",borderWidth:0},udJXberzM:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",variant:\"TORkHifK3\",VfNJqG_yd:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"},mkOO878Lg:{gRa1PsHaP:{borderColor:\"var(--token-f087e63e-ae1d-400f-877d-6f17e5fd73f2, rgb(0, 0, 0))\",borderStyle:\"solid\",borderWidth:1},style:{width:\"100%\"},udJXberzM:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\",variant:\"TORkHifK3\",VfNJqG_yd:\"var(--token-d7ba994c-c895-44db-bc1e-33567684c42a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m9cyZ.framer-1kg5nzj, .framer-m9cyZ .framer-1kg5nzj { display: block; }\",\".framer-m9cyZ.framer-1tbrt8k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 1440px; }\",\".framer-m9cyZ .framer-zcgtkz { 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: 0px; position: relative; width: 100%; }\",\".framer-m9cyZ .framer-g7eow5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-m9cyZ .framer-1sczjtl { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 96%; }\",\".framer-m9cyZ .framer-1sj2xyn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 40%; word-break: break-word; word-wrap: break-word; }\",\".framer-m9cyZ .framer-h0qz24 { 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: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-m9cyZ .framer-1tan2m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-m9cyZ .framer-1ho0tqz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-m9cyZ.framer-v-1bcakq0.framer-1tbrt8k { padding: 16px 16px 64px 16px; width: 810px; }\",\".framer-m9cyZ.framer-v-1bcakq0 .framer-1sj2xyn { width: 50%; }\",\".framer-m9cyZ.framer-v-r85kk9.framer-1tbrt8k { gap: 64px; padding: 16px 16px 64px 16px; width: 360px; }\",\".framer-m9cyZ.framer-v-r85kk9 .framer-1sczjtl { width: 100%; }\",\".framer-m9cyZ.framer-v-r85kk9 .framer-1sj2xyn, .framer-m9cyZ.framer-v-r85kk9 .framer-1tan2m6, .framer-m9cyZ.framer-v-r85kk9 .framer-1ho0tqz-container { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 338\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l34ZNyX4e\":{\"layout\":[\"fixed\",\"auto\"]},\"mkOO878Lg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerV2JylVX06=withCSS(Component,css,\"framer-m9cyZ\");export default FramerV2JylVX06;FramerV2JylVX06.displayName=\"Artist Callout\";FramerV2JylVX06.defaultProps={height:338,width:1440};addPropertyControls(FramerV2JylVX06,{variant:{options:[\"pBuXcuYaW\",\"l34ZNyX4e\",\"mkOO878Lg\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerV2JylVX06,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV2JylVX06\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l34ZNyX4e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mkOO878Lg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"338\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V2JylVX06.map"],
  "mappings": "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",
  "names": ["DefaultSelectedOption", "useProduct", "productID", "config", "addToSelected", "selectedProducts", "setSelectedProducts", "useAtom", "selectedProductsAtom", "products", "useShopify", "product", "setProduct", "ye", "DefaultProduct", "selected", "getPrice", "camparePrice", "price", "comparePriceValue", "priceCode", "priceValue", "changeQuantity", "quantity", "state", "selectVariant", "item", "sellingPlan", "ue", "defaultVariant", "foundProduct", "se", "selectedVariant", "selectedSellingPlan", "compareAtPriceV2", "availableForSale", "priceV2", "quantityAvailable", "compareAtPriceRange", "priceRange", "totalInventory", "multiplePrice", "Shopify_ProductPrice", "props", "product", "price", "multiplePrice", "availableForSale", "useProduct", "p", "ComponentWrapper", "styles", "u", "l", "cn", "addPropertyControls", "ConfigControls", "ProductBaseControls", "ControlType", "textProperties", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withCharacterLimit", "Component", "props", "text", "otherProps", "limit", "trimmedText", "p", "fontStore", "fonts", "css", "className", "ProductPriceFonts", "getFonts", "Shopify_ProductPrice", "RichTextWithCharacterLimit1xa3j8x", "withCodeBoundaryForOverrides", "RichText", "withCharacterLimit", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "image", "info", "productID", "slug", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "HRyY8Ob6S", "J6rGozt5u", "U_dLj_OKd", "l28caue4X", "jULI0vmyn", "YJvR5Ncyi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerqcHA9mD6X", "withCSS", "qcHA9mD6X_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQ", "props", "passedItems", "questionStyles", "answerStyles", "faqStyles", "linkStyles", "transition", "items", "openIndex", "setOpenIndex", "ye", "toggle", "index", "p", "item", "FAQItem", "question", "answer", "isOpen", "isLastItem", "containerStyle", "questionStyle", "answerContainerStyle", "answerStyle", "iconStyle", "linkStyle", "u", "motion", "AnimatePresence", "addPropertyControls", "ControlType", "ButtonFonts", "getFonts", "ZZ0Rwka6P_default", "FAQFonts", "FAQ", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FrameruTPPDNTtx", "withCSS", "uTPPDNTtx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonFonts", "getFonts", "ZZ0Rwka6P_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerV2JylVX06", "withCSS", "V2JylVX06_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
