Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta charset="utf-8"/>
  <meta content="no-snippet" name="robots"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <link href="https://www.costco.com/wcsstore/CostcoGLOBALSAS/images/favicon.ico" rel="icon"/>
  <title>
   Now Available: Pay Over Time with Affirm on Orders Over $500
  </title>
  <style>
   html {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%}
body {margin:0; padding:0; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; -webkit-font-smoothing: antialiased !important; border-spacing:0}
table {border-collapse: collapse; mso-table-lspace: 0px; mso-table-rspace: 0px; }
table td {border-collapse: collapse; mso-line-height-rule: exactly;  }
table th { margin:0 !important; padding:0 !important; vertical-align:top; font-weight:normal; }
img, a img {border:none; outline:none; -ms-interpolation-mode: bicubic;} 
.ReadMsgBody {width: 100%;}
.ExternalClass {width: 100%;}
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height:100%;}
.yshortcuts a {border-bottom: none !important;}
.appleLinksGray a {color:#666666 !important; text-decoration:none !important;}
.appleLinksWhite a {color:#FFFFFF !important; text-decoration:none !important;}
.appleLinksBlack a {color:#000000 !important; text-decoration:none !important;}

 
a[x-apple-data-detectors] {
	color: inherit !important;
	text-decoration: none !important;
	font-size: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
}
  </style>
  <style>
   @media only screen and (max-width: 600px) {

.T-Size-2 {font-size:20px!important; line-height:28px!important;}
.T-Size-3	{font-size:18px!important;line-height:20px!important;}
.T-Size-4	{font-size:16px!important;line-height:18px!important;}
.T-Size-5	{font-size:12px!important;line-height:16px!important;}
.T-Size-6	{font-size:16px!important;line-height:18px!important;}
.T-Size-7 {font-size:36px!important;line-height:38px!important;}
.T-Size-8 {font-size:58px!important;line-height:60px!important;}
.T-Size-9 {font-size:70px!important;line-height:72px!important;}

 

.remove { display:none !important; width:0 !important; height:0 !important; }
.stack { display:block !important; }
.stack-header {display:table-header-group !important;}
.stack-footer {display:table-footer-group !important;}
.stack-image img {margin-bottom:20px !important;}

 

.center-align {text-align:center !important; margin:0 auto !important;}
.left-align {text-align:left !important;}
.right-align {text-align:right !important;}

 

.w-resize100 { width:100% !important; }
.w-resize90 { width:90% !important; }
.w-resize80 { width:80% !important; }
.w-resize50 { width:48% !important; }

 

.h-resize { height: 10px!important}
.h-resize30px { height:30px !important; }
.h-resize40px { height:40px !important; }


 

.resize90 img {width:90% !important; height:auto !important;}
.resize100 img {width:100% !important; height:auto !important;}


 

.showHidden {display: block !important;	margin: 0;	padding: 0;	overflow : visible !important;	width: auto !important;	max-height: inherit !important;	border: none !important;}
.mobile-hero img {width:100%; height:auto; margin:0 auto; display:block}
.break-hidden{ content: ''; display: block;}
.line-right{border-style: none!important;}
.line-bottom{border-bottom: 2px solid #494137 !important; width: 180px !important;}

}
  </style>
 </head>
 <body class="is-html-mode" data-contenteditable="true">
  <span class="acr-preheader" style="display:none !important;visibility:hidden;mso-hide:all;opacity:0;">
   $300 OFF Centr functional trainer, $250 OFF Lathan dining table set, $250 OFF HP Omnibook laptop
  </span>
  <style type="text/css">
   div.preheader
{ display: none !important; }
  </style>
  <div class="preheader" style="font-size:1px;display:none !important;">
  </div>
  <div class="wcdm__">
   <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
    <tbody>
     <tr>
      <td height="10" style="font-size:0px;line-height:0px;">
      </td>
     </tr>
     <tr>
      <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;color:#737474;">
       <a class="" data-nl-type="mirrorPage" style="color:rgb(115, 116, 116);text-decoration:underline;" target="_blank">
        View in browser.
       </a>
      </td>
     </tr>
    </tbody>
   </table>
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="8" style="font-size:0px;line-height:0px;border-top:1px solid #d6d6d6;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;color:#737474;">
      <a target="_blank">
       <img alt="Costco.com" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email%252Fcostcodotcom-logo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjE3NjA3NH0:1uHNeq:RuzZQqz-LZmCpo4SQ09fRqb1lTsi4Q58yNJzi44m_mk" style="margin:0 auto;display:block;" width="134"/>
      </a>
     </td>
    </tr>
    <tr>
     <td height="8" style="font-size:0px;line-height:0px;border-bottom:1px solid #d6d6d6;">
     </td>
    </tr>
    <tr>
     <td height="16" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#030212;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#ffffff;text-decoration:none;font-weight:bolder;" target="_blank">
           NEW: Now Available for Orders Over $500+
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="affirm pay later" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fksffz7kmjhcgqhfj48hq5p4%252Fd_25w09276_email_banner_affirm.png%253Fformat%253Dpng%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4MTA5NX0:1uHNeq:ASdpB8eK6WPOXpPK4QWhif5vOjhFZYnwAWsRplQDVec" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="affirm pay later" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F6bkvkmsp5g9zgc2b56r7k8c%252Fm_25w09276_email_banner_affirm.png%253Fformat%253Dpng%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4MjQ2fQ:1uHNeq:17fTQSK-Rg-Uoyy4xR5z_2aIZOlbd11wwgE9NWl-Y2Y"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#030212;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#ffffff;text-decoration:none;font-weight:normal;" target="_blank">
       <strong>
        Terms Apply | Learn More
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="shop Costco Direct" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fcv4mmhbjz5rqfv4jsrhsmvc%252Fd_25w09188_em_headers_direct_circle_flag.png%253Fformat%253Dpng%2526width%253D704%2526height%253D91/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4MzYyfQ:1uHNeq:0ffvhVLJn1F9xCVHdCmrUfUWzCgNDmIgx3MN86hSe00" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="shop Costco Direct" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fbfscks968ptm38nfq35w994c%252Fm_25w09188_em_headers_direct_circle_flag.png%253Fformat%253Dpngwidth%253D553%2526height%253D165/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4NDY5Mn0:1uHNeq:_nqkzLmGe0J-BF5wOLkrt1LQa4rSl7lpX1PzT2HSJRE"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#0065AF;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#ffffff;text-decoration:none;font-weight:bolder;" target="_blank">
           Increased Savings! | Limited Time 5/1/25 – 6/4/25 Only
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Shop Costco Direct
Buy 2 - Save $150 
Buy 3 - Save $300
Buy 4 - Save $450
Buy 5+ - Save $600" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F66qnnqc5jxgpqsq2zqs46q6%252Fd_25w09188_costco_direct_ltd_em_banner.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D200/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4NTc3fQ:1uHNeq:agidTElHOK-xVL4Znc8JAu8Tc_UOQMD253RYSJVAD00" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Shop Costco Direct
Buy 2 - Save $150 
Buy 3 - Save $300
Buy 4 - Save $450
Buy 5+ - Save $600" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fh88nkgtpf564tg6q7c66t8%252Fm_25w09188_costco_direct_ltd_em_banner.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D410/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4Njc5OH0:1uHNeq:beA1WHNeiaUsqJrrMBB-L-rd4Mxe8_W64BKDkm2BuHg"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#0165ac;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#f1f1f1;text-decoration:none;font-weight:normal;" target="_blank">
       Online-Only | Limit 2 Redemptions Per Membership
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#f1f1f1;text-decoration:none;font-weight:normal;" target="_blank">
       Delivery in 3 - 5 Days in Most Areas
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#f1f1f1;text-decoration:none;font-weight:normal;" target="_blank">
       See Item Page for Details |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F6zk4xgj47h65t3nfrmmsr%252Fb2c5030_us250520_4000360846.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4Nzc5NH0:1uHNeq:z41H9fMp14uasCNaruTpBElOFfXBzg1PT8vQHbQHkTo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Samsung OLED TVs
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $1,299.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fmh68f6fsq4rr4h2zbck79h%252Fb2c5030_us250520_400018664.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE4ODkxfQ:1uHNeq:eNh_19OKj5Oz_g6zIiwyBKb6m5J_dgOLVFih1MowVDU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Sony 85" Class - X90CL Series - 4K UHD LED LCD TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,399.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  Allstate 3-Year Protection Plan Bundle Included for 5 Years of Total Coverage
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F66cqsmhgk3cq8kkvqcbh7k%252Fb2c3080_us241201_9475900.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5MDU2NX0:1uHNeq:8vzNykecpVtW2jm7G3WNX7hnLtsb0VBYij7Upm-9Phk" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Samsung 85" Class - QN90D Series - 4K UHD Neo QLED LCD TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,999.99 Delivered
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  Allstate 3-Year Protection Plan Bundle Included for 5 Years of Total Coverage
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ff3fpncq5bt8xn95gjt2kvmk%252Fb2c5030_us250520_4000351081.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5MTkzM30:1uHNeq:X293Mv5lXrjbelGihhJOHfRCu6XMriEd7HsPiZxbmXY" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Samsung 85" Class - DU8000 Series - 4K Crystal UHD Smart TV
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $999.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  Allstate 3-Year Protection Plan Bundle Included for 5 Years of Total Coverage
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Costco Direct" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F10-20-24-mvm-ends%252Fb2c3050-us241020_4000237040.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjE5Mjk0Nn0:1uHNeq:UmmZWlDiH-yhCLKMlhpqsvIi_QV82pNpx6fiK_9tXOM" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Select LG Laundry Appliances
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $300 - $1,200 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Costco Direct" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F4-14-24%252Fb2c2883_us240414_100973650.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjE5Mzg3OX0:1uHNeq:pQJPODTIpM9XJiVBqJAySL1eavTPx-zxthFZRpBr8xs" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Save on Select Samsung Refrigerators
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $800 - $1,250 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Costco Direct" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F8-9-24%252Fb2c2985-us240809_1712913.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjE5NDh9:1uHNeq:YD6Q2m2pnCXcyv3hYuNFdfgAGwTE8Ce5JZai45sQf7Q" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Select Whirlpool Appliances
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $230 - $1,100 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#1a2c43;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#fffce5;text-decoration:none;font-weight:bolder;" target="_blank">
           Memorial Day Appliance Savings
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="spend $1999+ save an additional $300 spend $2499+ save an additional $500" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fvp35vvprb333hf7w29jfcb7h%252Fd_25w10083_em_banner_memorial_day_appliance.png%253Fformat%253Dpng%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5NTgyN30:1uHNeq:GMsq-EDTHRCFtDblbYq67NQszxvFe2ELjwEzL6jeIgw" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="spend $1999+ save an additional $300 spend $2499+ save an additional $500" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fk3fm3csv6x593xrw35vgmtj%252Fm_25w10083_em_banner_memorial_day_appliance.png%253Fformat%253Dpng%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5NjgyM30:1uHNeq:0dlLarGJViEvnxsV0VZx4dQ1X2Ff6HkHOX2Fhs_AtzE"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#1a2c43;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#fffce5;text-decoration:none;font-weight:normal;" target="_blank">
       Online-Only | Valid 5/15/25 - 6/4/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#fffce5;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
       <br/>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9xjq2xnsqwvq87vt8z99prm%252Fb2c4041_us250212_Yardistry.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5NzgwOH0:1uHNeq:0CirCy7WdZHtGb5F1VSBplaIzFbG5nYzhuumecqjDRc" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Yardistry 12' x 16' Gazebo with Aluminum Roof
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $2,199.99 Delivered
                  <br/>
                  After $600 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F4-7-24%252Fb2c2878-us240407_68507.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjE5ODcxOX0:1uHNeq:oNN8i4yi27qi3g7FXH5c4dMF00a-1NadQiBrqCaj9-I" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Centr 3 by Inspire SF3 Smith Functional Trainer with Folding Bench
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,899.99 Delivered
                  <br/>
                  After $300 OFF
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  1-Year Centr App Subscription Included
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fwgc2vcg8wkg5rcfjst76q96%252Fb2c5030_us250520_4000280968.png%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjE5OTY4Mn0:1uHNeq:8K9vDLvCc2kIajk3QNYk0qhDwnwBwpC-dAXx5NNAqQs" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Lathan Dining Table and 6 Chairs
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $899.99 Delivered
                  <br/>
                  After $250 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F6-20-24%252Fb2c2942_us240620_4000182774.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjIwMDYxNn0:1uHNeq:fNnPiyKmfVk2OPuPbBA_mXs9LFNInHv9G9aczxQYYHU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Sealy Posturepedic Plus Ridge Crest II 14" Firm or Plush Mattress, Queen
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $679.99 Delivered
                  <br/>
                  After $170 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f9ebfb;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#333333;text-decoration:none;font-weight:bolder;" target="_blank">
           HP OmniBook 5 16" Copilot+ PC Laptop
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="HP OmniBook 5 16-inch Copilot+ PC Laptop" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9cjgggvg2x6hvxbz3z59n%252Fd_b2c5030_us250520_em_banner_omnibook.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwMjk4MX0:1uHNeq:p0NKY6xZ1fpNm27xWoj_KoNXB9V8j7E8pr6GE_InEYg" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="HP OmniBook 5 16-inch Copilot+ PC Laptop" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F7przrfw7bvb2jw4fzbzqvj8%252Fm_b2c5030_us250520_em_banner_omnibook.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwNDEzNX0:1uHNeq:G3F3n9ZQbb9-G1ArhMQ6k2kGUgjvcECcg_2gEkL_D5Q"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f0f4f9;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       16GB Memory, 1TB SSD | Valid 5/14/25 - 6/8/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Ninja Deluxe Blender and Kitchen System with 88 oz Pitcher, 9-Cup Processor, and Auto-iQ" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fc8swqgp8mx8tkwjt9qvc58j%252F2658467-847__2.jpeg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwNTE4fQ:1uHNeq:zDHDF8qW_N-mLi_szzRl8rChx-izhXqV1P2L1oY1swQ" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Ninja Deluxe Blender and Kitchen System with 88 oz Pitcher, 9-Cup Processor, and Auto-iQ
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $179.99 Delivered
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Costco Direct" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F6-21-24%252Fb2c2944-us240621_1819800.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjIwNjE0OH0:1uHNeq:ysFEJySur212JjeLp_0tnNyHIuAv4iJXZtmm7KL0n6I" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Save on Select GE and Profile Ranges
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $100 - $570 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Hisense 8k Tower Portable Air Conditioner" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fkvnvkxhhfcbt3h3w3tw3kbc%252F4000346410-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwNzE0N30:1uHNeq:8HJ8C35pFejkRuCp1ye5-RMSdZOjn-Wcru99sZvF3WE" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Hisense 8k Tower Portable Air Conditioner
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $379.99 Delivered
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Whirlpool 5.1 Cu. Ft. Freestanding GAS Range with Edge to Edge Cooktop" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fjqcqnzmcpvwn8ncf88fq583%252Fd_bb2c5024_us250511_Banners_25w09167.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwODE4fQ:1uHNeq:IJJaucn2tkzMCAXLvcP-TvWCPk2-jkEIvvu7A1FrEKc" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Whirlpool 5.1 Cu. Ft. Freestanding GAS Range with Edge to Edge Cooktop" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fr4g97fk867cknxp5tj232fx%252Fm_bb2c5024_us250511_Banners_25w09167.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIwOTE4OH0:1uHNeq:6UdA5FmZ89EV1jXL0eFiDmOHgmbMbxgTHgBapJRxT1A"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#01063b;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#ffffff;text-decoration:none;font-weight:normal;" target="_blank">
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Hisense 8k Portable Air Conditioner" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F9356sqfb4bcvjxxcw6wgc5pt%252F4000330563-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxMDE5MX0:1uHNeq:UMJ4jEPPiG9tQgN0HSzc5TtAU3bBs-tJD3JBP3HJkf8" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Hisense 8k Portable Air Conditioner
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $349.99
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Hisense 8k Ultraslim Window Air Conditioner" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fjsrtn4fhht6jv56h6qw5%252F4000338599-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxMTE3Nn0:1uHNeq:TwvAgFLF4fBYYN6tb6hq263bpNWAV_SHy9_rsKQNTCM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Hisense 8k Ultraslim Window Air Conditioner
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $219.99 After $80 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Shark TurboBlade XL Ultra-Powerful Bladeless Tower Fan" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Frz2vm6bhtnx75mjxgwxstzmr%252F4000338590-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxMjE1M30:1uHNeq:Z-zVJG6WLxdJbOkrT6hE0qEffCYUINYR739PXmUHG1M" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Shark TurboBlade XL Ultra-Powerful Bladeless Tower Fan
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $239.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="JISULIFE Neck Fan, 2-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fv3gjj896sszgmkfw53jvgjv%252F4000328535-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxMzEyNn0:1uHNeq:f5JfT4WN4lKcsAQ6uSTvDsTLpi3eZx-kafKOPQcZBg0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  JISULIFE Neck Fan, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $42.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Vitamix Ascent Series A3500 Blender" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fs3mz5thj2hnkjwrxkh7vk9m%252F4000364096-847_white_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxNDF9:1uHNeq:ogyq2UlI2niS6jsTHpTMndtyFrA1kYzfkpOXJv40Mpo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Vitamix Ascent Series A3500 Blender
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Midea Smart 50-Pint Dehumidifier with Built-In Pump" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F358437369zjkmwhtj3j8nkk%252F1769129-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxNTA2fQ:1uHNeq:w73-Cx0kQTTAqmQ1bjO60-I7Itn_mY3ncEIhL3LtVJY" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Midea Smart 50-Pint Dehumidifier with Built-In Pump
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $199.99
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Quicken WillMaker &amp; Trust 2025 Premium, PC or Mac" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fckg82g3x9m8h9txcq3jgmt98%252F4000328314-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxNjA0Mn0:1uHNeq:OOsYNTvvlfB1mdgbL30T5GNlmwfDz2q92zfdrp4bgA8" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Quicken WillMaker &amp; Trust 2025 Premium, PC or Mac
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $69.99 After $20 OFF
                  <br/>
                  eDelivery
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Microsoft Office Home 2024" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Frmq3krgfwsbmpx9tbst76%252Fb2c5030_us250520_homeoffice.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxNzAwOH0:1uHNeq:0I39iIciNl-uLrKpOiSQ0-YRR5vPjZn1YDJ_8l1oees" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Microsoft Office Home 2024
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $149.99
                  <br/>
                  eDelivery
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  $25 Visa eGift Card Included
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Memorial Day Mattress Savings Valid 5/26/25 - 6/1/25" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ftkv46h5rjnfbm9rx6wppkf8%252Fd_25w10082_em_banner_memorial_day_mattress.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxODAxMX0:1uHNeq:Su0NK9CV3rByNuFwRLbMJtpHIO76jO3HASr5qPk6r9o" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Memorial Day Mattress Savings Valid 5/26/25 - 6/1/25" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fnz9fgb4kcqz9bskc7jcg9xs%252Fm_25w10082_em_banner_memorial_day_mattress.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIxOTA0Nn0:1uHNeq:TRW1w7YD84n6_iQqqqjLzUgNgKRWFitJoMBjzsqqjG0"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#fffce5;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#000000;text-decoration:none;font-weight:normal;" target="_blank">
       Valid 5/16/25 - 6/1/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#000000;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="HP 952XL High Yield Ink Cartridge, Tri-Color Pack, HP 64XL High Yield Ink Cartridge, Black &amp; Tri-Color, 2-Count plus S&amp;H" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fsb6kckshhrnv3tm87ctsbg%252Fd_b2c5030_us250520_em_banner_100281446.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyMDA0M30:1uHNeq:9mV12oOelwcDEeFCi0mAc_nCPVRzmrr5pa_WVhgvuag" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="HP 952XL High Yield Ink Cartridge, Tri-Color Pack, HP 64XL High Yield Ink Cartridge, Black &amp; Tri-Color, 2-Count plus S&amp;H" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fg66g3f64mpvqx3s9mrm3j9h%252Fm_b2c5030_us250520_em_banner_100281446.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyMTAyM30:1uHNeq:pD17a3OHYZ84sXarqGyAzOGxWBgNIMowrACdtnnKbNU"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#fafafa;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#000000;text-decoration:none;font-weight:normal;" target="_blank">
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Valid 5/1/25 - 5/31/25" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F7m26v3kxjsf7sqstn3m37c4w%252Fm_25w09124_email_banner_may_connection.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyMTk5OH0:1uHNeq:SQcKLowFcSFJlosg81xWJwZYL_x92s77QLVZsANgrFk" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  Valid 5/1/25 - 5/31/25
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Valid 5/14/25 - 6/8/25" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fmrf33h2jm4b2ffcvct94vn8%252Fm_25w09138_may_em_ban_mvm_cover.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyMjk3M30:1uHNeq:rOFrcaYiwxFfb-hQcn2_HyJx9xeSxHCffF8UYo2loTc" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  Valid 5/14/25 - 6/8/25
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fj42n9bxvpwntbcnt5tx478p%252Fb2c4035-us250205_4000181704.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyNDA0M30:1uHNeq:c6DcML1Ein7cd9HECQa5GObkTHOG4IMH0YQUI6gkUL4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  PurpleRenew 11" Gel Grid Mattress, Queen
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $999.99 Delivered
                  <br/>
                  After $400 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fm93zwbmbbpt788jszbs8g%252Fb2c3090_us241213_4000203417_v3.jpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyNTE2fQ:1uHNeq:kSsb60fQ5SQ9A-0NGrn5YM1KiBxmEG-TsoLvR4wyzME" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Casper Cooling Select 12" Memory Foam Mattress, Queen
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $499.99 Delivered
                  <br/>
                  After $150 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F3gg5t8jkrqktmthzjk5xq8%252Fb2c4029-us250124_4000282060.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyNjE3Mn0:1uHNeq:FfOzz_EWF1uIywd-ZqUZozpDOqJ3rM0TFVZjjSC29-Q" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Zakary 6-Piece Fabric Power Reclining Sectional With Power Headrests
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,599.99 Delivered
                  <br/>
                  After $700 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F7-31-24%252Fb2c2977_us240731_4000222642.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjIyNzIyOX0:1uHNeq:2_-ttYYaEcerq-b-p3eYdVdlJuDU_MIHkRKu1JE1f_8" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Sereen 6-Piece Fabric Modular Sectional, Taupe
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,999.99 Delivered
                  <br/>
                  After $400 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costa Nurseries Various Indoor / Outdoor Tropicals" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F7ngzbm37ccgtwv5wm37v4vv9%252F4000362129-847__4.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyODM0N30:1uHNeq:463TBc6JouchJlYcWh2gGQKrGI_vBVl2uVtqnJPra50" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Costa Nurseries Various Indoor / Outdoor Tropicals
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $8 - $20 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="POLYWOOD Long Beach Modern Adirondack Chair" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fj9fs56nm2v4tj6fpnx85v44x%252F4000195616-847_gray_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIyOTM0OH0:1uHNeq:L2nXXA13HXuwmJzwd3hoITZRaN8ZhT9gAcONpWCbP0M" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  POLYWOOD Long Beach Modern Adirondack Chair
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $149.99 Delivered
                  <br/>
                  After $30 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fxcf6rghbvsfp7msg3tmj8qhs%252Fb2c5019_us250503_4000296982.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzMDZ9:1uHNeq:amS6KPpmM_K9hXQ-dogUhvm9z2dahUqOTyDCCbbVD1s" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  SunVilla Nichols 4-Piece Outdoor Patio Seating Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,499.99 Delivered
                  <br/>
                  After $400 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Sunjoy 13.3' x 14.8' Wilmington Hardtop Gazebo" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F5sf3fc97n36rj398bb9gwkc%252F1452114-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzMTYwNn0:1uHNeq:NndRXl1V91qBQ7-CCBExqtQmY9gZxnncUx0iopA_NiY" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Sunjoy 13.3' x 14.8' Wilmington Hardtop Gazebo
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $2,299.99 Delivered
                  <br/>
                  After $700 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#b4ceca;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#64093c;text-decoration:none;font-weight:bolder;" target="_blank">
           May Beauty Blossoms
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="May's Beauty Blossoms $5 - $360 OFF" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fbv3rk9r378jfxqghkg869k2j%252Fd_b2c5030_us250520_em_banner_beautyblossoms.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzMjU3OX0:1uHNeq:XlgcYgFRCCPw0uYhnvxH6R0d63Gngh_WVBy_M-2lT-U" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="May's Beauty Blossoms $5 - $360 OFF" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fvqx9h7pr5c6t3t7qscvbtx%252Fm_b2c5030_us250520_em_banner_beautyblossoms.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzMzU1OX0:1uHNeq:BDtVip7IlM-ynbG1RXNDeSlVWlVmOjorUG6mduumgUM"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#cde3dd;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#64093c;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Osaki AI Grand Duo 4D Dual Mechanism Massage Chair with Side Panel Doors" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fv4nkc9t7g85c4qbsjks7ktgv%252F4000328269-847_black_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzNDUwNX0:1uHNeq:kC5g_fq0gJfjsuvo-m1LPbusNtz5pQM2uniFkjunGTQ" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Osaki AI Grand Duo 4D Dual Mechanism Massage Chair with Side Panel Doors
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $5,999.99 Delivered
                  <br/>
                  After $2,500 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Hisense 35-Pint Dehumidifier" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fxvnqmqrqx8rwhgphmn8rrpq%252F2425303-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzNTQyNX0:1uHNeq:CbexrfsdiiSVitAHYm57PFwVme4UmV-9TfeiZe16E_g" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Hisense 35-Pint Dehumidifier
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $119.99 Delivered
                  <br/>
                  After $40 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Midea 12,000 BTU DUO Portable Air Conditioner with MShield" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fqktrfnfpmw9zk6gzw347b9cm%252F2575354-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzNjM1NX0:1uHNeq:Ryrh5cfEhFTinaZ8XBBVmYUMncUgiJmahiv0USjB7bQ" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Midea 12,000 BTU DUO Portable Air Conditioner with MShield
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $379.99 After $100 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Dyson Purifier Cool TP11 with Replacement Filter" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fwm8v9nmz9trz9wxhwzxpwgps%252F4000339172-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzNzI3fQ:1uHNeq:2CHYRoaLvN2f61wCs2FO7_XKsBiMejC-SltKlhBEN6A" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Dyson Purifier Cool TP11 with Replacement Filter
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $110 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Tramontina Ceramic Non-Stick 12-Piece Cookware Set with Utensils" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fvhspnn884jkz2mm8vcxx24sf%252F4000277532-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzODE5fQ:1uHNeq:0hmIE90dpQsQFxmmNaQN_nSv4d4HqRCNfQJw5gSzP6k" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Tramontina Ceramic Non-Stick 12-Piece Cookware Set with Utensils
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $119.99 Delivered
                  <br/>
                  After $50 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Cuisinart Tri-Ply Clad Stainless Steel 13-Piece Cookware Set" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fqv76phpvq8p6pfgwmbv5875b%252F4000297823-847__2%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjIzOTI5N30:1uHNeq:vg32RLM1JH6N5jfYE5xKY7oA1_YAb2TPm5wX8E-z1R4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Cuisinart Tri-Ply Clad Stainless Steel 13-Piece Cookware Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $159.99 Delivered
                  <br/>
                  After $40 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="KitchenAid 11-Piece 5-Ply Clad Stainless Steel Cookware Set" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fjq9ksv7tsmxqgjxn7mtpwrf%252F1676540-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0MDI4Mn0:1uHNeq:RNG_kuAFIHbMsgHu7jhAMFdvNTUr-RIRy93HNKkBmiI" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  KitchenAid 11-Piece 5-Ply Clad Stainless Steel Cookware Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $299.99 Delivered
                  <br/>
                  After $100 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Snapware Pyrex 18-Piece Glass Food Storage Set" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F3933f78cxqc7khncx3nzfjkq%252F1103106-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0MTI2NH0:1uHNeq:7kodYrdSQP24W0jpx_YMGo85swjDPIm72aZ6CvTBekU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Snapware Pyrex 18-Piece Glass Food Storage Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $30.99 Delivered
                  <br/>
                  After $5 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Foxwood Rug Collection" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fr7mpbbjsfng7rwwknhjrwpc%252F4000356626-847_5ft3inx7ft_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0MjU5Mn0:1uHNeq:BXp4D_x-mBV0pBZh40LE0aTYY9S5_z4FmRGYdMNUFJw" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Foxwood Rug Collection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $25 - $120 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Helios Rug Collection" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fbvw8cjhbw3vrk2vxp8mxmhq%252F4000356600-847_7ft10inx10ft_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0MzU1OH0:1uHNeq:-YfXsDh_B9Uc_OnEg6xfUnRT5MSO_wcXqtdPwr3yCKk" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Helios Rug Collection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $15 - $80 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="348">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Ravenna Rug Collection" border="0" height="225" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fx4wrst9m7z2h9s96vr6tp5n5%252F4000271207-847_brown_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0NDQ5fQ:1uHNeq:c2noMlnDWnoxED0SdU3ryx4w_jfv6q7gyHVMXKhxZIU" style="display:block;" width="225"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td class="T-Size-3" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Ravenna Rug Collection
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td class="T-Size-4" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $20 - $50 OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F10-2-24%252Fem3031_241002_4000281800.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI0NTQ4NH0:1uHNeq:__1P-Huu2ASsQveKvvoe_9xbAQC5_DAsPd2mtCVOBc4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Holley Oversized Fabric Accent Chair with Storage Ottoman
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $499.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Qunol Magnesium Extra Strength 250 mg, 150 Gummies" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fhz7wpjr82tnmxp46m2q9x%252F1692715-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0NjUwMn0:1uHNeq:Q4r4OZE3X-2tgKd_77k415zhzbgGDTh0X6V9ov8ZF_0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Qunol Magnesium Extra Strength 250 mg, 150 Gummies
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $19.99 Delivered
                  <br/>
                  After $4 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Qunol Plus CoQ10 Ubiquinol 200 mg with Omega-3, 90 Softgels" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fwtxbbwvsxvfrgb7bw8gbqc%252F1082396-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0NzQzMn0:1uHNeq:U8G8zMfiqLavs6gwr6izGyi4nQGndFkK_ODIWeMsmMw" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Qunol Plus CoQ10 Ubiquinol 200 mg with Omega-3, 90 Softgels
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $29.99 Delivered
                  <br/>
                  After $7 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Nature Made SAM-e Complete 400 mg, 60 Tablets" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fhrczfv9xxzgqt3t44wrvzmh%252F590598-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0ODM0OH0:1uHNeq:PZYiIGMlEi-0qiK874eGrX8qrCUAbd_oR4jIi4JfbFU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Nature Made SAM-e Complete 400 mg, 60 Tablets
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $44.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#cdbca8;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#231f20;text-decoration:none;font-weight:bolder;" target="_blank">
           Power Up Your Projects
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="May Home Improvement Savings on select items" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fjp8bt3q4zrcpzmk89x5774v%252Fd_em5017_250504_banner_homeimprovement.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI0OTI4N30:1uHNeq:erirf173wwKwxidJUSlUaDy7cCz-jpaXMNp8XgJXabY" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="May Home Improvement Savings on select items" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fhs4rq84ncxvz2h3gbwfj5nrq%252Fm_em5017_250504_banner_homeimprovement.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1MDM5M30:1uHNeq:yv3MTVEPs1lITcOt2l1kMnEiEXgozoRJIhgupADqPV4"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#241F21;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#FFFDFA;text-decoration:none;font-weight:normal;" target="_blank">
       Valid 5/1/25 - 6/1/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#FFFDFA;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Hunter Exeter LED 54-inch Ceiling Fan" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fcnnp6ft64tx5r5kmc397x83b%252F100352430-847_black_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1MTQwN30:1uHNeq:Ylx6Tv0E_EyD_FhbfwkafKeLKii3cEajoGD56hHRTNM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Hunter Exeter LED 54" Ceiling Fan
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $119.99 Delivered
                  <br/>
                  After $40 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="American Standard Slim-Line 1.25HP Garbage Disposer" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F45nv4b2k5tf883vjtpq8bvs%252F4000319673-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1MjM0Nn0:1uHNeq:q6w2JaxsO9SiiavNXMJMaYfNUP9ctknx0S7Bbyl94HA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  American Standard Slim-Line 1.25HP Garbage Disposer
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $89.99 Delivered
                  <br/>
                  After $20 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="HOTO Cordless Spin Scrubber: 2.5 N·M Torque, Six Brush Heads, IPX7 Rated" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F8njfwmww9p2wxpn46v7mx6%252F4000284456-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1MzI2fQ:1uHNeq:fNudaglNjYAQ-JYnhW_k4rGxXwcPq33OjYYD0eCtIXU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  HOTO Cordless Spin Scrubber: 2.5 N·M Torque, Six Brush Heads, IPX7 Rated
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $39.99 After $10 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="SnapPower GuideLight 2 LED Outlet Cover, 3-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F4jxrvw2r9pf83ptrx3jnrrj%252F4000344094-847_duplex_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1NDE4NH0:1uHNeq:myF0AG1Nmk9h4ScFxeziNwdaX5Nwfzg0tqOE8CMskTU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  SnapPower GuideLight 2 LED Outlet Cover, 3-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $42.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Garden Veggie Straws, Sea Salt, 1 oz, 42-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F6hcc89cv8qvpm7bc8hss85g%252F4000146752-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1NTEwNX0:1uHNeq:_fiTlD7xXALZ6bacTdP8XSAmYRwC6gKIedJ5XQcbMlo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Garden Veggie Straws, Sea Salt, 1 oz, 42-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $5 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="IZZE, Sparkling Juice Beverage, Variety Pack, 8.4 fl oz, 24-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fgck4r4v6m9w3rkp4ktjchv9%252F1795394-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1NjAxM30:1uHNeq:7JBzqRYOMgt5ymmG_f9L56A9Mq8aLUS33IswneZd_A8" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  IZZE, Sparkling Juice Beverage, Variety Pack, 8.4 fl oz, 24-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $4.80 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Rastelli's Connoisseur Gift Crate" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F3mcpcrvw647jbwsw5z6fg3xj%252F1118518-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1NjkyNn0:1uHNeq:SLvSmtx7Qu5gQWcSOoecF9tnbA7nIdQSxi8ZWPqEJfk" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Rastelli's Connoisseur Gift Crate
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $99.99 Delivered
                  <br/>
                  After $60 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="D’Artagnan Antibiotic Free Bone-On Beef Ribeye Roast, 1 Total Pack, 17 lbs Minimum" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fbpf79hz64bjb52t4pptqg78%252F1017181-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1ODAxNn0:1uHNeq:Oro0Phu2Eg5Po9HqZlsitehGaogKr7sI3ZArap-rK1s" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  D’Artagnan Antibiotic Free Bone-On Beef Ribeye Roast, 1 Total Pack, 17 lbs Minimum
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $369.99 Delivered
                  <br/>
                  After $100 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Comvita Certified UMF 18+ (MGO 696+) Raw Manuka Honey (8.8 oz)" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fwp4z2z2bkqxjjzrfqmjj9w7q%252F1641099-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1ODk2fQ:1uHNeq:wOylQivYAeLZJVGFHrN55-P7KRyJYWxGB1SjWG1daOo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Comvita Certified UMF 18+ (MGO 696+) Raw Manuka Honey (8.8 oz)
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $39.99 Delivered
                  <br/>
                  After $15 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Downy Soft Liquid Fabric Softener, April Fresh, 257 Loads, 150 fl oz" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F5w8tjbvp2sgj6xxq6jwvxvmf%252F1840548-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI1OTg3OH0:1uHNeq:ObyRXyK_s-YwEnuje2Wk7dGSlooMlGztP32x2NPnByY" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Downy Soft Liquid Fabric Softener, April Fresh, 257 Loads, 150 fl oz
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $3 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Downy Ultimate In-Wash Scent Booster Beads, Whimsical Wonder, 24.5 oz" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F5bpjggkxbwmhgc75x64rgcw%252F4000251265-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2MDc4NH0:1uHNeq:Pb6uA-4VaDu-4YxlRx5Tn6KydcnfQAZyj_DZUQlAdCA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Downy Ultimate In-Wash Scent Booster Beads, Whimsical Wonder, 24.5 oz
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $3 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="KONG Cozie Play Pack Dog Toys, 3-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F2pkvtmmbwpzxr872fnw79%252F4000247235-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2MTY5NH0:1uHNeq:WcwXhDRTzTU-WqqS9Cms72TY0haixPL4gDxpzsxrRQA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  KONG Cozie Play Pack Dog Toys, 3-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $18.99 Delivered
                  <br/>
                  After $6 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f4e8d6;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:24px;line-height:28px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#d32029;text-decoration:none;font-weight:normal;" target="_blank">
       <strong>
        SPECIAL EVENTS
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:20px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#000000;text-decoration:none;font-weight:normal;" target="_blank">
       Exciting products for a limited time.
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <div>
       <!--[if mso]> <v:rect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.costco.com/special-events.html?EMID=B2C_2025_0520_electronics_USE" style="height:30px;v-text-anchor:middle;width:150px;" stroke="f" fillcolor="#000000"> <w:anchorlock/> <center> <![endif]-->
       <a style="border-radius:25px;background-color:#000000;color:#ffffff;display:inline-block;font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:16px;font-weight:bold;line-height:40px;text-align:center;text-decoration:none;width:150px;-webkit-text-size-adjust:none;" target="_blank">
        Shop Now
       </a>
       <!--[if mso]> </center> </v:rect> <![endif]-->
      </div>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#f4e8d6;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Lion Energy Power Stations with Solar" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fp7grknnq3nc9pn7r4svmsckm%252Fb2c5018_us250505_lion.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2Mjc5OH0:1uHNeq:RGPQtn76yvijKbrxpKVTAze3fQgFy2ola2PRBELfZdc" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Lion Energy Power Stations with Solar
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="InfiniteAloe Skin Care" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F8-4-24%252Fb2c2982_us240804_infinite.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI2MzgxNn0:1uHNeq:UU5B3B-roJi7AHl5d6jbVY5_akiPzLO09KYYzH7cAFE" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  InfiniteAloe Skin Care
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $59.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="HexClad Cookware" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F7p94gq44772r2rf8xrtqmj7%252F100411488-847__1.jpg%253Fformat%253Djpg%2526width%253D175%2526height%253D175/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2NDg1M30:1uHNeq:qOf33-ElxcdsYzUR7m_P5nmALjkQYXrSi-SiUQoJvnA" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  HexClad Cookware
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $149.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Lovesac Modular Sactional Bundle" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fs38fkvq8tppkzf864cw3gmn%252F4000295500-847_cordedvelvetsapphireblue_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2NTg3NH0:1uHNeq:PUZRiRst06qPWHo0yGjvFW4fnP8C7W9BSTbfT3V5020" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Lovesac Modular Sactional Bundle
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $250 - $800 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f4e8d6;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Costco Next. Member only value more products and brands" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F9-29-24%252Fd_b2c2545-us230413_em_banner_costconextslim.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI2NjgyNX0:1uHNeq:E9E6I78sLePlCwwu7uK2pNgf8fvtUmMYioN7dpm9ImA" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Costco Next. Member only value more products and brands" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F9-29-24%252Fm_b2c2545-us230413_em_banner_costconextslim.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI2Nzc2fQ:1uHNeq:UKpla4lhB34ZmfUbZR0C3U_Lt13ugq267LKhcnD-G10"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#EEEEEE;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Priority Current Plus E-Bike" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fvhh4xskh38838x9p4v35vh8%252F100662675-847__6.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2ODcxM30:1uHNeq:RPspY5dyLBJFxRGMnXbH0-VUeUcNUQTY_QKKTf_XvMo" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  Priority Bicycles
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Priority Current Plus E-Bike
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $400 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Dash Crossbody Bag" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fvhrxvbhqxk4tk9ww8t7t4rnn%252F100662671-847__2.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI2OTY1OH0:1uHNeq:4uV43puvCBqeimM66AFLQviLU4Bk_cgcMz9b4FlI8Lw" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  baggallini
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Dash Crossbody Bag
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $39.99 After $12 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="eufy X10 Pro Omni Robot Vacuum and Mop Combo" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F3n7tpgtx4qstb78px5sb8mg%252Fb2c5030_us250520_100538306.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI3MDkyOH0:1uHNeq:_KwlSFsmG4zdEBL1OQMxx8kZJBCZW_kEFi26Ww9LygI" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  Anker
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  eufy X10 Pro Omni Robot Vacuum and Mop Combo
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $699.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Build Your Custom PC with the latest NVIDIA 50 Series GPUs" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fjwsptrggjq5tbtqhm6hfwg9%252Fb2c3080-us241126_100417687.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI3MTkwOH0:1uHNeq:_hNTPsBDZbQfoOQQYr1UfAsrODu4d6G6Nn1w9w4ZKSA" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  CLX
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Build Your Custom PC with the latest NVIDIA 50 Series GPUs
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $539.10
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#EEEEEE;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Download the Costco App Today!" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F22w0299%252Fd-em-banner-22w0299-app.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI3Mjg2Mn0:1uHNeq:L1B21qG6Se12mB6RF7hf-8vZwHuoRfMSfzG-kIWpvlA" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Download the Costco App Today!" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F22w0299%252Fm-em-banner-22w0299-app.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDc3NTAxNjguNjI3MzgwOH0:1uHNeq:Mt37H73ImalcN-U7FxiC-2ltOcbr9jPK_O-_HvXC1L4"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Price reductions, while supplies last." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.bfldr.com%252F56O3HXZ9%252Fat%252Fczjnn4cmc6qq8t7fnngqv3nw%252F25w06190_app_icons_while_supplies_last.png%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYmZsZHIuYyIsInRpbWUiOjE3NDc3NTAxNjguNjI3NTI1Nn0:1uHNeq:QmOi7t9Y4s0jjR-T_gFS40aGuUiDQGX1MN2U9MLSyeA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="This week's treasure hunt." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.bfldr.com%252F56O3HXZ9%252Fat%252F53gwpqcrwh4prh74qh9xxrhz%252F25w06190_app_icons_treasure_hunt.png%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYmZsZHIuYyIsInRpbWUiOjE3NDc3NTAxNjguNjI3NjM3fQ:1uHNeq:20LSDVOXJII6uyTLU8k3glBjQiuWCNQLkjq9JdqorkM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="New items added, what's new." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.bfldr.com%252F56O3HXZ9%252Fat%252Fmh3pfmzj9ghcwftst3t2sfn%252F25w06190_app_icons_whats_new.png%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYmZsZHIuYyIsInRpbWUiOjE3NDc3NTAxNjguNjI3NzR9:1uHNeq:afZIRcq7SWpzCX-ZKj0aHQinzhHEYWZzuCPCsIq8wfY" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a target="_blank">
                   <img alt="Member Favorites" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.bfldr.com%252F56O3HXZ9%252Fat%252Fkbw32hxzsg9wpjffrtqvz77%252F25w06190_app_icons_member_favorites.png%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uYmZsZHIuYyIsInRpbWUiOjE3NDc3NTAxNjguNjI3ODU5OH0:1uHNeq:1kDpUnlZRZB5pl-O-FhABIQWr5neDDStD4Im-Tuyx6U" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#008000;font-weight:bold;text-align:center;">
                  Same-Day Delivery
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  All groceries including fresh, frozen and household essentials.
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Powered by Instacart Costco Grocery" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fhr77rjq7jns8rfjm5mbjhr8p%252F25w06139_medium_feature_sameday.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI3OTc1N30:1uHNeq:daof1Pl8BCdMEcGuqUzZHIhEkmPiTzhEX5gMuP5I5WA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#0033a1;font-weight:bold;text-align:center;">
                  2-Day Delivery
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Non-perishable food and household essentials.
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Grocery" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9nw88tjrs5ggjtm9wtxv5%252F25w06139_medium_feature_2day.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI4MDk0Mn0:1uHNeq:GZThUHgbzFroBOxVrU3RI7PilWM9budKUXOHkuM69NE" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#134a81;font-weight:bold;text-align:center;">
                  Costco Connection
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Read the online edition
                 </td>
                </tr>
                <tr>
                 <td height="30" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Connection" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fg87sr9rc58qh7tmjmrf6h993%252F25w09124_em_blocks_may_connection.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI4MjQxM30:1uHNeq:--U6k4eYvVOR9H2MJnxd8bDCjxUuZcKfqZgvLSi7UDw" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#dff0d8;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#333333;font-weight:bold;text-align:center;">
                  Digital Connection
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Sign up for
                  <br/>
                  email reminders
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Go Paperless" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fq92qfbw3tcj37z7b9vbj5rcc%252F25w09124_em_blocks_may_paperless.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDc3NTAxNjguNjI4MzYwNX0:1uHNeq:T63sT8Mg5CuAefYp2Kou9Orghz4QTi1TbTIEmNLpgxs" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="25" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;line-height:14px;color:#333333;">
      <!--start legal-->
      <div>
       <p>
        Not all items are available at all Costco locations and selection and pricing may vary. Alaska, Hawaii and Puerto Rico may be higher than the advertised price. Items shipped to Alaska, Hawaii and Puerto Rico will include an additional shipping and handling fee.  See Costco.com for the most current information.
       </p>
       <p>
        Payment options through Affirm are subject to an eligibility check and are provided by these lending partners:
        <a style="text-decoration:underline;color:#069;" target="_blank">
         affirm.com/lenders
        </a>
        . Options depend on your purchase amount, and a down payment may be required. for licenses and disclosures, see
        <a style="text-decoration:underline;color:#069;" target="_blank">
         affirm.com/licenses
        </a>
        .
       </p>
       <p>
        Most online instant coupons at
        <a class="" style="text-decoration:underline;color:#069;" target="_blank">
         costco.com
        </a>
        are manufacturer's coupons, which will automatically be applied at checkout. See specific item page for promotion valid dates. State sales tax may be due on the pre-discounted price of the item when purchased using an online coupon. These taxes, if any, are in addition to the amount that you are paying for the product.
       </p>
       <p>
        In the past you provided Costco with your email address [6410071d@uifeed.com]. Occasionally, you will receive brief advertising announcements regarding special items and services. If you no longer want to receive these advertisements, please click
        <a data-nl-type="landingPage" style="text-decoration:underline;color:#069;" target="_blank">
         unsubscribe
        </a>
        . Please DO NOT CLICK REPLY, as the email will not be read.
       </p>
       <p>
        To contact us please
        <a style="text-decoration:underline;color:#069;">
         click here
        </a>
        .
        <br/>
        Costco Wholesale, Customer Service | P.O. Box 34535 -- Seattle, WA 98124-1535
        <br/>
        © 1998-2025 Costco Wholesale Corporation. All rights reserved.
        <a style="text-decoration:underline;color:#069;">
         Your Privacy Rights
        </a>
        <a style="text-decoration:underline;color:#069;">
         Terms and Conditions
        </a>
       </p>
      </div>
      <!--end legal-->
     </td>
    </tr>
    <tr>
     <td height="30" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <img height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fdata.digital.costco.com%252Fee%252Fv1%252Fopen%253Fparams%253Dv1.wSXkIVXDMhIsEkMoG4lynyqAyraABzO03j8eZztWpk2v81eRQqRCNaGgTsmkgYoyze-HLkmDOz3f_PK-q50LveO3PiZ5PIBYuJYa5PkPS6bgGNnRrZougj2GOFX1lx68e6qlWqdlZ2B0VP6QgEV7kivr7SnJY6yj2NrqmUGg_xj0NNROFsLjXznlpET_NoSgxVnGgf4c0UlmZKqCUcRVE8WsQdyS_Tv0CHlkVYdwWEWROnxz%2526pid%253Dv1.XyZArjwtmXsUkUnDUVxkCyhgFFbBHGZQQqUIJe1yCh777sNP8a6HP07R4P3A2p2h4ExFQrGRYPicsNu5AL1XeOQQIiEep7dNsRyFfS0B0gNbwMpgu5IRDPczPivCaajnaaOemYcLvteFmhIXL7RuXueLCBKkx9HrUda34oY%2526tuid%253D682c89bbe52ec64dd5a97095%2526configId%253De544e3a0-7485-453d-a0b6-39229f6afe35/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkYXRhLmRpZ2l0YSIsInRpbWUiOjE3NDc3NTAxNjguNjI4NTMyfQ:1uHNeq:7284-rko0P85Sstx8kiShLvZ3sHYi2VLT9NbFDyyOKQ" width="1"/>
 </body>
</html>