{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/xEahqZEsyG5uoZky61jQ/tpRjked6AKZmNun2ZAEz/_useProduct.js", "ssg:https://framerusercontent.com/modules/XUMZkHzkb6JRq7hdD46W/JEGzsKrHHSsc3iq3qc0v/Shopify_ProductPrice.js", "ssg:https://framerusercontent.com/modules/HK5Yd5barVWMny4EflX0/yDxtQiiPnjlU4qSByozT/Shopify_ProductBadge.js", "ssg:https://framerusercontent.com/modules/EXj06s1wJ2IE3autFIsj/SrXKAWTM239Lk03CFqgR/oJV9lrp7e.js"],
  "sourcesContent": ["import{useState,useEffect,useMemo}from\"react\";import{useAtom}from\"jotai\";import{useShopify}from\"https://framerusercontent.com/modules/tdCHCV0pSkxlDaX5GkOX/T2HZ5a4bzltl1yZXtjGv/_useShopify.js\";import{priceCode}from\"https://framerusercontent.com/modules/7dEgbg7qo3lsQk361YtS/NrF60tPHZRRgADqpoRFr/_utils.js\";import{selectedProductsAtom}from\"https://framerusercontent.com/modules/yZBbIevRfN36MGDPpltx/QsMt3lifGFhrUUWGTJnm/_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/tpRjked6AKZmNun2ZAEz/_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\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}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/tpRjked6AKZmNun2ZAEz/_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_ProductBadge(props){const{product,price,availableForSale}=useProduct(props.productID??null,props.config);const hideSaleLabel=!price?.camparePrice||price?.camparePrice===price?.price;const hidden=availableForSale?hideSaleLabel:!props.soldOutLabel;return /*#__PURE__*/_jsx(ComponentWrapper,{style:cn(styles.container,props.styles),productID:props.productID||\"EMPTY\",hidden:!product||hidden,config:props.config,children:()=>availableForSale?/*#__PURE__*/_jsx(\"span\",{children:props.label}):/*#__PURE__*/_jsx(\"span\",{children:props.soldOutLabel})});}Shopify_ProductBadge.displayName=\"Product Badge\";addPropertyControls(Shopify_ProductBadge,{...ConfigControls,...ProductBaseControls,label:{title:\"Sale Label\",type:ControlType.String,defaultValue:\"On Sale\"},soldOutLabel:{title:\"Sold out Label\",type:ControlType.String,defaultValue:\"Sold out\"},styles:{title:\"Badge\",buttonTitle:\"Style\",type:ControlType.Object,controls:{...textProperties(14,\"#fff\"),backgroundColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true},border:{type:ControlType.Border,defaultValue:{borderColor:\"#000\"}},padding:{type:ControlType.Padding,defaultValue:\"3px 10px 3px 10px\"},borderRadius:{type:ControlType.BorderRadius,defaultValue:\"20px\"}}}});const styles={container:{display:\"flex\",alignItems:\"center\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Shopify_ProductBadge\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ProductBadge from\"https://framerusercontent.com/modules/HK5Yd5barVWMny4EflX0/yDxtQiiPnjlU4qSByozT/Shopify_ProductBadge.js\";import ProductPrice from\"https://framerusercontent.com/modules/XUMZkHzkb6JRq7hdD46W/JEGzsKrHHSsc3iq3qc0v/Shopify_ProductPrice.js\";import Products from\"https://framerusercontent.com/modules/IOjJFZycSi9wtd3I34Hp/CvDWTPBqLyPVbzlXx3pT/NJOAy5LR3.js\";const ProductPriceFonts=getFonts(ProductPrice);const ProductBadgeFonts=getFonts(ProductBadge);const serializationHash=\"framer-HuwIr\";const variantClassNames={GKeU3RyRy:\"framer-v-14oxp1x\"};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 contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const query=(prequery,{h3V0n0aZA})=>prequery({from:{alias:\"yd1PBFAEG\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"yd1PBFAEG\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"yd1PBFAEG\",name:\"StUJuRMet\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"yK1QGHipJ\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"Uh01tVEtw\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"h4GpElfW6\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"TLhgfSCwT\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"FngwAw0oH\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yd1PBFAEG\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:h3V0n0aZA},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,product,width,...props})=>{return{...props,h3V0n0aZA:product??props.h3V0n0aZA??\"ls8Tqv9dQ\"};};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,h3V0n0aZA,StUJuRMetyd1PBFAEG,yK1QGHipJyd1PBFAEG,Uh01tVEtwyd1PBFAEG,h4GpElfW6yd1PBFAEG,TLhgfSCwTyd1PBFAEG,FngwAw0oHyd1PBFAEG,idyd1PBFAEG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GKeU3RyRy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14oxp1x\",className,classNames),\"data-framer-name\":\"resting\",layoutDependency:layoutDependency,layoutId:\"GKeU3RyRy\",ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lf51mb\",\"data-framer-name\":\"Bb\",layoutDependency:layoutDependency,layoutId:\"yd1PBFAEG\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yd1PBFAEG\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"yd1PBFAEG\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"yd1PBFAEG\",name:\"StUJuRMet\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"yK1QGHipJ\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"Uh01tVEtw\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"h4GpElfW6\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"TLhgfSCwT\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"FngwAw0oH\",type:\"Identifier\"},{collection:\"yd1PBFAEG\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"yd1PBFAEG\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:h3V0n0aZA},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({FngwAw0oH:FngwAw0oHyd1PBFAEG,h4GpElfW6:h4GpElfW6yd1PBFAEG,id:idyd1PBFAEG,StUJuRMet:StUJuRMetyd1PBFAEG,TLhgfSCwT:TLhgfSCwTyd1PBFAEG,Uh01tVEtw:Uh01tVEtwyd1PBFAEG,yK1QGHipJ:yK1QGHipJyd1PBFAEG},index)=>{StUJuRMetyd1PBFAEG??=\"\";Uh01tVEtwyd1PBFAEG??=\"\";h4GpElfW6yd1PBFAEG??=\"\";TLhgfSCwTyd1PBFAEG??=\"\";FngwAw0oHyd1PBFAEG??=\"\";const visible=contains(FngwAw0oHyd1PBFAEG,\"Ff\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`yd1PBFAEG-${idyd1PBFAEG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{StUJuRMet:StUJuRMetyd1PBFAEG},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{StUJuRMet:StUJuRMetyd1PBFAEG},webPageId:\"HJiceAmW6\"},motionChild:true,nodeId:\"i33Id7Ho8\",openInNewTab:false,scopeId:\"oJV9lrp7e\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1odmi8r framer-cglmnb\",\"data-framer-name\":\"product card\",layoutDependency:layoutDependency,layoutId:\"i33Id7Ho8\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4yz8zy\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"TNBFvMB9K\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px), 200px)`,...toResponsiveImage(yK1QGHipJyd1PBFAEG)},className:\"framer-1yi9v0c\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"gZesQm87V\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-335wc8\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"XBmLCmCso\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mcias7\",layoutDependency:layoutDependency,layoutId:\"LmUu5q2cV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBVbmljYSBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif'},children:\"carhartt active jacket\"})}),className:\"framer-1o9rrjr\",\"data-framer-name\":\"title\",fonts:[\"CUSTOM;Neue Haas Unica Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"TfUWJlywn\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Uh01tVEtwyd1PBFAEG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1udah9-container\",\"data-framer-name\":\"Price\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XsRArngKi-container\",name:\"Price\",nodeId:\"XsRArngKi\",rendersWithMotion:true,scopeId:\"oJV9lrp7e\",children:/*#__PURE__*/_jsx(ProductPrice,{comparePriceStyle:{color:\"rgba(18, 18, 18, 0.75)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:16,hidden:true,padding:\"0px\",textDecoration:{textDecorationLine:\"line-through\",textDecorationStyle:\"solid\",textDecorationThickness:1}},config:{countryIsoCode:\"SE\",languageIsoCode:\"EN\",permissions:{selling_plans:false},storeDomain:\"f1bbd9-59.myshopify.com\",storefrontToken:\"912238d9090f4b9f354b43807e201748\",testMode:false},font:{},height:\"100%\",id:\"XsRArngKi\",layoutId:\"XsRArngKi\",name:\"Price\",priceStyle:{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif'},fontSize:16,hidden:false,padding:\"0px\"},productID:h4GpElfW6yd1PBFAEG,soldOutStyle:{backgroundColor:\"rgb(0, 0, 0)\",border:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"20px\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,hidden:true,lineThrough:true,padding:\"2px 8px 2px 8px\"},soldOutTitle:\"sold out\",startFromTitle:\"from\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBVbmljYSBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif'},children:\"2-3 yr\"})}),className:\"framer-5qe0uc\",\"data-framer-name\":\"tags\",fonts:[\"CUSTOM;Neue Haas Unica Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"uPLEhkMJT\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:TLhgfSCwTyd1PBFAEG,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ycp20n\",\"data-framer-name\":\"tags\",layoutDependency:layoutDependency,layoutId:\"NPyRGtXIm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x6n12a-container\",\"data-framer-name\":\"sold out tag\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Tja1kf_3P-container\",name:\"sold out tag\",nodeId:\"Tja1kf_3P\",rendersWithMotion:true,scopeId:\"oJV9lrp7e\",children:/*#__PURE__*/_jsx(ProductBadge,{config:{countryIsoCode:\"SE\",languageIsoCode:\"EN\",permissions:{selling_plans:false},storeDomain:\"f1bbd9-59.myshopify.com\",storefrontToken:\"912238d9090f4b9f354b43807e201748\",testMode:false},font:{},height:\"100%\",id:\"Tja1kf_3P\",label:\"sale\",layoutId:\"Tja1kf_3P\",name:\"sold out tag\",productID:h4GpElfW6yd1PBFAEG,soldOutLabel:\"sold out\",styles:{backgroundColor:\"var(--token-fa2ec4d7-771c-41cf-8634-1e0abbb618d9, rgb(247, 58, 44))\",border:{borderBottomWidth:0,borderColor:\"rgb(0, 0, 0)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},borderRadius:\"8px\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif'},fontSize:16,padding:\"2px 8px 6px 8px\"},width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpvh0o\",\"data-framer-name\":\"new tag\",layoutDependency:layoutDependency,layoutId:\"H3RhJgenw\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-60888033-3e71-45e6-a87a-49046c28d321, rgb(61, 191, 113))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBVbmljYSBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7aa162e6-5520-4da5-931f-d1a61e7f57be, rgb(250, 250, 250)))\"},children:\"new\"})}),className:\"framer-1pu750w\",fonts:[\"CUSTOM;Neue Haas Unica Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"GWvR5yP5x\",style:{\"--extracted-r6o4lv\":\"var(--token-7aa162e6-5520-4da5-931f-d1a61e7f57be, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12kc8cb\",\"data-framer-name\":\"collection tag\",layoutDependency:layoutDependency,layoutId:\"x_ebwbfDU\",style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(0px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-trer7r\",layoutDependency:layoutDependency,layoutId:\"fKoiqnrm_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBVbmljYSBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Neue Haas Unica Pro Regular\", \"Neue Haas Unica Pro Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Aa\"})}),className:\"framer-bnuw4j\",fonts:[\"CUSTOM;Neue Haas Unica Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"BFIXDzqp1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FngwAw0oHyd1PBFAEG,verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})},idyd1PBFAEG);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HuwIr.framer-cglmnb, .framer-HuwIr .framer-cglmnb { display: block; }\",\".framer-HuwIr.framer-14oxp1x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 374px; }\",\".framer-HuwIr .framer-1lf51mb { display: grid; flex: none; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1440px; padding: 0px; position: relative; width: 100%; }\",\".framer-HuwIr .framer-1odmi8r { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-HuwIr .framer-4yz8zy { align-content: center; align-items: center; aspect-ratio: 0.7536231884057971 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 265px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HuwIr .framer-1yi9v0c { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HuwIr .framer-335wc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 2px 8px 2px; position: relative; width: 100%; }\",\".framer-HuwIr .framer-mcias7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HuwIr .framer-1o9rrjr { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HuwIr .framer-1udah9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HuwIr .framer-5qe0uc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HuwIr .framer-ycp20n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 16px; top: 16px; width: 164px; z-index: 1; }\",\".framer-HuwIr .framer-x6n12a-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-HuwIr .framer-1mpvh0o { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 2px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-HuwIr .framer-1pu750w, .framer-HuwIr .framer-bnuw4j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HuwIr .framer-12kc8cb { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-HuwIr .framer-trer7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: center; overflow: hidden; padding: 0px 0px 3px 0px; position: relative; width: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 551\n * @framerIntrinsicWidth 374\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"h3V0n0aZA\":\"product\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameroJV9lrp7e=withCSS(Component,css,\"framer-HuwIr\");export default FrameroJV9lrp7e;FrameroJV9lrp7e.displayName=\"product card desktop\";FrameroJV9lrp7e.defaultProps={height:551,width:374};addPropertyControls(FrameroJV9lrp7e,{h3V0n0aZA:{dataIdentifier:\"local-module:collection/NJOAy5LR3:default\",defaultValue:\"ls8Tqv9dQ\",title:\"product\",type:ControlType.CollectionReference}});addFonts(FrameroJV9lrp7e,[{explicitInter:true,fonts:[{family:\"Neue Haas Unica Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/WNJ9GKk9hHONxIzmW1UA7MaJw.woff2\"},{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,...ProductBadgeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroJV9lrp7e\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"h3V0n0aZA\\\":\\\"product\\\"}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"374\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"551\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oJV9lrp7e.map"],
  "mappings": "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",
  "names": ["DefaultSelectedOption", "useProduct", "productID", "config", "addToSelected", "selectedProducts", "setSelectedProducts", "useAtom", "selectedProductsAtom", "products", "useShopify", "product", "setProduct", "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", "Shopify_ProductBadge", "props", "product", "price", "availableForSale", "useProduct", "hideSaleLabel", "hidden", "p", "ComponentWrapper", "cn", "styles", "addPropertyControls", "ConfigControls", "ProductBaseControls", "ControlType", "textProperties", "ProductPriceFonts", "getFonts", "Shopify_ProductPrice", "ProductBadgeFonts", "Shopify_ProductBadge", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "contains", "a", "b", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "product", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "h3V0n0aZA", "StUJuRMetyd1PBFAEG", "yK1QGHipJyd1PBFAEG", "Uh01tVEtwyd1PBFAEG", "h4GpElfW6yd1PBFAEG", "TLhgfSCwTyd1PBFAEG", "FngwAw0oHyd1PBFAEG", "idyd1PBFAEG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "ChildrenCanSuspend", "NJOAy5LR3_default", "collection", "paginationInfo", "loadMore", "l", "index", "visible", "contains", "PathVariablesContext", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "toResponsiveImage", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Shopify_ProductPrice", "Shopify_ProductBadge", "css", "FrameroJV9lrp7e", "withCSS", "oJV9lrp7e_default", "addPropertyControls", "ControlType", "addFonts", "ProductPriceFonts", "ProductBadgeFonts"]
}
