{"version":3,"file":"zsBHrTBhU.BxwhZIsh.mjs","names":["useMemo","currencySymbols","React.Fragment","localizedValues","PriceLabel","React.useContext","React.useMemo","React.Fragment","React.useRef","React.useId","Image"],"sources":["https:/framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/hFRK24tvK1DH4J9qyxv4/ProductState.js","https:/framerusercontent.com/modules/Ncx6rwHWSXe5kU34gWm3/LuZtr1iB89fLQNg3yNCs/ProductInfoLabel.js","https:/framerusercontent.com/modules/LqXY9iOaKUfNzcGcW1Ay/doDBDsD8A4yzmDSf4EXL/Delet_component.js","https:/framerusercontent.com/modules/sZ6eLjlLVLfa2kZcWdLV/mmrhfeM9b5sYWz93Y8ld/zsBHrTBhU-0.js","https:/framerusercontent.com/modules/sZ6eLjlLVLfa2kZcWdLV/mmrhfeM9b5sYWz93Y8ld/zsBHrTBhU.js","https:/framerusercontent.com/modules/tsJHuPCeLhW96vwYZmIt/JKs5Nm83U4gkWqrGYKU5/zsBHrTBhU.js"],"sourcesContent":["import create from\"zustand\";import{useMemo}from\"react\";import{parseShopifyData}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/0YQVcQp9yCxhG9znBLuc/Shared.js\";export const useProductStore=create(set=>({products:{},setSelectedVariantOption:(productId,variantOption,option)=>set(state=>{var _state_products_productId;return{products:{...state.products,[productId]:{...state.products[productId],selectedVariantOptions:{...(_state_products_productId=state.products[productId])===null||_state_products_productId===void 0?void 0:_state_products_productId.selectedVariantOptions,[variantOption]:option}}}};}),setQuantity:(productId,quantity)=>{set(state=>{var _state_products;return{products:{...state.products,[productId]:{...(_state_products=state.products)===null||_state_products===void 0?void 0:_state_products[productId],quantity:Math.max(quantity,1)}}};});}}));export function useSelectedVariant(shopifyData){const parsedData=useMemo(()=>parseShopifyData(shopifyData),[shopifyData]);const{shopifyId,variants}=parsedData;const selectedVariantOptions=useProductStore(state=>{var _state_products_shopifyId;return(_state_products_shopifyId=state.products[shopifyId])===null||_state_products_shopifyId===void 0?void 0:_state_products_shopifyId.selectedVariantOptions;});const selectedVariant=useMemo(()=>{if(!Array.isArray(variants)||!selectedVariantOptions){return variants[0];}for(const variant of variants){if(variant.selectedOptions.every(option=>selectedVariantOptions[option.name]===option.value)){return variant;}}return variants[0];},[variants,selectedVariantOptions]);return selectedVariant;}\nexport const __FramerMetadata__ = {\"exports\":{\"useProductStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useSelectedVariant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{useSelectedVariant}from\"https://framerusercontent.com/modules/ajKYBgRXgNyNgL1GkpqG/hFRK24tvK1DH4J9qyxv4/ProductState.js\";import{useCartItem}from\"https://framerusercontent.com/modules/Be5mN5EUhdOwl54qCG8y/QUJyNnXHbEj9mUvm1PRe/CartItemContext.js\";import{currencyFormatProp,formatCurrency}from\"https://framerusercontent.com/modules/gd3dcT3w5rYoRy7ZcKte/0YQVcQp9yCxhG9znBLuc/Shared.js\";import currencySymbols from\"https://framerusercontent.com/modules/pJIZxaEdKo1uS87sS4xM/4PSl3AVmNoISomoZ0s7m/CurrencySymbols.js\";const HIDDEN_CLASS=\"frameship-price-label-hidden\";var ProductInfoType;(function(ProductInfoType){ProductInfoType[\"Price\"]=\"price\";ProductInfoType[\"CompareAtPrice\"]=\"compareAtPrice\";})(ProductInfoType||(ProductInfoType={}));function ProductInfoLabelComponent(props){var _props_style;const{type,whenZero,textWhenZero,currencyFormat}=props;const Tag=props.htmlTag||\"p\";const variant=useSelectedVariant(props.shopifyData);const{inCart,price:cartPrice,compareAtPrice:cartCompareAtPrice}=useCartItem();let value=0;let currencyCode=props.currency;let hidden=false;if(inCart){if(type===\"price\"){if(isPriceV2(cartPrice)){value=cartPrice.amount||0;currencyCode=cartPrice.currencyCode||props.currency;}}else if(type===\"compareAtPrice\"){if(isPriceV2(cartCompareAtPrice)){value=cartCompareAtPrice.amount||0;currencyCode=cartCompareAtPrice.currencyCode||props.currency;}}}else if(variant){const price=variant[type];if(isPriceV2(price)){value=price.amount||0;currencyCode=price.currencyCode||props.currency;}else if(typeof price===\"number\"){value=price;}}let text=\"\";if(whenZero==\"hide\"&&!value){hidden=true;}else if(whenZero==\"showText\"&&!value){text=textWhenZero;}else{text=formatCurrency(value,currencyCode,currencyFormat);}return hidden?/*#__PURE__*/_jsx(\"div\",{className:HIDDEN_CLASS}):/*#__PURE__*/_jsxs(Tag,{style:{color:props.color,margin:0,whiteSpace:\"pre\",userSelect:props.selectable?undefined:\"none\",textDecoration:props.decoration===\"strikethrough\"?\"line-through\":props.decoration,textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?\"wrap\":\"nowrap\",...props.font,...props.style},children:[props.prefix,text,props.suffix]});}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */const ProductInfoLabel=withCSS(ProductInfoLabelComponent,[`.${HIDDEN_CLASS} { display: none !important; }`,`div:has(> .${HIDDEN_CLASS}) { display: none !important; }`]);export default ProductInfoLabel;ProductInfoLabel.displayName=\"Price Label\";addPropertyControls(ProductInfoLabel,{shopifyData:{type:ControlType.String,defaultValue:\"\",placeholder:\"Shopify Data\"},type:{type:ControlType.Enum,defaultValue:\"price\",options:Object.values(ProductInfoType),optionTitles:[\"Price\",\"Compare-at Price\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},whenZero:{type:ControlType.Enum,defaultValue:\"show\",options:[\"show\",\"showText\",\"hide\"],optionTitles:[\"Show\",\"Show Text\",\"Hide\"],title:\"When Zero\"},textWhenZero:{type:ControlType.String,defaultValue:\"Free\",title:\"Text\",hidden:props=>props.whenZero!==\"showText\"},currency:{type:ControlType.Enum,defaultValue:\"USD\",options:Object.keys(currencySymbols)},currencyFormat:currencyFormatProp(),font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#999999\"},prefix:{type:ControlType.String,defaultValue:\"\"},suffix:{type:ControlType.String,defaultValue:\"\"},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"strikethrough\",\"underline\"],optionTitles:[\"None\",\"Strikethrough\",\"Underline\"]},selectable:{type:ControlType.Boolean,defaultValue:true,title:\"User Select\"},htmlTag:{type:ControlType.Enum,options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],title:\"HTML Tag\"}});function isPriceV2(value){return value&&typeof value===\"object\"&&value.hasOwnProperty(\"amount\");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ProductInfoLabel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ProductInfoLabel.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";export function DivideBy12({number}){// Calculate the result by dividing the input number by 12\nconst result=number/12;return /*#__PURE__*/_jsx(\"div\",{style:styles.container,children:/*#__PURE__*/_jsx(\"h1\",{style:styles.text,children:isNaN(number)?\"\":Math.round(result).toLocaleString()})});}// Add property controls for CMS linking\naddPropertyControls(DivideBy12,{number:{type:ControlType.Number,title:\"Number\",defaultValue:0,min:-Infinity,step:1,displayStepper:true}});// Component styles\nconst styles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"100%\",width:\"100%\"},text:{fontSize:\"20px\",fontWeight:\"bold\",color:\"white\",fontFamily:\"'Bebas Neue', sans-serif\",margin:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"DivideBy12\":{\"type\":\"reactComponent\",\"name\":\"DivideBy12\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Delet_component.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-390890d2-07bd-4ff0-9969-f0e41e016b33, rgb(10, 18, 42)))\"},children:\"أفضل مبيع\"})});export const v1=\"مجاني\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (74b1a33)\nimport*as localizedValues from\"./zsBHrTBhU-0.js\";const valuesByLocaleId={WNmk0s59Y:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PriceLabel from\"https://framerusercontent.com/modules/Ncx6rwHWSXe5kU34gWm3/LuZtr1iB89fLQNg3yNCs/ProductInfoLabel.js\";import{DivideBy12}from\"https://framerusercontent.com/modules/LqXY9iOaKUfNzcGcW1Ay/doDBDsD8A4yzmDSf4EXL/Delet_component.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/sZ6eLjlLVLfa2kZcWdLV/mmrhfeM9b5sYWz93Y8ld/zsBHrTBhU.js\";const PriceLabelFonts=getFonts(PriceLabel);const DivideBy12Fonts=getFonts(DivideBy12);const cycleOrder=[\"VGBUKbHCt\",\"PIdRyi3MO\",\"f9bSkNwdb\",\"uBm5Oa1kO\",\"AAqPyqFQO\",\"vxBmi4BTQ\",\"tJ7hwzbks\",\"BzMG92lU_\",\"WG64bXrnI\"];const serializationHash=\"framer-ja5sR\";const variantClassNames={AAqPyqFQO:\"framer-v-1f93d4k\",BzMG92lU_:\"framer-v-o9ruqt\",f9bSkNwdb:\"framer-v-hgh6jl\",PIdRyi3MO:\"framer-v-5z1gzm\",tJ7hwzbks:\"framer-v-1kbso0c\",uBm5Oa1kO:\"framer-v-imcuy3\",VGBUKbHCt:\"framer-v-1h6bydp\",vxBmi4BTQ:\"framer-v-l07buq\",WG64bXrnI:\"framer-v-nnrs79\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Iphone Meilleur Vente\":\"VGBUKbHCt\",\"Meilleur vente Accessoire\":\"WG64bXrnI\",\"Meilleur vente Console\":\"BzMG92lU_\",Accessoires:\"tJ7hwzbks\",Console:\"vxBmi4BTQ\",iPad:\"uBm5Oa1kO\",iPhone:\"PIdRyi3MO\",Mac:\"f9bSkNwdb\",Watch:\"AAqPyqFQO\"};const getProps=({couleur,height,id,link,prixMensuel,productImage,productSName,shopifyData,stockage,title,width,...props})=>{return{...props,KmQork4XP:prixMensuel??props.KmQork4XP??1200,mcPQM0pZT:shopifyData??props.mcPQM0pZT,MUU2tEOjW:couleur??props.MUU2tEOjW??\"Color\",nIBXavF8E:link??props.nIBXavF8E,Ps35Xu0vm:productImage??props.Ps35Xu0vm??{alt:\"\",src:\"https://framerusercontent.com/images/qsvrKFT2hym3Q0nYP9Pc7Yb9Ho0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qsvrKFT2hym3Q0nYP9Pc7Yb9Ho0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qsvrKFT2hym3Q0nYP9Pc7Yb9Ho0.png 700w\"},pxTEDcarF:productSName??props.pxTEDcarF??\"Product Name\",TlJ2maO8o:title??props.TlJ2maO8o??\"Product Name\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VGBUKbHCt\",VXSzI8_M6:stockage??props.VXSzI8_M6??\"Stockage\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pxTEDcarF,mcPQM0pZT,Ps35Xu0vm,nIBXavF8E,MUU2tEOjW,VXSzI8_M6,KmQork4XP,TlJ2maO8o,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VGBUKbHCt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"PIdRyi3MO\",\"f9bSkNwdb\",\"uBm5Oa1kO\",\"AAqPyqFQO\",\"vxBmi4BTQ\",\"tJ7hwzbks\"].includes(baseVariant))return false;return true;};const visible=negate(isSet(pxTEDcarF));const isDisplayed1=()=>{if([\"tJ7hwzbks\",\"WG64bXrnI\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"vxBmi4BTQ\",\"BzMG92lU_\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:nIBXavF8E,nodeId:\"VGBUKbHCt\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1h6bydp\",className,classNames)} framer-10o7dbp`,\"data-framer-name\":\"Iphone Meilleur Vente\",layoutDependency:layoutDependency,layoutId:\"VGBUKbHCt\",ref:ref??ref1,style:{...style},...addPropertyOverrides({AAqPyqFQO:{\"data-framer-name\":\"Watch\"},BzMG92lU_:{\"data-framer-name\":\"Meilleur vente Console\"},f9bSkNwdb:{\"data-framer-name\":\"Mac\"},PIdRyi3MO:{\"data-framer-name\":\"iPhone\"},tJ7hwzbks:{\"data-framer-name\":\"Accessoires\"},uBm5Oa1kO:{\"data-framer-name\":\"iPad\"},vxBmi4BTQ:{\"data-framer-name\":\"Console\"},WG64bXrnI:{\"data-framer-name\":\"Meilleur vente Accessoire\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6rqlrb\",\"data-framer-name\":\"Gray\",layoutDependency:layoutDependency,layoutId:\"B7bmqPIVG\",style:{background:\"linear-gradient(180deg, var(--token-a953d029-d17b-4ad7-bddb-0948163c9524, rgb(255, 255, 255)) 0%, var(--token-a953d029-d17b-4ad7-bddb-0948163c9524, rgb(255, 255, 255)) 100%)\",backgroundColor:\"var(--token-a953d029-d17b-4ad7-bddb-0948163c9524, rgb(255, 255, 255))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{AAqPyqFQO:{background:'linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) /* {\"name\":\"Gray\"} */ 0%, var(--token-6ebdba76-8417-44f0-9976-9294dcf5893c, rgb(240, 252, 240)) /* {\"name\":\"Light Green\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\"},f9bSkNwdb:{background:'linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) /* {\"name\":\"Gray\"} */ 0%, var(--token-f4495a6a-8a6e-46d8-8acb-a2930d71b17e, rgb(232, 244, 255)) /* {\"name\":\"Light Blue\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\"},PIdRyi3MO:{background:'linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) /* {\"name\":\"Gray\"} */ 0%, var(--token-9d2a3b2e-f6fb-49da-9814-cb5ea66f2d56, rgb(250, 245, 255)) /* {\"name\":\"Iphones\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\"},tJ7hwzbks:{background:\"linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) 0%, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) 100%)\",backgroundColor:\"var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249))\"},uBm5Oa1kO:{background:'linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) /* {\"name\":\"Gray\"} */ 0%, var(--token-872290ea-025d-4d57-b9f3-5884085f799f, rgb(255, 249, 229)) /* {\"name\":\"Light Yellow\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\"},vxBmi4BTQ:{background:\"linear-gradient(180deg, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) 0%, var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249)) 100%)\",backgroundColor:\"var(--token-ddcf2362-358b-46ca-bdba-dedab9d9607b, rgb(246, 247, 249))\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15s2145\",\"data-framer-name\":\"Meilleur vente\",layoutDependency:layoutDependency,layoutId:\"EQhCfr_Zm\",style:{backgroundColor:\"rgb(35, 206, 107)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-390890d2-07bd-4ff0-9969-f0e41e016b33, rgb(10, 18, 42)))\"},children:\"Meilleure Vente\"})}),className:\"framer-16obh16\",\"data-framer-name\":\"Meilleure Vente\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"c7Y9OLVll\",style:{\"--extracted-r6o4lv\":\"var(--token-390890d2-07bd-4ff0-9969-f0e41e016b33, rgb(10, 18, 42))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ns70zx\",\"data-framer-name\":\"Product Photo\",layoutDependency:layoutDependency,layoutId:\"WGViVGDyp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+23+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-khlx0a\",\"data-framer-name\":\"15pro-t-1_2\",layoutDependency:layoutDependency,layoutId:\"Y_valkM9V\",...addPropertyOverrides({AAqPyqFQO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}},f9bSkNwdb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}},PIdRyi3MO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}},tJ7hwzbks:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}},uBm5Oa1kO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}},vxBmi4BTQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+99.5),sizes:\"200px\",...toResponsiveImage(Ps35Xu0vm),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b98ppy\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"J9shlDwiJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xhtjt5\",layoutDependency:layoutDependency,layoutId:\"dPHG1STzo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"Product Name\"})}),className:\"framer-1rgjpv\",\"data-framer-name\":\"Apple iPhone 15 Pro Max\",fonts:[\"FS;Bebas Neue-regular\"],layoutDependency:layoutDependency,layoutId:\"X1FXwpqNH\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},text:pxTEDcarF,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"Product Name\"})}),className:\"framer-19o9syv\",\"data-framer-name\":\"Apple iPhone 15 Pro Max\",fonts:[\"FS;Bebas Neue-regular\"],layoutDependency:layoutDependency,layoutId:\"cU7Mbkb1Q\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},text:TlJ2maO8o,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g60rwl\",layoutDependency:layoutDependency,layoutId:\"FKGEVZk1O\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"Color\"})}),className:\"framer-1qg5s9v\",\"data-framer-name\":\"Apple iPhone 15 Pro Max\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"LtNw2iHMK\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},text:MUU2tEOjW,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"-\"})}),className:\"framer-1lwo1l8\",\"data-framer-name\":\"Apple iPhone 15 Pro Max\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"XA5uSHfhO\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"Stockage\"})}),className:\"framer-qcikaf\",\"data-framer-name\":\"Apple iPhone 15 Pro Max\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"Vtx81EbXM\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},text:VXSzI8_M6,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jmd7lj\",\"data-framer-name\":\"Prices\",layoutDependency:layoutDependency,layoutId:\"tCaXfYhLA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nijkrm\",\"data-framer-name\":\"One time\",layoutDependency:layoutDependency,layoutId:\"LpTXLbvHa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16hk6g9\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"T9jQivdc6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wh3qqi-container\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"DPlav0kyP-container\",name:\"Price\",children:/*#__PURE__*/_jsx(PriceLabel,{color:\"var(--token-390890d2-07bd-4ff0-9969-f0e41e016b33, rgb(10, 18, 42))\",currency:\"MAD\",currencyFormat:{decimals:\"auto\",formatted:true,locale:\"\",location:\"after\",style:\"code\"},decoration:\"none\",font:{fontFamily:'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"p\",id:\"DPlav0kyP\",layoutId:\"DPlav0kyP\",name:\"Price\",prefix:\"\",selectable:true,shopifyData:mcPQM0pZT,suffix:\"\",textWhenZero:getLocalizedValue(\"v1\",activeLocale)??\"Free\",type:\"price\",whenZero:\"show\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a61fyx-container\",\"data-framer-name\":\"Compare-at Price\",layoutDependency:layoutDependency,layoutId:\"BpD4E6pV3-container\",name:\"Compare-at Price\",children:/*#__PURE__*/_jsx(PriceLabel,{color:\"rgb(153, 153, 153)\",currency:\"MAD\",currencyFormat:{decimals:\"auto\",formatted:true,locale:\"\",location:\"after\",style:\"code\"},decoration:\"strikethrough\",font:{fontFamily:'\"Switzer\", \"Switzer Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"span\",id:\"BpD4E6pV3\",layoutId:\"BpD4E6pV3\",name:\"Compare-at Price\",prefix:\"\",selectable:true,shopifyData:mcPQM0pZT,suffix:\"\",textWhenZero:getLocalizedValue(\"v1\",activeLocale)??\"Free\",type:\"compareAtPrice\",whenZero:\"show\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cvpmss\",\"data-framer-name\":\"Monthly\",layoutDependency:layoutDependency,layoutId:\"SsIjggDcN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k94s8n\",layoutDependency:layoutDependency,layoutId:\"Mrg_6c3gX\",style:{backgroundColor:\"var(--token-f1eec787-544e-4480-b3af-7bb30f7426bf, rgb(35, 206, 107))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ixhtx-container\",layoutDependency:layoutDependency,layoutId:\"MX8JR_Ns_-container\",children:/*#__PURE__*/_jsx(DivideBy12,{height:\"100%\",id:\"MX8JR_Ns_\",layoutId:\"MX8JR_Ns_\",number:KmQork4XP,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a953d029-d17b-4ad7-bddb-0948163c9524, rgb(255, 255, 255)))\"},children:\"MAD\"})}),className:\"framer-3tqz1k\",\"data-framer-name\":\"MAD\",fonts:[\"FS;Bebas Neue-regular\"],layoutDependency:layoutDependency,layoutId:\"kJWj55b7e\",style:{\"--extracted-r6o4lv\":\"var(--token-a953d029-d17b-4ad7-bddb-0948163c9524, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 18, 42))\"},children:\"/12 Mois\"})}),className:\"framer-dld7cf\",\"data-framer-name\":\"/12 Mois\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"q60jovVFU\",style:{\"--extracted-r6o4lv\":\"rgb(10, 18, 42)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ja5sR.framer-10o7dbp, .framer-ja5sR .framer-10o7dbp { display: block; }\",\".framer-ja5sR.framer-1h6bydp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 23px 0px 0px 0px; position: relative; text-decoration: none; width: 300px; }\",\".framer-ja5sR .framer-6rqlrb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 15px 20px 15px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-15s2145 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 8px 13px 9px 13px; position: absolute; top: -23px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ja5sR .framer-16obh16, .framer-ja5sR .framer-3tqz1k, .framer-ja5sR .framer-dld7cf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ja5sR .framer-ns70zx { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-ja5sR .framer-khlx0a { aspect-ratio: 1.0148514851485149 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 197px); position: relative; width: 1px; }\",\".framer-ja5sR .framer-1b98ppy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-1xhtjt5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-1rgjpv, .framer-ja5sR .framer-19o9syv { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ja5sR .framer-1g60rwl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-1qg5s9v, .framer-ja5sR .framer-1lwo1l8, .framer-ja5sR .framer-qcikaf { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ja5sR .framer-1jmd7lj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-1nijkrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ja5sR .framer-16hk6g9 { 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: min-content; }\",\".framer-ja5sR .framer-wh3qqi-container, .framer-ja5sR .framer-a61fyx-container, .framer-ja5sR .framer-6ixhtx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ja5sR .framer-1cvpmss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ja5sR .framer-k94s8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 2px 6px 0px 6px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ja5sR.framer-1h6bydp, .framer-ja5sR .framer-6rqlrb, .framer-ja5sR .framer-15s2145, .framer-ja5sR .framer-ns70zx, .framer-ja5sR .framer-1b98ppy, .framer-ja5sR .framer-1xhtjt5, .framer-ja5sR .framer-1g60rwl, .framer-ja5sR .framer-1jmd7lj, .framer-ja5sR .framer-1nijkrm, .framer-ja5sR .framer-16hk6g9, .framer-ja5sR .framer-1cvpmss, .framer-ja5sR .framer-k94s8n { gap: 0px; } .framer-ja5sR.framer-1h6bydp > *, .framer-ja5sR .framer-1jmd7lj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ja5sR.framer-1h6bydp > :first-child, .framer-ja5sR .framer-6rqlrb > :first-child, .framer-ja5sR .framer-1b98ppy > :first-child, .framer-ja5sR .framer-1xhtjt5 > :first-child, .framer-ja5sR .framer-1jmd7lj > :first-child, .framer-ja5sR .framer-16hk6g9 > :first-child { margin-top: 0px; } .framer-ja5sR.framer-1h6bydp > :last-child, .framer-ja5sR .framer-6rqlrb > :last-child, .framer-ja5sR .framer-1b98ppy > :last-child, .framer-ja5sR .framer-1xhtjt5 > :last-child, .framer-ja5sR .framer-1jmd7lj > :last-child, .framer-ja5sR .framer-16hk6g9 > :last-child { margin-bottom: 0px; } .framer-ja5sR .framer-6rqlrb > *, .framer-ja5sR .framer-16hk6g9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ja5sR .framer-15s2145 > *, .framer-ja5sR .framer-ns70zx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ja5sR .framer-15s2145 > :first-child, .framer-ja5sR .framer-ns70zx > :first-child, .framer-ja5sR .framer-1g60rwl > :first-child, .framer-ja5sR .framer-1nijkrm > :first-child, .framer-ja5sR .framer-1cvpmss > :first-child, .framer-ja5sR .framer-k94s8n > :first-child { margin-left: 0px; } .framer-ja5sR .framer-15s2145 > :last-child, .framer-ja5sR .framer-ns70zx > :last-child, .framer-ja5sR .framer-1g60rwl > :last-child, .framer-ja5sR .framer-1nijkrm > :last-child, .framer-ja5sR .framer-1cvpmss > :last-child, .framer-ja5sR .framer-k94s8n > :last-child { margin-right: 0px; } .framer-ja5sR .framer-1b98ppy > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-ja5sR .framer-1xhtjt5 > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-ja5sR .framer-1g60rwl > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-ja5sR .framer-1nijkrm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ja5sR .framer-1cvpmss > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-ja5sR .framer-k94s8n > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-ja5sR.framer-v-5z1gzm.framer-1h6bydp, .framer-ja5sR.framer-v-hgh6jl.framer-1h6bydp, .framer-ja5sR.framer-v-imcuy3.framer-1h6bydp, .framer-ja5sR.framer-v-1f93d4k.framer-1h6bydp, .framer-ja5sR.framer-v-l07buq.framer-1h6bydp, .framer-ja5sR.framer-v-1kbso0c.framer-1h6bydp { padding: 0px; }\",\".framer-ja5sR.framer-v-l07buq .framer-6rqlrb, .framer-ja5sR.framer-v-o9ruqt .framer-6rqlrb { height: 402px; }\",\".framer-ja5sR.framer-v-1kbso0c .framer-6rqlrb, .framer-ja5sR.framer-v-nnrs79 .framer-6rqlrb { height: 382px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 391\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PIdRyi3MO\":{\"layout\":[\"fixed\",\"auto\"]},\"f9bSkNwdb\":{\"layout\":[\"fixed\",\"auto\"]},\"uBm5Oa1kO\":{\"layout\":[\"fixed\",\"auto\"]},\"AAqPyqFQO\":{\"layout\":[\"fixed\",\"auto\"]},\"vxBmi4BTQ\":{\"layout\":[\"fixed\",\"auto\"]},\"tJ7hwzbks\":{\"layout\":[\"fixed\",\"auto\"]},\"BzMG92lU_\":{\"layout\":[\"fixed\",\"auto\"]},\"WG64bXrnI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pxTEDcarF\":\"productSName\",\"mcPQM0pZT\":\"shopifyData\",\"Ps35Xu0vm\":\"productImage\",\"nIBXavF8E\":\"link\",\"MUU2tEOjW\":\"couleur\",\"VXSzI8_M6\":\"stockage\",\"KmQork4XP\":\"prixMensuel\",\"TlJ2maO8o\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzsBHrTBhU=withCSS(Component,css,\"framer-ja5sR\");export default FramerzsBHrTBhU;FramerzsBHrTBhU.displayName=\"Product Card\";FramerzsBHrTBhU.defaultProps={height:391,width:300};addPropertyControls(FramerzsBHrTBhU,{variant:{options:[\"VGBUKbHCt\",\"PIdRyi3MO\",\"f9bSkNwdb\",\"uBm5Oa1kO\",\"AAqPyqFQO\",\"vxBmi4BTQ\",\"tJ7hwzbks\",\"BzMG92lU_\",\"WG64bXrnI\"],optionTitles:[\"Iphone Meilleur Vente\",\"iPhone\",\"Mac\",\"iPad\",\"Watch\",\"Console\",\"Accessoires\",\"Meilleur vente Console\",\"Meilleur vente Accessoire\"],title:\"Variant\",type:ControlType.Enum},pxTEDcarF:{defaultValue:\"Product Name\",description:\"\",displayTextArea:false,title:\"Product's name\",type:ControlType.String},mcPQM0pZT:{defaultValue:\"\",placeholder:\"Shopify Data\",title:\"Shopify Data\",type:ControlType.String},Ps35Xu0vm:{__defaultAssetReference:\"data:framer/asset-reference,qsvrKFT2hym3Q0nYP9Pc7Yb9Ho0.png?originalFilename=15pro-t-1_2.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,qsvrKFT2hym3Q0nYP9Pc7Yb9Ho0.png?originalFilename=15pro-t-1_2.png&preferredSize=auto\"},title:\"Product Image\",type:ControlType.ResponsiveImage},nIBXavF8E:{title:\"Link\",type:ControlType.Link},MUU2tEOjW:{defaultValue:\"Color\",displayTextArea:false,title:\"Couleur\",type:ControlType.String},VXSzI8_M6:{defaultValue:\"Stockage\",displayTextArea:false,title:\"Stockage\",type:ControlType.String},KmQork4XP:{defaultValue:1200,displayStepper:true,step:1,title:\"Prix Mensuel\",type:ControlType.Number},TlJ2maO8o:{defaultValue:\"Product Name\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerzsBHrTBhU,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"}]},...PriceLabelFonts,...DivideBy12Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzsBHrTBhU\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pxTEDcarF\\\":\\\"productSName\\\",\\\"mcPQM0pZT\\\":\\\"shopifyData\\\",\\\"Ps35Xu0vm\\\":\\\"productImage\\\",\\\"nIBXavF8E\\\":\\\"link\\\",\\\"MUU2tEOjW\\\":\\\"couleur\\\",\\\"VXSzI8_M6\\\":\\\"stockage\\\",\\\"KmQork4XP\\\":\\\"prixMensuel\\\",\\\"TlJ2maO8o\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PIdRyi3MO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f9bSkNwdb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uBm5Oa1kO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AAqPyqFQO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vxBmi4BTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tJ7hwzbks\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BzMG92lU_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WG64bXrnI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"391\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}