Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->
  <title>
   Macy's
  </title>
  <link href="https://www.macys.com/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="telephone=no" name="format-detection"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="light, dark" name="color-scheme"/>
  <style>
   * {box-sizing: border-box;}
 body {margin: 0 auto !important; padding: 0 !important; width: 100% !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
 table {border-collapse: collapse; mso-table-lspace: 0px; mso-table-rspace: 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif;}
 td, a, span, div {border-collapse: collapse; mso-line-height-rule: exactly;}
 h1, h2, h3, h4, h5, h6, p {padding: 0; margin: 0; font-weight: 700; color: #000000;}
 p {font-size: 18px; line-height: 26px; font-weight: 400;}
 h4 {font-size: 36px; line-height: 40px;}
 h6 {font-size: 24px; line-height: 28px;}
 a {color: inherit; text-decoration: none;}
 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;}
 img {border: 0 !important; outline: none !important;}
 /*Color inversion "white text fix" for gmail light & dark clients*/
 u+.body .gmail-screen {background: #000;mix-blend-mode: screen;} 
 u+.body .gmail-difference {background: #000;mix-blend-mode: difference;}
 /*Double Color inversion "black text fix" for gmail dark clients*/
 u+.body .gmail-blend-difference {background: #ffffff;mix-blend-mode: difference;}
 /*New Outlook macOS/iOS black text fix */
 #converted-body .dm-black-ol { color: #00000F !important;}
 /*Desktop Outlook.com / android / iOS black text fix */
 [data-ogsc] .dm-black-ol { color: #00000F !important; mix-blend-mode: difference;}
 /*New Outlook macOS/iOS white text fix */
 #converted-body .dm-white-ol {color: #fffffe !important;}
 /*Desktop Outlook.com / android / iOS white text fix */
 [data-ogsc] .dm-white-ol { color: #fffffe !important; mix-blend-mode: difference;}
  </style>
  <style>
   @media screen and (max-width: 480px) {
 p {font-size: 14px !important; line-height: 20px !important;}
 h4 {font-size: 24px; line-height: 28px;}
 h6 {font-size: 18px; line-height: 24px;}
 .hide {display: none !important;}
 .block {display: block !important;}
 .inline_block {display: inline-block !important;}
 .center {margin-left: auto !important; margin-right: auto !important; text-align: center !important; float: none !important;}
 .em_img {width: 100% !important; height: auto !important;}
 .cta_01 {font-size: 16px !important; line-height: 18px !important;}
 .cta_02 {font-size: 14px !important; line-height: 32px !important; padding: unset !important;}
 .cta_new {padding: 8px 16px !important; font-size: 14px !important; font-weight: 500 !important;}
 .header_nav {display: inline-flex !important; justify-content: space-between !important; margin: 0 auto;}
 .em_br414 {display: block !important; padding: 0 0 5px 0 !important;}
 .imghide414 {max-height: none !important; font-size: 12px !important; display: block !important;}
 .fs12 {font-size: 12px !important;}
 .fs13 {font-size: 13px !important;}
 .fs14 {font-size: 14px !important;}
 .fs15 {font-size: 15px !important;}
 .fs16 {font-size: 16px !important;}
 .fs18 {font-size: 18px !important;}
 .fs20 {font-size: 20px !important;}
 .fs24 {font-size: 24px !important;}
 .fs30 {font-size: 30px !important;}
 .fs35 {font-size: 35px !important;}
 .fs36 {font-size: 36px !important;}
 .fs40 {font-size: 40px !important;}
 .fs45 {font-size: 45px !important;}
 .fs48 {font-size: 48px !important;}
 .fs56 {font-size: 56px !important;}
 .fs70 {font-size: 70px !important;}
 .fs80 {font-size: 80px !important;}
 .fs90 {font-size: 90px !important;}
 .lh5 {line-height: 5px !important;}
 .lh10 {line-height: 10px !important;}
 .lh16 {line-height: 16px !important;}
 .lh18 {line-height: 18px !important;}
 .lh19 {line-height: 19px !important;}
 .lh20 {line-height: 20px !important;}
 .lh21 {line-height: 21px !important;}
 .lh22 {line-height: 22px !important;}
 .lh24 {line-height: 24px !important;}
 .lh26 {line-height: 26px !important;}
 .lh28 {line-height: 28px !important;}
 .lh31 {line-height: 31px !important;}
 .lh32 {line-height: 32px !important;}
 .lh34 {line-height: 34px !important;}
 .lh35 {line-height: 35px !important;}
 .lh37 {line-height: 37px !important;}
 .lh40 {line-height: 40px !important;}
 .lh42 {line-height: 42px !important;}
 .lh45 {line-height: 45px !important;}
 .lh48 {line-height: 48px !important;}
 .lh50 {line-height: 50px !important;}
 .lh52 {line-height: 52px !important;}
 .lh60 {line-height: 60px !important;}
 .lh62 {line-height: 62px !important;}
 .lh68 {line-height: 68px !important;}
 .lh70 {line-height: 70px !important;}
 .lh80 {line-height: 80px !important;}
 .lh90 {line-height: 90px !important;}
 .mar0 {margin: 0 !important;}
 .marT0 {margin-top: 0 !important;}
 .marT4 {margin-top: 4px !important;}
 .marT8 {margin-top: 8px !important;}
 .marT12 {margin-top: 12px !important;}
 .marT16 {margin-top: 16px !important;}
 .marT24 {margin-top: 24px !important;}
 .marT32 {margin-top: 32px !important;}
 .marB0 {margin-bottom: 0 !important;}
 .marB4 {margin-bottom: 4px !important;}
 .marB8 {margin-bottom: 8px !important;}
 .marB12 {margin-bottom: 12px !important;}
 .marB16 {margin-bottom: 16px !important;}
 .marB24 {margin-bottom: 24px !important;}
 .marB32 {margin-bottom: 32px !important;}
 .pad20 {padding: 20px !important;}
 .padT0 {padding-top: 0 !important;}
 .padT4 {padding-top: 4px !important;}
 .padT8 {padding-top: 8px !important;}
 .padT16 {padding-top: 16px !important;}
 .padT24 {padding-top: 24px !important;}
 .padT32 {padding-top: 32px !important;}
 .padT40 {padding-top: 40px !important;}
 .padT48 {padding-top: 48px !important;}
 .padT64 {padding-top: 64px !important;}
 .padT80 {padding-top: 80px !important;}
 .padB0 {padding-bottom: 0 !important;}
 .padB4 {padding-bottom: 4px !important;}
 .padB8 {padding-bottom: 8px !important;}
 .padB16 {padding-bottom: 16px !important;}
 .padB24 {padding-bottom: 24px !important;}
 .padB32 {padding-bottom: 32px !important;}
 .padB40 {padding-bottom: 40px !important;}
 .padB48 {padding-bottom: 48px !important;}
 .padB64 {padding-bottom: 64px !important;}
 .padB80 {padding-bottom: 80px !important;}
 .padL0 {padding-left: 0 !important;}
 .padL8 {padding-left: 8px !important;}
 .padL10 {padding-left: 10px !important;} /*added 3/11/25*/
 .padR10 {padding-right: 10px !important;} /*added 3/11/25*/
 .padL16 {padding-left: 16px !important;}
 .padL20 {padding-left: 20px !important;}
 .padL24 {padding-left: 24px !important;}
 .padL30 {padding-left: 30px !important;}
 .padL35 {padding-left: 35px !important;}
 .padR0 {padding-right: 0 !important;}
 .padR8 {padding-right: 8px !important;}
 .padR16 {padding-right: 16px !important;}
 .padR20 {padding-right: 20px !important;}
 .padR24 {padding-right: 24px !important;}
 .padR30 {padding-right: 30px !important;}
 .padR35 {padding-right: 35px !important;}
 .padLR0 {padding-left: 0 !important; padding-right: 0 !important;}
 .padLR8 {padding-left: 8px !important; padding-right: 8px !important;}
 .padLR10 {padding-left: 10px !important; padding-right: 10px !important;}
 .padLR15 {padding-left: 15px !important; padding-right: 15px !important;}
 .padLR16 {padding-left: 16px !important; padding-right: 16px !important;}
 .padLR20 {padding-left: 20px !important; padding-right: 20px !important;}
 .padLR24 {padding-left: 24px !important; padding-right: 24px !important;}
 .padLR25 {padding-left: 25px !important; padding-right: 25px !important;}
 .padLR30 {padding-left: 30px !important; padding-right: 30px !important;}
 .padLR35 {padding-left: 35px !important; padding-right: 35px !important;}
 .padLR40 {padding-left: 40px !important; padding-right: 40px !important;}
 .accountbox {padding: 25px 10px !important;}
 .width_auto {width: auto !important;}
 .width25pc {width: 25% !important;}
 .width50pc {width: 50% !important;}
 .width100pc {width: 100% !important;}
 .width8 {width: 8px !important;}
 .width14 {width: 14px !important;}
 .width16 {width: 16px !important;}
 .width20 {width: 20px !important;}
 .width24 {width: 24px !important;}
 .width25 {width: 25px !important;}
 .width30 {width: 30px !important;}
 .width32 {width: 32px !important;}
 .width40 {width: 40px !important;}
 .width48 {width: 48px !important;}
 .width50 {width: 50px !important;}
 .width92 {width: 92px !important;}
 .width96 {width: 96px !important;}
 .width112 {width: 112px !important;}
 .width114 {width: 114px !important;}
 .width115 {width: 115px !important;}
 .width120 {width: 120px !important;}
 .width132 {width: 132px !important;}
 .width140 {width: 140px !important;}
 .width160 {width: 160px !important;}
 .width167 {width: 167px !important;}
 .width177 {width: 177px !important;}
 .width179 {width: 179px !important;}
 .width240 {width: 240px !important;}
 .width372 {width: 372px !important;}
 .width374 {width: 374px !important;}
 .width382 {width: 382px !important;}
 .width414 {width: 414px !important;}
 .height_auto {height: auto !important;}
 .height8 {height: 8px !important;}
 .height16 {height: 16px !important;}
 .height24 {height: 24px !important;}
 .height32 {height: 32px !important;}
 .height40 {height: 40px !important;}
 .height48 {height: 48px !important;}
 .h414 {height: 414px !important;}
 .height65 {height: 65px !important;}
 .height85 {height: 85px !important;}
 .height190 {height: 190px !important;}
 .height200 {height: 200px !important;}
 .height205 {height: 205px !important;}
 .height220 {height: 220px !important;}
 .height230 {height: 230px !important;}
 .height270 {height: 270px !important;}
 .height280 {height: 280px !important;}
 .height310 {height: 310px !important;}
 .height370 {height: 370px !important;}
 .height442 {height: 442px !important;}
 .height450 {height: 450px !important;}
 .height505 {height: 505px !important;}
 .height620 {height: 620px !important;}
 .height664 {height: 664px !important;}
 .fs8 {font-size: 8px !important;} 
 .font_normal {font-weight: normal !important;}
 .crdtnad_bg {background-image: none !important;height: auto !important; width: 394px !important;}
 .width30pc {width: 30% !important;}
 .width70pc {width: 70% !important;}
 .marR10 {margin-right: 30px !important;} 
 .fbold {font-weight: bold !important;}
 .width_unset {width: unset !important;}
 .cta_4_col_pad {padding: 10px 8px 0 !important;} /*added 4/3/25*/
 }
 @supports (-webkit-touch-callout: none) {
 .header_nav {width: 100%;}
 }
  </style>
  <!--[if !mso]><!-->
  <style>
   @media (-webkit-min-device-pixel-ratio:0) {
 /*Macys Sans*/
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 400; src: local('Macys Sans'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDUzMDU0N30:1uP3Vn:rr8n7BqYs8Y7D0vu8kk6oDLfIKG49fj1ZMpbinLnGUE') format('woff');}
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 500; src: local('Macys Sans Medium'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansMdv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDUzNjg5OH0:1uP3Vn:G7bXRtcBi8K7I6wbQJOjG1-LI4Xlj0gQfTt3sSH-_aA') format('woff');}
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 700; src: local('Macys Sans Bold'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansBdv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDUzOTgwNH0:1uP3Vn:NBRsyiVjeS0aDvq18YAM5DGTEpVuUJcC67Dr4zgXWAs') format('woff');}
 /*TT Ramillas*/
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 400; src: local('TT Ramillas'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Regular.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0MTM5Mn0:1uP3Vn:x2oJxdXZo_S1WKmcw8vCQQtMT55mVOiUUNNbTX24rNM') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Regular.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0Mjg2fQ:1uP3Vn:THJNZAsdW_vrIEXoysHxIRJcOKlCvHq6tpcHG4mcFVY') format('truetype');}
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 500; src: local('TT Ramillas Medium'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Medium.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0NDI4NH0:1uP3Vn:uknG7-ywiGHpsMFbx2y2zVkrUcoNCEmjoTLXL51cGZA') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Medium.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0NTg0MX0:1uP3Vn:P5wx1VD194H3wUnRJlI379elqSi8QbrHO-_Y4ijUQdA') format('truetype');}
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 700; src: local('TT Ramillas Bold'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Bold.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0NzU5Nn0:1uP3Vn:mI98GgYO1VppisO6kb-925WYOuUZF_1aljLI6Awdx_4') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Bold.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDU0OTA0OH0:1uP3Vn:3swWBwf654dJxTxWvmmYcPaaV-DdFuxGy_JbxscRzi0') format('truetype');}
 /*font weights*/
 .fw_medium {font-weight: 500 !important;}
 .cta_01 {font-weight: 500 !important;}
 .cta_02 {font-weight: 700 !important;}
 }
 @media (-webkit-min-device-pixel-ratio:0) and (max-width: 480px) {
 .cta_01 {font-weight: 500 !important;}
 .cta_02 {font-weight: 500 !important;}
 }
  </style>
  <!--<![endif]-->
  <!--[if gte mso 9]>
 <style type="text/css">
 .mso_border_none {border: none !important;}
 .mso_button_01 {mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: "0 \#FFFFFF 0 100000\,100000 \#FFFFFF 0 100000"; color: #000000 !important; background: transparent !important; background-color: transparent !important; border: none !important;}
 .mso_button_02 {mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: "0 \#000000 1 100000\,99000 \#000000 1 100000"; color: #FFFFFF !important; background: transparent !important; background-color: transparent !important; border: none !important;}
  .keep-white {mso-style-textfill-type:gradient; mso-style-textfill-fill-gradientfill-stoplist:"0 \#FFFFFF 0 100000\,100000 \#FFFFFF 0 100000";color: #000000 !important}
  .keep-black {mso-style-textfill-type:gradient; mso-style-textfill-fill-gradientfill-stoplist:"0 \#000000 1 100000\,99000 \#000000 1 100000";color: #ffffff !important}
 </style>
 <![endif]-->
  <style>
   @media (prefers-color-scheme: dark){
  .dm_bg_dark {background-color: #000001 !important}
  .dm_bg_darkgrey {background-color: #323232 !important}
  .dm_bg_white {background-color: #fffffe !important}
  .dm_bg_star-red {background-color: #EB6449 !important} /*dark mode color for hex color #CC0000. Can be added on td cell as needed.*/
  .dm_bg_pedi-red {background-color: #F1967D !important} /*dark mode color for hex color #8D0000. Can be added on td cell as needed.*/
  .dm_bg_spice {background-color: #7B510E !important} /*dark mode color for hex color #DB993C. Can be added on td cell as needed.*/
  .dm_bg_sand {background-color: #433412 !important} /*dark mode color for hex color #F3D7A6. Can be added on td cell as needed.*/
  .dm_bg_pearl {background-color: #31312C !important} /*dark mode color for hex color #E8E7E1. Can be added on td cell as needed.*/
  .dm_bg_stainless-steel {background-color: #525558 !important} /*dark mode color for hex color #C3C3C3. Can be added on td cell as needed.*/
  .dm_bg_flannel-suit {background-color: #96989B !important} /*dark mode color for hex color #767676. Can be added on td cell as needed.*/
  .dm_bg_loyalty-bronze {background-color: #A75C12 !important} /*dark mode color for hex color #D57200. Can be added on td cell as needed.*/
  .dm_bg_loyalty-silver {background-color: #424548 !important} /*dark mode color for hex color #D6D6D6. Can be added on td cell as needed.*/
  .dm_bg_loyalty-gold {background-color: #544009 !important} /*dark mode color for hex color #F0C006. Can be added on td cell as needed.*/
  .dm_bg_loyalty-platinum {background-color: #626F78 !important} /*dark mode color for hex color #8997A0. Can be added on td cell as needed.*/
  .dm_bg_skyblue {background-color: #264B60 !important} /*dark mode color for hex color #CBE4F8. Can be added on td cell as needed.*/
  h1 a, h2, h2 a, h3, h3 a, h4 a, h4, h5 a, h5, h6 a, div.fs24, div.fs18, .font_ramp p, .font_ramp p > a, p.center, p.fs14, p.fs14 a, p.fs12, p.fs12 a, p.center a, p a.keep-white, .navlink_container a , a.cta_01, a.fs14, .dm_txt_white {color: #fffffe !important}
  .btn_outline_white {color: #fffffe !important; border-color: #fffffe !important; background-color: transparent !important;}
  .btn_outline_black {color: #00000F !important; border-color: #00000F !important; background-color: transparent !important;}
  #converted-body .btn_outline_black {
  -webkit-text-fill-color: #00000F !important; border-color: #00000F !important; background-color: transparent !important;}
  .btn_full_white {color: #00000F !important; border-color: #fffffe !important; background-color: #fffffe !important;}
  .btn_full_black {color: #fffffe !important; border-color: #00000F !important; background-color: #00000F !important;}
  .hr {background-color: #fffffe !important;}
  .dm_txt_black, a.dm_txt_black {color: #00000F !important}
  .dm_txt_red {color: #CC0000 !important}
   }
  </style>
  <!--Custom Styles go here if needed. -->
  <style>
   @media screen and (max-width: 480px) {
    .txt_center {text-align: center !important;}
   }
  </style>
 </head>
 <!-- dynamic variable that should hold the global CSS for global modules -->
 <body class="body" style="margin:0px; padding:0px;">
  <table cellpadding="0" cellspacing="0" style="border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left">
   <tr>
    <td height="1" style="font-size: 1px; line-height: 1px; padding: 0px;">
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fpub%252Fas%253F_ri_%253DX0Gzc2X%253DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXHkMX%253Dw%2526_ei_%253DEUlaGGF4SNMvxFF7KucKuWM9ji_Y0Am4cfInxGDseahiupoDhtrVV2Z04UnTz2-dXJk7QqdWTWYd8CjPEKCDjIv-TeMHDY2lwgEZGEVntEix7NyZ7c5HR3O1F-mg8IjBYzjwQplPMBzgBbDf3FKSRWE5anMFcll-3Azu7mNX_800eSZJYh8qPBL7v615wlXdhEU2DtBnXSOa-ba_QvaaFOcFEbdEEAfqbpAjWbIuU8Lvk58-xw./?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg3NDA5OH0:1uP3Vn:2Y6Nb4DnXUJRfojjqsidUyRsmz5HL5basrzH8R-t_Lo"/>
    </td>
   </tr>
  </table>
  <!-- Invisible Preheader -->
  <div style="display:none; font-size:1px; line-height:1px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; mso-hide:all; font-family:sans-serif;">
   Last-minute gifts (that feel anything but)  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
  </div>
  <!-- /Invisible Preheader -->
  <!-- Container -->
  <table bgcolor="#f2f2f2" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
   <tr>
    <td align="center" valign="top">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width:688px; max-width:688px; margin:0 auto;" width="688">
      <tr>
       <td align="center" bgcolor="#fffffe" class="dm_bg_dark">
        <!-- H1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414 dm_bg_dark" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" class="padLR20 padT24 padB8" style="padding: 32px 30px 16px;">
           <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation" width="100%">
            <tr>
             <th align="left" class="block padB8">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Macy's" class="center" height="40" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Flogo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg3NjE4Mn0:1uP3Vn:uN6O2Htt47Yc3vIPevN_3DpAsoWkA58jgLitsV9mlBk" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 22px; line-height: 26px; font-weight: 500; text-align: center;" width="132"/>
              </a>
             </th>
             <th align="right" class="block center fs13 fw_medium" style="font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 14px; line-height: 20px; font-weight: 500;">
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Women
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Men
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Home
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Handbags
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Shoes
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Beauty
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Brands
              </a>
             </th>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /H1.1 -->
        <!--  WaterFall-1 Display customer's star money about to expire (within 7 days)-->
        <table bgcolor="#000000" border="0" cellpadding="0" cellspacing="0" class="dm_bg_white" role="presentation" width="100%">
         <tr>
          <td align="center" class="padLR25" style="padding: 20px 0px;">
           <p class="dm_txt_black" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 14px; line-height: 16px; font-weight: 700;">
            Not a Star Rewards member?
            <a class="dm_txt_black" data-litmus-ignore="" style="color: #ffffff; text-decoration: underline; white-space: nowrap; font-weight: 400; vertical-align: baseline; white-space: nowrap;" target="_blank">
             Join Now
            </a>
           </p>
          </td>
         </tr>
        </table>
        <!-- Module: Countdown Timer -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" style="width: 688px;" width="688">
         <tr>
          <td align="center" background="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi2%252Fresponsysimages%252Fcontent%252Fmacys%252F1px_ffffff.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiIsInRpbWUiOjE3NDk1NzkzNTEuNDk5NDgzNn0:1uP3Vn:sGY7-K0zHMRddHDf4y-_ebg8HiXZS8ibr061QYChLQ0" bgcolor="#ffffff" style="background-size: cover;">
           <!--Campaign Code-->
           <table border="0" cellpadding="0" cellspacing="0" height="1" width="1">
            <tr>
             <td style="font-size:0px; line-height:0px;">
              <img alt="" aria-hidden="true" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Fcp%252Fb14d177f68f259c9%252Fo.gif%253Fmi_u%253D15746306442/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDg3NzI5NX0:1uP3Vn:9SZt-okcSVn9Qx9UityBX8rbiQGFZFsVrp2Vua3dXf0" width="1"/>
             </td>
            </tr>
           </table>
           <!--/Campaign Code-->
           <table border="0" cellpadding="0" cellspacing="0" width="100%">
            <tr>
             <td align="center" colspan="2">
              <!--HEADER-->
              <div class="hide">
               <!--Desktop Image-->
               <a style="display: block">
                <img alt="Display images to show real-time content" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Frp%252Fb98e524e8b4823bf.png%253Fmi_u%253D15746306442%2526mi_ign%253DORA-44009182SDA-20250610%2526cm_mmc%253DMCOM-_-20250610_MCOM_SiteFday_L2501729-_-CDT-_-%2526m_sc%253Dem%2526m_cn%253D20250610_MCOM_SiteFday_L2501729%2526m_l%253DCDT%2526m_tp%253DADHOC%2526m_pi%253D_COMPONENTNAME%2526m_s%253DORA-44009182SDA-20250610%2526m_sb%253DMCOM/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDg3ODY2fQ:1uP3Vn:k_FThep1VbUThVvqaRePcAohExiRawUF4pB6ewZVh1c" style="border: 0; display: block;"/>
               </a>
               <!--/Desktop Image-->
              </div>
              <!--[if !mso]><!-->
              <div class="block" style="display: none;">
               <!--Mobile Image-->
               <a style="display: block">
                <img alt="Display images to show real-time content" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Frp%252Fded60f4b2c579def.png%253Fmi_u%253D15746306442%2526mi_ign%253DORA-44009182SDA-20250610%2526cm_mmc%253DMCOM-_-20250610_MCOM_SiteFday_L2501729-_-CDT-_-%2526m_sc%253Dem%2526m_cn%253D20250610_MCOM_SiteFday_L2501729%2526m_l%253DCDT%2526m_tp%253DADHOC%2526m_pi%253D_COMPONENTNAME%2526m_s%253DORA-44009182SDA-20250610%2526m_sb%253DMCOM/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4MDIyM30:1uP3Vn:v1RefYxF7xvtCBoPPtjiLRygArXJWZfJZ-LFj7a0lcA" style="border: 0; display: block;"/>
               </a>
               <!--/Mobile Image-->
              </div>
              <!--<![endif]-->
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /Module: Countdown Timer -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_MB1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4MTY1OX0:1uP3Vn:4WOKgZYAgnEiiwLlqQFB6Z4Qx7BefO9yqriAdmSb3Jo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_MB1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4MzU4NX0:1uP3Vn:Kpc3X8i7iqSGMbbaea2AOSE5bk9cs_S-j6-W4Vrt2Kw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T2.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h1 class="fs36 lh42" style="margin: 4px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 45px; line-height: 55px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Just add a bow: our favorite
             <br class="hide"/>
             gift sets for every kind of dad
            </a>
           </h1>
          </td>
         </tr>
        </table>
        <!-- /MB T2.1 -->
        <!-- 8 buttons b -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAYWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=aqnusk416ccbk7cbmeoaemsp4e61lva37mt811gah45nvbuqhgig" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the entertainer
                </span>
                <span class="inline_block" style="display: none;">
                 For the entertainer
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAYAT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=9anh3tr4r68f2dkonjgl11ulfmuu3jg1tiv7ii517ge2tfnhvjrg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the adventurer
                </span>
                <span class="inline_block" style="display: none;">
                 For the adventurer
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
           <div class="spacer hide" role="presentation" style="max-height: 8px; line-height: 8px;">
            ‌ ‌
           </div>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAYCT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=d419ojn4gg9nq9q64nuqvsgefogeht4ja9slqb7ihkh1i48t0c9g" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the grill master
                </span>
                <span class="inline_block" style="display: none;">
                 For the grill master
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAART&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=246mn48ekbvvgq8nl8ih5hb17lobs7lr3juap5ki6hsck5ss45n0" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the athlete
                </span>
                <span class="inline_block" style="display: none;">
                 For the athlete
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
           <div class="spacer hide" role="presentation" style="max-height: 8px; line-height: 8px;">
            ‌ ‌
           </div>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAATT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=9mh5l75onsg8mdsmgclapa98oei1doo1hcb0kuduruntbfgvurq0" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the trendsetter
                </span>
                <span class="inline_block" style="display: none;">
                 For the trendsetter
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAAWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=vvhrplvc3umbhrcrk9d6gv04ahg0r53m9jur576pkjpk8oknp77g" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 For the cologne-lover
                </span>
                <span class="inline_block" style="display: none;">
                 For the cologne-lover
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
           <div class="spacer hide" role="presentation" style="max-height: 8px; line-height: 8px;">
            ‌ ‌
           </div>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAAAT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=nr7ii1nbvnsg84rdoll71ip9nbspuptnb47pfvvc2s9b4muc20p0" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Self-care gift sets
                </span>
                <span class="inline_block" style="display: none;">
                 Self-care gift sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTAACT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=dl5e0j106rg9fmg4c94q13jfopdu90lqvd0nq5r35ujapebaktqg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Shop all gifts
                </span>
                <span class="inline_block" style="display: none;">
                 Shop all gifts
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /8 buttons b -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 0px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252Fjun2ltygcsmpromo%252Fimages%252FL2502147_desktop_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4NDg5fQ:1uP3Vn:VWX8ryAHXnl0adTrrpqBKhWpY76BSmPxIVhRx3_sqvw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252Fjun2ltygcsmpromo%252Fimages%252FL2502147_mobile_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4NjAzfQ:1uP3Vn:xR4gHQSegPeycLWI9OiClYaOY8cwOM2pbvzoVVrzwX8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 0px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252Fjun2ltygcsmpromo%252Fimages%252FL2502147_desktop_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4NzEzfQ:1uP3Vn:GHDAw9539TAGvVx08Lek3dwx2CKMz6FR8xuNjaaFu78" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252Fjun2ltygcsmpromo%252Fimages%252FL2502147_mobile_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4ODE5fQ:1uP3Vn:HcspAmqpNv7-T7tymRbIZvM19eGhClAaxGV0cXJwDJc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg4OTI4fQ:1uP3Vn:lGlwFm7EQ-jH7NuRWcTkoio7zUqLhYmb8bWaIjkLW94" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5MDM2fQ:1uP3Vn:H77Ihr9tkfc10mtqzhhMInHTXiPYOJb2bYjqbuQYAFU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             If Dad loves to show off his kitchen skills, try a
             <br class="hide"/>
             GreenPan x Bobby Flay set that lets him flip, fry,
             <br class="hide"/>
             sauté, and roast to his heart’s desire.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTABTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=tf58i5n67mhrj88g0idej5bpv01f6u1bepjsg0pevng7kugv1hcg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTABWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=1fritq69th882q8hu2hhfo70sqnbgkarfv50e81d2doosfegqrkg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All entertainer sets
                </span>
                <span class="inline_block" style="display: none;">
                 All entertainer sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB2_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5MTQ1OH0:1uP3Vn:g5VSf5RM18KZBejxnOsusWJ3ItYws9cUX-6JCiAHuS8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB2_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5MjU0NX0:1uP3Vn:ZNjUN9xUIGbKepFcdUbJFVAeKH1T7XDZyId5NcYtdE0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                A gorgeous set of Lenox
                <br class="hide"/>
                glasses takes his bar set
                <br class="hide"/>
                up to the next level.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB2_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5MzYyfQ:1uP3Vn:1V575hsku7BpRxpY7pt0OE2NEyJjdYtaTXzYFDnBtQo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB2_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5NDY5NX0:1uP3Vn:X1lpmDNH-rTJBGbjNAuabJIa-yoQLu9JsP82bamH9CU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Mixologist in the making?
                <br class="hide"/>
                Get him all the tools he
                <br class="hide"/>
                needs to master his craft.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5NTc1NH0:1uP3Vn:4B60JLxH--ig6K9yqWSiTP5lARnGY9CQswAHyEpj5KA" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5NjgzNH0:1uP3Vn:42SeYFG2uhnvxK4qlA9-xzyMqMaNp7gVmIL5PW6GcR8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Don’t underestimate the power of a good T-shirt—
             <br class="hide"/>
             these shades of blue are perfect to throw in a
             <br class="hide"/>
             suitcase.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTACTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=fb4e5s1udcnblop860j1krj67539bgj7946cqlbricrrgb1pr4u0" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTACWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=u91147hm7m4juk3n0g8kjv1kf56ptuv03pkgq58cdsvj4kv6glrg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All travel sets
                </span>
                <span class="inline_block" style="display: none;">
                 All travel sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB4_1_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5Nzl9:1uP3Vn:qNZjIFswMNMRDjPE2y5QNJ8QSt4NghJTmoExiQmH2qo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB4_1_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDg5ODk1Nn0:1uP3Vn:EL-pVf4VM4jABe7R414jTsSixInJbax74MD6GjW7O3g" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Durable luggage sets
                <br class="hide"/>
                from Samsonite are a
                <br class="hide"/>
                must for avid travelers.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB4_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwMDAxNH0:1uP3Vn:KtYEUxVVymVHdNDNR5SKINfnd2wAzzsWMzS0HixvOb8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB4_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwMTA2Nn0:1uP3Vn:KslZ_e7FRQ-Pb9oGW1V-t8bQVYEPGJ-4SzcHb7rFATY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Security-approved sizes
                <br class="hide"/>
                from Jack Black can go
                <br class="hide"/>
                along for the trip.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB5.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwMjEzMn0:1uP3Vn:jdtpuFQI0lKFUdusX2ZwohhCLOIvspIRq5-MlVa-9tM" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB5.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwMzIyOH0:1uP3Vn:vweNTST70lNKgA8kAjKlWfTrjmEPlG8DWdViEH9YvBY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Sauces, spices &amp; all the flavors a grill enthusiast
             <br class="hide"/>
             loves: this Stonewall Kitchen set will ensure you’re
             <br class="hide"/>
             the designated taste tester.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTADTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=q5bib2mkk82pr3vc0iubibt8ch6fq1l985roukel7300snflcgkg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTADWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=pdtp81lu4486udsnktdmthkck8ak3m6o41hs37t8norl4ikdfofg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All grilling sets
                </span>
                <span class="inline_block" style="display: none;">
                 All grilling sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB6_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwNDI4Mn0:1uP3Vn:d_ZIo0tSIKbk0QMnWhwbPrEfNEAxSNXSlz6pYLex_7s" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB6_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwNTM1M30:1uP3Vn:ZIsV9nP9462jUFmmkRjcr2dTfsuBMLhFliy0pFOc3PY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Cuisinart crafted a 10-pc.
                <br class="hide"/>
                set with everything Dad
                <br class="hide"/>
                needs for the grill.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB6_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwNjQzfQ:1uP3Vn:YoUKuy6A1-lS-deZhjh6RacHhTKlWTBMt0sNrmVcvms" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB6_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwNzUxfQ:1uP3Vn:__oq3h0rqPPrLFB6Wk5FIyCH_hSzu3Xwhup6hiqGff4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Always get the *perfect*
                <br class="hide"/>
                cut with this 16-pc. knife
                <br class="hide"/>
                set from Wüsthof.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB7.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwODU2Nn0:1uP3Vn:KeCgo6MAIFOZ79RhDsvB6xTEIkLkiOfiA7Il34gBrzQ" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB7.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkwOTYwNn0:1uP3Vn:wKxmJ1ZZL0Y2ywR-d_rioZtISgwZxvbwDYhFCaNyFWk" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Sore muscles are no match for a Brookstone
             <br class="hide"/>
             massager. A mix of settings &amp; attachments is sure
             <br class="hide"/>
             to promote a quick recovery.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBRTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=5lerrvo9go4bffjq60sr3ge3arvf8kkgngipn1lhbi0tq0ov3t10" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBRWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=1j0fptjcmbrvk81sbm2md40ksb3au2a88b20qvlvtfleup39qmug" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All fitness sets
                </span>
                <span class="inline_block" style="display: none;">
                 All fitness sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB8_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxMDY3Mn0:1uP3Vn:8_2qPoiCJog-OlMG853PrKK1_8lhCyGhebzumf3Sfzs" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB8_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxMTk4NX0:1uP3Vn:W50x01soj95Odeb42tf_ZNeZSc7xMPSK9W_p1iTDRSY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Classic white socks from
                <br class="hide"/>
                Nike are Dad’s everyday
                <br class="hide"/>
                heroes.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB8_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxMzA4fQ:1uP3Vn:CILjrw0MifcpCtCduDvHrZZgGQwYz6kVVpSl_iukO7k" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB8_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxNDEzOH0:1uP3Vn:mZ0ta_GW-zB01HjSbh9IQH4W0WI-v0d252Tz0qIokx4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Bring the gym to him
                <br class="hide"/>
                with a trio of WeGym
                <br class="hide"/>
                kettlebells.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB9.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxNTIxMX0:1uP3Vn:M7pr-K73Da9eeVV9qFIRAbh315HZP4Wd9iu0FQdn_9M" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB9.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxNjI2N30:1uP3Vn:OFmz8e-dvXzSZddHy_jjfBD3v66g87-rnwNZOtlh9-I" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Is Dad always the best dressed in the room?
             <br class="hide"/>
             Finish his look with distinguished cufflinks and a
             <br class="hide"/>
             sleek wallet from Hugo Boss.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBSTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=e6qa1v3ta1qnq7b0jar1dfbs8lnv16piqv30q0mdkuu1uekcssi0" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBSWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=61nuappupoqmol9sqln6v5orgnpgbdhbciqmq6hicrbuel6lu6mg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All trending sets
                </span>
                <span class="inline_block" style="display: none;">
                 All trending sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB10_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxNzMxMn0:1uP3Vn:qPiCLN0SEV0OkMlQh-4LgSpo3_082hyf16GYRC-0HSw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB10_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxODM1NH0:1uP3Vn:qMWXAUPkBWQ9bZ1EU7UyDFs4dbNvWPcCja-j9mtYvYY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Try a more personalized
                <br class="hide"/>
                touch with Perry Ellis
                <br class="hide"/>
                initialed cufflinks &amp; a clip.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB10_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkxOTQwM30:1uP3Vn:6C_pBzATAYWvLo1zLM4DAipyxI5W3Xww5_fEElbisFo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB10_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyMDQ0Mn0:1uP3Vn:OQzAl9pXQbhHQrCMMbZc0I-xb69jq6zZOX8agd8Y16Q" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                A matching tie &amp; pocket
                <br class="hide"/>
                square set from Nautica
                <br class="hide"/>
                feels so on trend.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB11.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyMTc3Mn0:1uP3Vn:S4hR63kapG3z1x2oSpDTOvZ41Iav5fctTxn1RVADWFw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB11.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyMjk0NX0:1uP3Vn:urJJggwFnX2uDLqwRZyAoEAAO_TJDKgBVOldFDSWJxA" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             A bold blend of lemon, cedarwood, and vetiver is
             <br class="hide"/>
             a must for sunny days—and perfect for
             <br class="hide"/>
             charismatic Dads everywhere.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBTTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=sf96kp8mso8v6jlobgrnrrkd03jc8hbh0o9ul5k6mribu1t07a9g" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBTWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=dkvr2m5bqvbpnp04dnbruntladh029nhhk9sbjhmriktc3oovcog" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All fragrance sets
                </span>
                <span class="inline_block" style="display: none;">
                 All fragrance sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB12_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyNDAzfQ:1uP3Vn:IdEhvrKrvLPQQarTQRZlIDniyK5xzqBwxblLQmx3UPI" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB12_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyNTA4Mn0:1uP3Vn:03IS7_7orcXVczfbG7Lh50Q4Cmg5kkioYg1xjLrr2Dk" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Dolce&amp;Gabbana’s taste-
                <br class="hide"/>
                of-summer scent boasts
                <br class="hide"/>
                bright citrus notes.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB12_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyNjE0NX0:1uP3Vn:1u3N1zgwmP8M6gcqWfCwW91ZXL2AJznS53DnM2kCrZg" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB12_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyNzE5Mn0:1uP3Vn:8ShBhLZS60PM9S6dUVvkFEiaCItU76mvC2RK3DpDd0U" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                This warm, spirited scent
                <br class="hide"/>
                by COACH embodies
                <br class="hide"/>
                the energy of NYC.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB13.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkyODMzOX0:1uP3Vn:FeGTh09v-sd87Z4f7aEg2rkEGLrYusw8d1coMRNXWSk" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB13.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzMDA2N30:1uP3Vn:Zbi0aiuJuWIdXxCtNN1pTIkTogbS9fpw_GHhNmA9Okw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T1.2 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h4 class="" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 24px; line-height: 32px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Want to add to Dad’s morning routine? Try a high-
             <br class="hide"/>
             powered shaver with specific attachments from
             <br class="hide"/>
             Perry Ellis.
            </a>
           </h4>
          </td>
         </tr>
        </table>
        <!-- /MB T1.2 -->
        <!-- 2 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBUTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=m9u6rbrbvsbobgsql0pkqk3dr2d8mu61hnh3qhe8meom5nv2fedg" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Get the set
                </span>
                <span class="inline_block" style="display: none;">
                 Get the set
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGfImDBuUzgCbvb85617pPSGYzaMlJ7i2jLaFNPwIfF9Uu27Rzeq15iqPHfVXtpKX%3DYSRTBUWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGu1LI7sHxTrK9af7bCvg4Ly2m21ze2zJ1d7Dv4PQP5hkOYLD54-2_8U_OWhhUb0USQ0ZfbZSdkBaAsnxnDRIS2OzJFGloEAcrNVZ6LhwvbMfUCq1v6TbMTdi0fZqhE7iebMOzpzV2wFrsd2yMqqz9QSHVL8_N-I3R-CgxXsOqCtLvl5nUchtDph3EKlfeEg2qddZBoFIJ74ZDxHCl7Ft62sx9X9fYaHjS4wf4mLmh6epnUJumrOM0BPeWdzg.&_di_=l7pm4f48ikeiemhbm40dnmtoaadps43u4prbok1koq5a205pcc30" style="width: 300px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width177 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 300px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 All self-care sets
                </span>
                <span class="inline_block" style="display: none;">
                 All self-care sets
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /2 buttons -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB14_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzMTY3Mn0:1uP3Vn:3vLpgJyHMERNvCLlrThc65scCzERNRWSUBmxtC89vug" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB14_1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzMzI0M30:1uP3Vn:deLaNNzVkuYXVG8tljn9JGLLK7p3mnfXkLchFBeGaX8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Is Dad into the vintage
                <br class="hide"/>
                look? Proraso’s tin
                <br class="hide"/>
                shaving set is ready to
                <br class="hide"/>
                wrap.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="369" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB14_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzNDg0M30:1uP3Vn:NxPFEVK3KwFcHcrvWhWAaa-yA6UkVNH0SDfhdb_qk-I" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB14_2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzNjQ3M30:1uP3Vn:z33M05kYD5iVJ_N5XzaKSUylQNLTjyy42nSyiSXmhsY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Keep him feeling fresh
                <br class="hide"/>
                with a face wash +
                <br class="hide"/>
                moisturizer from Kiehl’s
                <br class="hide"/>
                Since 1851.
               </a>
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
                <td align="left" style="padding: 16px 0px 0px 0px;">
                 <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
                  Get the set
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- D1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 dm_bg_dark" style="padding: 16px 30px 16px;">
           <div class="hr" role="presentation" style="width: 100%; background-color: #C0C0C0; min-height: 1px; max-height: 1px; line-height: 1px; mso-line-height-rule: exactly;">
            ‌ ‌
           </div>
          </td>
         </tr>
        </table>
        <!-- /D1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB15.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzODA2OH0:1uP3Vn:LW0Y5GQ1dpYu3EFMn30FxsaE4wvMsXlVuO_lWcxt0vE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB15.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDkzOTcyNX0:1uP3Vn:lImjCHOc4tmkjuiJZhU9Mo1vuB6EyuDz3N0CrCjUt5k" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB16.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk0MTM1OX0:1uP3Vn:o3Ey0g0R19LbJmPEzmpl0bzLuHwDeHvcyhK_TVtTIeI" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202506%252Fmkt_components%252F20250610_MCOM_SiteFday_L2501729%252Fimages%252F20250610MCOMSiteFdayL2501729_SB16.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk0Mjk5NH0:1uP3Vn:uKCJmsd_HU4O7lXaLcTfITVSMq4kqDdD43Cu1H0FlkA" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- BackstageGeoNowOpenBannerSpring2025 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" style="width: 688px;" width="688">
         <tr>
          <td align="center" background="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi2%252Fresponsysimages%252Fcontent%252Fmacys%252F1px_ffffff.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiIsInRpbWUiOjE3NDk1NzkzNTEuNDk5NjA2Nn0:1uP3Vn:7SGG7fkJfaV4EM48Fo6O1Ui8EAtLJaOgWnsJ_iWiOvw" bgcolor="#ffffff" style="background-size: cover;">
           <!--Campaign Code-->
           <table border="0" cellpadding="0" cellspacing="0" height="1" width="1">
            <tr>
             <td style="font-size:0px; line-height:0px;">
              <img alt="" aria-hidden="true" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Fcp%252F37a8cd747e530096%252Fo.gif%253Fmi_u%253D15746306442/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDk0NDA5OH0:1uP3Vn:4t4nn-r-w3hpCbcBYUAR3lP7J3LMxqHagnPuk_HHUtg" width="1"/>
             </td>
            </tr>
           </table>
           <!--/Campaign Code-->
           <table border="0" cellpadding="0" cellspacing="0" width="100%">
            <tr>
             <td align="center" colspan="2">
              <!--HEADER-->
              <div class="hide">
               <!--Desktop Image-->
               <img alt="Display images to show real-time content" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Frp%252F753b6c1879ade037.png%253Fmi_u%253D15746306442%2526mi_ign%253DORA-44009182SDA-20250610%2526mi_zip_preferred%253D%2526m_sc%253Dem%2526m_sb%253DMCOM%2526m_tp%253DADHOC%2526m_cn%253D20250610_MCOM_SiteFday_L2501729%2526m_pi%253D_COMPONENTNAME%2526m_l%253DDESCRIPTION%2526m_s%253DORA-44009182SDA-20250610%2526cm_mmc%253DMCOM-_-20250610_MCOM_SiteFday_L2501729-_-linkname-_-/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDk0NTQwNX0:1uP3Vn:rLl_x28A8LB7v94EsO-wlmKtzHsOx-dqo_Ng4KZmHvI" style="border: 0; display: block;"/>
               <!--/Desktop Image-->
              </div>
              <!--[if !mso]><!-->
              <div class="block" style="display: none;">
               <!--Mobile Image-->
               <img alt="Display images to show real-time content" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.movable-ink-8154.com%252Fp%252Frp%252F298ee4d17baaf79b.png%253Fmi_u%253D15746306442%2526mi_ign%253DORA-44009182SDA-20250610%2526mi_zip_preferred%253D%2526m_sc%253Dem%2526m_sb%253DMCOM%2526m_tp%253DADHOC%2526m_cn%253D20250610_MCOM_SiteFday_L2501729%2526m_pi%253D_COMPONENTNAME%2526m_l%253DDESCRIPTION%2526m_s%253DORA-44009182SDA-20250610%2526cm_mmc%253DMCOM-_-20250610_MCOM_SiteFday_L2501729-_-linkname-_-/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cubW92YWJsZSIsInRpbWUiOjE3NDk1NzkzNTEuNDk1Njg0OX0:1uP3Vn:uw8nHFtF77jfwMe8-qxPwpuVj-m-EuYSIYQGQrqBMoA" style="border: 0; display: block;"/>
               <!--/Mobile Image-->
              </div>
              <!--<![endif]-->
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /BackstageGeoNowOpenBannerSpring2025 -->
        <!-- F1.1 -->
        <!-- F2.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 48px 0 56px;">
           <table bgcolor="#f6f6f6" border="0" cellpadding="0" cellspacing="0" class="dm_bg_darkgrey" role="presentation" width="100%">
            <tr>
             <td align="center">
              <h3 class="fs18" style="margin: 24px 24px 24px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
               More to explore
              </h3>
              <table border="0" cellpadding="0" cellspacing="0" role="presentation">
               <tr>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_pickup_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk1ODIzfQ:1uP3Vn:D3UEmgBZQD3wA3NJ3jq0-e5tJwN-mMTtQjjTejEc_j0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR16" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Buy online, pick up
                      <span style="white-space: nowrap;">
                       in store
                      </span>
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
                <td class="width16" style="width: 24px;">
                 ‌ ‌
                </td>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_store_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk1OTM2OX0:1uP3Vn:b4KnNmDjGPa6nMDcCXBaf8mojcDUhmJGkG0LFErJMTI" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR20" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Find your Macy’s store
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
                <td class="width16" style="width: 24px;">
                 ‌ ‌
                </td>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_style_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2MDM5Nn0:1uP3Vn:Hsy1xksjEKiJcaWcyKWS5NHc4dMK5KBLGd0cXLG9nAE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR16" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Free
                      <span style="display: block;">
                       styling
                      </span>
                      services
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <div class="spacer" role="presentation" style="max-height: 32px; line-height: 32px;">
               ‌ ‌
              </div>
             </td>
            </tr>
           </table>
           <table bgcolor="#000001" border="0" cellpadding="0" cellspacing="0" class="dm_bg_white" role="presentation" width="100%">
            <tr>
             <td align="center" style="padding: 16px 24px 16px;">
              <h3 class="fs18 dm_txt_black" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 25px; line-height: 32px; font-weight: normal;">
               <a class="dm_txt_black" data-litmus-ignore="" style="color: #ffffff; text-decoration: none;" target="_blank">
                Sign up for texts, get
                <strong>
                 25% off
                </strong>
                <span style="font-size: 16px; text-decoration: underline; vertical-align: baseline; white-space: nowrap;">
                 Sign Up
                </span>
               </a>
              </h3>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation">
            <tr>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Facebook" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_facebook_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2MTQwN30:1uP3Vn:vNIkm5tfknWzlo2e7t8nL94-JJjLASdLqBdWrWXnZek" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Instagram" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_instagram_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2MjcxfQ:1uP3Vn:mqJ27nCRwIY1wUTglqyJL1mldQom_M7AF2A13ij4e14" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="TikTok" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_tiktok_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2MzcyN30:1uP3Vn:kr346pla5lczyUqfK-2p9t1bjhxnD_VbUNf_P2oRp7w" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="YouTube" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_youtube_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2NDczfQ:1uP3Vn:CXweIXedte7Sil6A21SlfO4o2zmEVRYQ8d_tbvyBycc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation">
            <tr>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Download on the App Store" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_app_apple.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2NTcyNX0:1uP3Vn:Yc5GcBM6N7iPbo5kf98JBW9SC-HtRqC4HhIGMVc2A2E" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="98"/>
              </a>
             </td>
             <td style="width: 24px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Get it on Google Play" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_app_google.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDk1NzkzNTEuNDk2NjcxMn0:1uP3Vn:Ot6B_HsPEK46NxbVGYb6FdjnIFDWnYB_hx5IyUwMzkw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="110"/>
              </a>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 24px; line-height: 24px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="center" class="padLR20">
              <!-- -->
              <p class="marB24 fs12 lh24" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 View Online
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Unsubscribe
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Customer Service
                </u>
               </a>
               <span class="block">
               </span>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Store Locator
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Macy’s Credit Card
                </u>
               </a>
              </p>
              <!-- -->
              <p class="marB24 fs12 lh18" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Regular and original prices reflect offering prices that may not have resulted in actual sales. See
               <a data-litmus-ignore="" style="color: #000000; text-decoration: underline; white-space: nowrap;" target="_blank">
                Pricing Policy
               </a>
               .
              </p>
              <!-- -->
              <p class="marB24 fs12 lh18" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Note: If you signed up to receive email alerts from Citibank N.A. regarding
               <br class="hide"/>
               your Macy’s Credit Account, you will continue to receive these alerts even if you unsubscribe.
               <br class="hide"/>
               To opt-out or change your communication preferences regarding your Credit Account,
               <br class="hide"/>
               visit
               <a data-litmus-ignore="" style="color: #000000; text-decoration: underline;" target="_blank">
                Macy’s Credit Card
               </a>
               , sign into your account, and go to Manage
               <span style="white-space: nowrap;">
                Credit Alerts.
               </span>
              </p>
              <!-- -->
              <address class="marB24 fs12 lh18 dm_txt_white" style="margin: 0px 0px 0px; font-style: normal; text-decoration: none; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a class="dm_txt_white" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Macys.com LLC,
               </a>
               <span class="block" style="white-space: nowrap;">
                151 West 34th Street, New York, NY 10001
               </span>
              </address>
              <!-- -->
              <address class="marB24 fs12 lh18 dm_txt_white" style="margin: 0px 0px 18px; font-style: normal; text-decoration: none; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Macy’s Credit and Customer Service,
               <span class="block" style="white-space: nowrap;">
                PO Box 8113, Mason, OH 45040
               </span>
              </address>
              <!-- -->
              <p class="fs12 lh24" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Shipping Policy
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Return Policy
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Privacy Policy
               </a>
               <span class="block">
               </span>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Legal Notice
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Email Preferences
               </a>
              </p>
              <!-- -->
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /F2.1 -->
        <!-- /F1.1 -->
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <!-- /Container -->
  <table role="presentation">
   <tr>
    <td>
     <span style="visibility:hidden;">
      <font color="#ffffff" face="arial" size="1">
       20250610_MCOM_SiteFday_L2501729
      </font>
     </span>
    </td>
   </tr>
  </table>
 </body>
</html>