Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953<!DOCTYPE html>
<html style="border:0;margin:0;outline:0;padding:0">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
  <meta content="width=device-width" name="viewport"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="telephone=no" name="format-detection"/>
  <script type="application/ld+json">
   [{"@type":"Organization","logo":"https://s1-cdn.hm.com/global/assets/1.0.161/images/logo/hm-logo-gmail.png","@context":"//schema.org/"},{"@type":"EmailMessage","subjectLine":"","@context":"//schema.org/"},{"availabilityEnds":"","discountCode":"","@type":"DiscountOffer","description":"","availabilityStarts":"2018-12-31T23:59:59+00:00","@context":"//schema.org/"},{"image":"","@type":"PromotionCard","promotionCardLayout":"SingleImageLayout","@context":"//schema.org/"}]
  </script>
  <style>
   @import url(https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fhm-fonts%252F4.0.1%252Foces.css/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNDk4NzUzM30:1riB12:--dD57OSZ9sKfbU0hnyCLxNEHDGQQ3dOs9DzQv8qVKA);a{text-decoration:none}.prevent-auto-links a{color:inherit!important;text-decoration:none!important}.prevent-auto-links a.allowed-link{text-decoration:underline!important}.prevent-paragraph-margins p{margin:0!important}.prevent-top-paragraph-margins{margin-top:0!important}.prevent-bottom-paragraph-margins{margin-bottom:0!important}img.image+div{display:none!important}#MessageViewBody .hide-webkit{display:block!important}#MessageViewBody .show-webkit-table{display:none!important}@media screen yahoo{
.show-webkit-table{display:none}
}
  </style>
  <style id="optimize-css">
   @media (max-width:699px){
.is-hidden-mobile{max-height:0!important;line-height:0!important;display:none!important;mso-hide:all!important;overflow:hidden!important}.is-hidden-desktop{max-height:initial!important;line-height:auto!important;display:inline!important;mso-hide:none!important;overflow:auto!important}.image-mobile{width:100%!important;height:auto!important}.text-block-headline{width:300px!important;padding:7px 0 0 0!important}.text-block-headline-text{font-size:30px!important;line-height:36px!important}.text-block-headline-text.text-large{font-size:40px!important;line-height:46px!important}.text-block-headline-text.text-secondary{font-size:30px!important;line-height:36px!important}.text-block-headline-text.text-small{font-size:28px!important;line-height:36px!important}.text-block-preamble-text{font-size:12px!important;line-height:16px!important}.text-block-preamble-padding{padding-top:6px!important;padding-bottom:7px!important}.text-block-preamble{width:300px!important}.text-block-preamble-side-spacer{width:auto!important}.department-title{font-size:24px!important;line-height:30px!important;padding:31px 0 32px!important}.department-link{font-size:14px!important;line-height:18px!important}.department-link-container{padding:8px 0 20px!important}.departments-wrapper{padding-bottom:26px!important}.campaign-teaser-top-cta-wrapper{padding:0 8px!important}.campaign-teaser-top-text-block-headline-text{font-size:30px!important;line-height:36px!important;letter-spacing:1px!important}.campaign-teaser-top-text-block-headline-text.text-large{font-size:40px!important;line-height:48px!important}.campaign-teaser-top-text-block-headline-text.text-small{font-size:28px!important;line-height:36px!important}.campaign-teaser-top-text-block-preamble-wrapper{padding:0 24px 12px!important}.campaign-teaser-top-text-block-headline-wrapper{padding:0 24px 16px!important}.single-image-no-margins-price-below-image-wrapper{padding:0 24px!important}.stand-alone-table-wrapper{padding:0 24px!important}.stand-alone-product-grid-info{padding-bottom:23px!important}.stand-alone-product-new-arrival{font-size:11px!important;line-height:14px!important}.stand-alone-product-additional-attribute-container{font-size:11px!important;line-height:14px!important}.stand-alone-product-name,.stand-alone-product-price{line-height:20px!important}.footer-table{width:375px!important}.footer-social-media-spacer{width:20px!important}.footer-toc-wrapper{padding:20px 25px!important}.footer-button{padding:7px 0 4px!important}.footer-headline{padding-top:19px!important;padding-bottom:15px!important}.footer-hm-logo-wrapper{padding-top:36px!important;padding-bottom:20px!important}.footer-layout{padding:20px 0!important}.footer-social-media-icons-wrapper{padding:15px 0!important}.footer-view-in-browser{padding-bottom:20px!important}.footer{padding:29px 0 32px!important}.footer-unsubscribe{padding-top:10px!important}.product-grid-info{padding-bottom:40px!important}.product-grid-info{width:161px!important}.product-additional-attribute-container,.product-new-arrival{font-size:9px!important;line-height:11px!important}.header-menu{padding:0!important}.header-text-size-large{line-height:16px!important;padding:0 12px!important}.header-menu-container{width:375px!important}.header-show-desktop-only{display:none!important}.header-show-mobile-only{display:table-cell!important}.header-logo{padding:20px 0 0!important}.header-menu-container{padding:16px 0!important}.headline-text{padding:0 24px 24px!important}.cta-bottom-margin{height:48px!important}.static-margin{height:24px!important}.price-module-image-product-info{font-size:11px!important;line-height:14px!important}.price-module-mobile-width{width:161px!important}.story-secondary-story-image{padding:0 25px!important}.story-text-block-wrapper{padding:19px 0 18px!important}.email-layout{width:375px!important;min-width:375px!important}
}
@media (min-width:0){
body{margin:0;padding:0;-webkit-text-size-adjust:100%}.is-hidden{display:none}.is-hidden-desktop{display:none}.cta-link{-webkit-font-smoothing:antialiased}a{text-decoration:none}
}
@media (-webkit-min-device-pixel-ratio:0){
label{cursor:pointer}
}
  </style>
  <!--[if gte mso 9]>
    <xml>
        <o:OfficeDocumentSettings>
            <o:AllowPNG/>
            <o:PixelsPerInch>96</o:PixelsPerInch>
        </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->
  <!--[if mso]>
    <style>
        .triggered-cta,
        .image-text-cta-link,
        .footer-unsubscribe-link-text,
        .footer-view-in-browser-link,
        .tutorial-item-underline {
          text-decoration: underline !important;
        }
        .black-cta-link-desktop {
          color: #222 !important;
          background-color: transparent !important;
        }
        
    </style>
    <![endif]-->
 </head>
 <body class="email-background" style="background:#fff;background-color:#faf9f8;border:0;color:#000;line-height:1;margin:0;outline:0;padding:0">
  <table bgcolor="#faf9f8" border="0" cellpadding="0" cellspacing="0" class="email-background" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
   <tr style="border:0;margin:0;outline:0;padding:0">
    <td align="center" style="border:0;margin:0;outline:0;padding:0" width="100%">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="email-layout" style="border:0;border-collapse:separate;border-spacing:0;margin:0;min-width:700px;outline:0;padding:0" width="700">
      <tr style="border:0;margin:0;outline:0;padding:0">
       <td style="border:0;margin:0;outline:0;padding:0">
        <p class="is-hidden" style="border:0;display:none;font-weight:400;line-height:0px;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
         The collection is out now.
        </p>
        <p class="is-hidden" style="border:0;display:none;font-weight:400;line-height:0px;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
         ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
 ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
        </p>
       </td>
      </tr>
      <tr style="border:0;margin:0;outline:0;padding:0">
       <td align="center" class="email-layout" style="border:0;margin:0;min-width:700px;outline:0;padding:0" width="700">
        <span class="is-hidden" style="border:0;display:none;line-height:0px;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
         <img alt="" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Ft.email.hm.com%252Fr%252F%253Fid%253Dhe34ea0f4%252Cbfddc254%252C1/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnQuZW1haWwuaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQyMTE1N30:1riB12:QZVxhrywJQJYemIgBDADKSGWAl2kM0YXHNDGeVTAX_I" width="0"/>
        </span>
        <div class="merchRibbonContainer container parbase">
        </div>
        <div class="headerContainer container parbase">
         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
          <tr style="border:0;margin:0;outline:0;padding:0">
           <th class="header-menu" style="border:0;border-top:1px solid #f3f3f3;margin:0;outline:0;padding:0">
            <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
             <tr style="border:0;margin:0;outline:0;padding:0">
              <td align="center" class="header-logo" style="border:0;font-size:0;line-height:0px;margin:0;outline:0;padding:24px 0 0">
               <a _label="HM LOGO" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                <img alt="H&amp;M" class="is-hidden-mobile" height="40" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Flogo%252Fheader-hm-logo-light-red.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQyMzc1Nn0:1riB12:fSr1Bg7gLnKMxVaHCDFz9CA-BqgWSOn1bcCFwaQ9dUU" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="61"/>
                <!--[if !mso]><!-->
                <img alt="H&amp;M" class="is-hidden-desktop" height="27" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Flogo%252Fheader-hm-logo-light-red.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQyNTM5Nn0:1riB12:lJBcKWa04Pqrygd9IEKkhjf3jvBW_6kLJ0pORFWFYwI" style="border:none;display:none;margin:0;max-height:0;max-width:700px;mso-hide:all;outline:0;overflow:hidden;padding:0" width="41"/>
                <!--<![endif]-->
               </a>
              </td>
             </tr>
             <tr style="border:0;margin:0;outline:0;padding:0">
              <td align="center" class="header-menu-container" style="border:0;margin:0;outline:0;padding:20px 0" width="700px">
               <table align="center" border="0" cellpadding="0" cellspacing="0" class="header-menu-items" style="border:0;border-collapse:separate;border-spacing:0;display:inherit;margin:0;outline:0;padding:0" width="100%">
                <tr style="border:0;margin:0;outline:0;padding:0">
                 <!--[if !mso]><!-->
                 <th class="header-text-size-large header-show-mobile-only" style="border:0;display:none;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  Shop now
                  </a>
                 </th>
                 <!--<![endif]-->
                 <!--[if !mso]><!-->
                 <th class="header-text-size-large header-show-mobile-only" style="border:0;display:none;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  Sale
                  </a>
                 </th>
                 <!--<![endif]-->
                 <th class="header-text-size-large header-show-desktop-only" style="border:0;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  Shop now
                  </a>
                 </th>
                 <th class="header-text-size-large header-show-desktop-only" style="border:0;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  New arrivals
                  </a>
                 </th>
                 <th class="header-text-size-large header-show-desktop-only" style="border:0;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  Sale
                  </a>
                 </th>
                 <th class="header-text-size-large header-show-desktop-only" style="border:0;line-height:20px;margin:0;outline:0;padding:0 16px">
                  <a class="header-menu-link text-regular" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap" x-cq-linkchecker="skip">
                   ‌  Member pages
                  </a>
                 </th>
                </tr>
               </table>
              </td>
             </tr>
            </table>
           </th>
          </tr>
          <tr style="border:0;margin:0;outline:0;padding:0">
           <td style="border:0;margin:0;outline:0;padding:0">
            <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
             <tr style="border:0;margin:0;outline:0;padding:0">
              <td align="center" bgcolor="#f1ebdf" class="header-member-bar" style="border:0;font-size:11px;line-height:16px;margin:0;outline:0;padding:7px 0">
               <a class="header-member-bar-text text-regular text-no-decoration" style="border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none;white-space:nowrap">
                Hello member, you currently have 0 points.
               </a>
              </td>
             </tr>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <div class="topStoryContainer container parbase">
         <table border="0" cellpadding="0" cellspacing="0" class="container" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
          <tr style="border:0;margin:0;outline:0;padding:0">
           <td style="border:0;margin:0;outline:0;padding:0">
            <div class="campaignTeaserTop">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td style="border:0;margin:0;outline:0;padding:0">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td align="center" class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0">
                   <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                    <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                     <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-3x2-1-limited-edition-2024.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.1400.1400.jpeg%255D%2526set%253Dwidth%255B1400%255D%2526set%253DtextLength%255B348%255D%2526set%253DpositionX%255B2.86%255D%2526set%253DpositionY%255B25.69%255D%2526set%253DbrandName%255B%255D%2526set%253DproductName%255BPatterned%2520kaftan%2520dress%255D%2526set%253Dprice%255BU00A337.99%255D%2526set%253DredPrice%255B%255D%2526set%253DyellowPrice%255B%255D%2526set%253DyellowPriceText%255BMember%2520price%255D%2526set%253DtextColor%255B%2523FFFFFF%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fdesktop.chain%255D%2526auth%253Dhash%255Bc811a855%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQzMTE0N30:1riB12:-FCNFmtChYqerXdI3aso0fEr_KJsoxpZPlq4gExUUk0" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="700"/>
                    </a>
                   </div>
                   <!--[if !mso]><!-->
                   <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                    <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                     <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-CPM-TOP-1-limited-edition-2024.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.750.750.jpeg%255D%2526set%253Dwidth%255B750%255D%2526set%253DtextLength%255B286%255D%2526set%253DpositionX%255B2.86%255D%2526set%253DpositionY%255B41.50%255D%2526set%253DbrandName%255B%255D%2526set%253DproductName%255BPatterned%2520kaftan%2520dress%255D%2526set%253Dprice%255BU00A337.99%255D%2526set%253DredPrice%255B%255D%2526set%253DyellowPrice%255B%255D%2526set%253DyellowPriceText%255BMember%2520price%255D%2526set%253DtextColor%255B%2523FFFFFF%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fmobile.chain%255D%2526auth%253Dhash%255Ba3f08f3d%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQzMzczNn0:1riB12:6Yb0Jbvq5k0UCb2LzoDKwJmErWib5zXXo2CteqkAFbE" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                    </a>
                   </div>
                   <!--<![endif]-->
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="campaign-teaser-top-text-below-image-wrapper" style="border:0;margin:0;outline:0;padding:24px 0 12px">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td class="campaign-teaser-top-text-block-headline-wrapper" style="border:0;margin:0;outline:0;padding:0 60px 12px">
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="center" class="prevent-auto-links" style="border:0;margin:0;outline:0;padding:0">
                      <p class="campaign-teaser-top-text-block-headline-text text-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222222;font-family:HMSans,Arial,sans-serif;font-size:54px;font-weight:700;line-height:60px;margin:0;outline:0;padding:0">
                       Limited Edition 2024
                      </p>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td class="campaign-teaser-top-text-block-preamble-wrapper" style="border:0;margin:0;outline:0;padding:0 60px 12px">
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="center" class="campaign-teaser-top-text-block-preamble-text text-normal prevent-auto-links" style="-webkit-font-smoothing:antialiased;border:0;color:#222222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                      A distinctive new collection that borrows silhouettes, volumes, tones and details from the diverse and vibrant aesthetics of flowers.
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="campaign-teaser-top-cta-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <div class="is-hidden-mobile cta-links-container" style="border:0;font-size:0;margin:0;outline:0;padding:0 16px;text-align:center">
                 <span class="cta-link-wrapper" style="border:0;display:inline-block;margin:0;outline:0;padding:0">
                  <img height="41" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQzNTI5N30:1riB12:r8Yod9ybTl5XSavO9Tyqu-Wn-vssINBADQX1Yd-Qc-s" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="6"/>
                  <a class="cta-link text-bold" style="-webkit-font-smoothing:antialiased;border:1px solid #222222;border-color:#222222;color:#222222;display:inline-block;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:700;line-height:20px;margin:0;outline:0;padding:12px;text-align:center;text-decoration:none" x-cq-linkchecker="skip">
                   Shop now
                  </a>
                  <img height="41" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQzNzA4Nn0:1riB12:yuaJZGq-WpJfOzf2md8-uXYKrEbinK5MhF-jvj2ymk0" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="6"/>
                 </span>
                </div>
                <!--[if !mso]><!-->
                <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                 <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="cta-links-container" style="border:0;font-size:0;margin:0;outline:0;padding:0 16px">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td style="border:0;margin:0;outline:0;padding:0" width="20%">
                      </td>
                      <td align="center" class="cta-link-mobile-border" style="border:1px solid #222222;border-color:#222222;margin:0;outline:0;padding:12px 0" width="60%">
                       <a class="cta-link-mobile text-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222222;display:inline-block;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:700;line-height:20px;margin:0;outline:0;padding:0;text-align:center;text-decoration:none;width:100%" x-cq-linkchecker="skip">
                        Shop now
                       </a>
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="20%">
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </div>
                <!--<![endif]-->
                <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
                 <img class="cta-bottom-margin" height="40" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQzOTA1fQ:1riB12:gdm7Ox3tukk3RfrRrDCfAwvwja3UGasm2OXlNdX-qXw" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
                </div>
               </td>
              </tr>
             </table>
            </div>
            <div class="singleImage">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="single-image-no-margins-price-below-image-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td style="border:0;margin:0;outline:0;padding:0">
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="center" class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0">
                      <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                       <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                        <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-CPD-1-limited-edition-2024.jpeg%252F_jcr_content%252Frenditions%252Fcq5dam.web.1400.1400.jpeg%255D%2526set%253Dwidth%255B1400%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fdesktop.chain%255D%2526auth%253Dhash%255B5c71a39a%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ0MDkzOH0:1riB12:FgGTr2UDMT3Tu9acM7ENFsFNf1du46Bjlvh3_NSqNd0" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="700"/>
                       </a>
                      </div>
                      <!--[if !mso]><!-->
                      <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                       <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                        <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-CPD-1-limited-edition-2024.jpeg%252F_jcr_content%252Frenditions%252Fcq5dam.web.750.750.jpeg%255D%2526set%253Dwidth%255B654%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fmobile.chain%255D%2526auth%253Dhash%255B149aaf16%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ0MzE1OH0:1riB12:BubxiBtEjYek-kE-5BwRpCWhn6_PSpzSJ-hlA0wJ5og" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </div>
                      <!--<![endif]-->
                     </td>
                    </tr>
                   </table>
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="left" class="price-module-image-product-info text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:4px 0 24px">
                      <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td align="left" class="price-module-additional-attribute-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:4px 5px 0 0;padding-top:4px">
                         <a class="text-no-decoration" style="border:0;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                         </a>
                        </td>
                       </tr>
                      </table>
                      <a class="price-module-image-link price-module-product-info" style="border:0;color:#222;font-weight:400;line-height:18px;margin:0;outline:0;padding:4px 4px 0 0;text-align:left;text-decoration:none;word-break:break-word">
                       Satin kaftan dress
                       <br/>
                       £44.99
                      </a>
                      <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td align="left" class="price-module-new-arrival-container price-module-mobile-width text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                         <a class="price-module-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                          New Arrival
                         </a>
                        </td>
                       </tr>
                      </table>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
            </div>
            <div class="standAloneProducts">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <div style="border:0;margin:0;outline:0;padding:0">
              </div>
              <div style="border:0;margin:0;outline:0;padding:0">
              </div>
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="stand-alone-table-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td style="border:0;margin:0;outline:0;padding:0">
                   <table border="0" cellpadding="0" cellspacing="0">
                    <tr>
                     <td>
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-mobile" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fe81182d2aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYyNiUyRmQxJTJGMjZkMTQ2ZDU4MDJjYmRhZTkzOThjMDliYTEwNWZhYmYwMzk0MDNjYi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B81eca48f%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ0NTI2Nn0:1riB12:9j_-8rKh-EOk-AKKQJVEfdE_QrknP9TuJt_7EszD2sY" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ0NjcxfQ:1riB12:PqTjQbqpaAykhhl5mhyT769vl44PkgbKE3B8hlLeg78" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F5750abc1aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZlYiUyRmQ2JTJGZWJkNmM4ZGMzNWUxYTMxZjAzYzRkNGRiNjEzMTgxNjA4NmNlZWIwOC5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B8a376f2a%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ0ODk1fQ:1riB12:o5DUPsLZFVcacvsZszogOZ02Av4d1KPciMoDCiy3x7E" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1MDExNX0:1riB12:Y0YPaP0z_kLrYI9o2DPp0tUG7IdgHK8mG-hsJo6Z7mM" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fcd0f7200aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYzNyUyRmYxJTJGMzdmMWVmN2VkOGViMTFmNjExZTU4MmY4OTI4ZDE2YjE0MDUwN2IwZi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B2336e834%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1MjY3OH0:1riB12:Ygja2zVFU9RDrN908RUrIv5CLlVkHxUd7Dq_jPou88o" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1NDY1Mn0:1riB12:ovgb40RJRWvLogyMLSvBnYHpuTr7_e3nB7YFsyvJ3y0" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Ff515ca52aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYzZSUyRjExJTJGM2UxMWVkYWYxMWE3MmI2NjRiYjU3Y2MxYThkNzZjZjAxNDU1NTk5NC5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B05a90a53%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1NzEzN30:1riB12:BMkUQTXuw4nZunEfwMTURTSgCqsb3tInTklXW8mIxY4" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1ODUyNH0:1riB12:e88qBEJbzwFbCAS6gh0txXjAlWCxZJo3nieqS0SdAdk" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ1OTc3OH0:1riB12:XospXH4pQiZ557i3DFZUET9DN_hIVn4DJhVR812uiOM" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ2MTA5fQ:1riB12:PDwtzJ7Wx-vfVDFLXfn-WIcGw2gXY91fPc9PvbAbS2M" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Scarf-collar blouse
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ2MjYyM30:1riB12:SrZp5kM6B30pWe_fiJ9BBqxP2Y0NWNELoHlo240NHyI" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Wide trousers
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ2Mzg5fQ:1riB12:k172ao9oqI5IcdyZfciPd6USS2vLzUPDciIcp76ks-I" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Textured kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ2NTY0OH0:1riB12:2G2Q6RQFAGxfMLNp4y5hnX53OECTvg4LOvezvUCKhEk" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Textured kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--[if !mso]><!-->
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-desktop" style="border:0;border-collapse:separate;border-spacing:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fe81182d2aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYyNiUyRmQxJTJGMjZkMTQ2ZDU4MDJjYmRhZTkzOThjMDliYTEwNWZhYmYwMzk0MDNjYi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B9652b354%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ2ODUxNH0:1riB12:qm1dcFnVGbASnCKcHxIsm5NL03shsBPOVYBGVvOT1AI" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ3MDM5fQ:1riB12:W931nceJbYXNwFuDUmoNTDOjnqgk6iGRZF_JzXfktvo" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F5750abc1aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZlYiUyRmQ2JTJGZWJkNmM4ZGMzNWUxYTMxZjAzYzRkNGRiNjEzMTgxNjA4NmNlZWIwOC5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Ba6da2829%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ3MjU5OH0:1riB12:yAkDD7I_lNns9pJ_0Yk26ASU8A6iGreKR0poLki1bEc" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ3NDQ1NX0:1riB12:g_u5rPHCsCkid76ZGrAqQtbV-EcCKDkayy-5IA7j6fw" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Scarf-collar blouse
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ3NTkzOH0:1riB12:ENgcOJBpraKH0lbjAoEGxVIlvu5HYLOR3HcOFJvH92Y" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Wide trousers
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--<![endif]-->
                      <!--[if !mso]><!-->
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-desktop" style="border:0;border-collapse:separate;border-spacing:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fcd0f7200aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYzNyUyRmYxJTJGMzdmMWVmN2VkOGViMTFmNjExZTU4MmY4OTI4ZDE2YjE0MDUwN2IwZi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B5d8b62fc%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ3ODY4N30:1riB12:lEja18X_gUk6V-INYtuMpbT3kwcbFXH1_SmMyQ3lf34" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4MTAwN30:1riB12:F0PB7DJpH0z0oHfAWETUGvRODBMuBLXEslLuQriz77Q" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Ff515ca52aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkYzZSUyRjExJTJGM2UxMWVkYWYxMWE3MmI2NjRiYjU3Y2MxYThkNzZjZjAxNDU1NTk5NC5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B9ef4c556%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4NDEyfQ:1riB12:fZRXqYce11EjxlHpsqf8Dhhm-_e6XIrYAC_wBmjr62s" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4NTM2NX0:1riB12:xjPFzGABNnCnA9BacHiIYWLZAscZ8gNn6ig72R4KaJ8" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Textured kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4NjUyNn0:1riB12:a-RTTvLoKXOZKlbg6kmvcG19kAu367aEmiyQqMLGDG0" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Textured kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £27.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--<![endif]-->
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
             <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
              <img alt="" class="static-margin" height="32" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4NzYyOH0:1riB12:skQP-ccDokbN767xSUmgMjIT-3P_mjJFFm9jTrxr0wI" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
             </div>
            </div>
            <div class="singleImage">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="single-image-no-margins-price-below-image-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td style="border:0;margin:0;outline:0;padding:0">
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="center" class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0">
                      <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                       <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                        <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-CPD-2-limited-edition-2024.jpeg%252F_jcr_content%252Frenditions%252Fcq5dam.web.1400.1400.jpeg%255D%2526set%253Dwidth%255B1400%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fdesktop.chain%255D%2526auth%253Dhash%255Bffbcf619%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ4OTc5NX0:1riB12:c5PaSV3qiWm5uePtdxtxEVhxOwQcQH0SPkDXm1Mo3iA" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="700"/>
                       </a>
                      </div>
                      <!--[if !mso]><!-->
                      <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                       <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                        <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fladies%252F6029b%252FFNP-6029B-CPD-2-limited-edition-2024.jpeg%252F_jcr_content%252Frenditions%252Fcq5dam.web.750.750.jpeg%255D%2526set%253Dwidth%255B654%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fmobile.chain%255D%2526auth%253Dhash%255B0650bd21%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ5MTY3Nn0:1riB12:Voam2ObhiPaxUJFZxAa5r64IKbqM4Ay9x-rjMgRWEZo" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </div>
                      <!--<![endif]-->
                     </td>
                    </tr>
                   </table>
                   <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                    <tr style="border:0;margin:0;outline:0;padding:0">
                     <td align="left" class="price-module-image-product-info text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:4px 0 24px">
                      <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td align="left" class="price-module-additional-attribute-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:4px 5px 0 0;padding-top:4px">
                         <a class="text-no-decoration" style="border:0;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                         </a>
                        </td>
                       </tr>
                      </table>
                      <a class="price-module-image-link price-module-product-info" style="border:0;color:#222;font-weight:400;line-height:18px;margin:0;outline:0;padding:4px 4px 0 0;text-align:left;text-decoration:none;word-break:break-word">
                       Scallop-edged tunic dress
                       <br/>
                       £54.99
                      </a>
                      <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td align="left" class="price-module-new-arrival-container price-module-mobile-width text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                         <a class="price-module-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                          New Arrival
                         </a>
                        </td>
                       </tr>
                      </table>
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
            </div>
            <div class="standAloneProducts">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <div style="border:0;margin:0;outline:0;padding:0">
              </div>
              <div style="border:0;margin:0;outline:0;padding:0">
              </div>
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td class="stand-alone-table-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td style="border:0;margin:0;outline:0;padding:0">
                   <table border="0" cellpadding="0" cellspacing="0">
                    <tr>
                     <td>
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-mobile" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F4a97b5afaHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZkMCUyRmE3JTJGZDBhNzkyZGZjYmUxNDJjYjNjOTA0MmU2MTliNWU2NTVhZGUyZWQyYS5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B418fba23%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ5Mzk5MX0:1riB12:JS55GqkNDa2Rvt_JZlqE5tWZgUOud_lMdz80CONCU0o" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ5NTE5NX0:1riB12:LHxeeZdIhydNFoqN_SvpdUFWAuALx4lIW05jjJOIDFw" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fc0c890adaHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkY4NCUyRjNiJTJGODQzYmVlZjRkMDUyYjY1ZDk4MWVhMTgxZmU4OGU0MTUxODE3MjI5Ni5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bd66ea6e2%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTQ5NzI0M30:1riB12:5giXxuJfffzywoXPGkPbmRvLRAO-rLBJ7arMl8niPZQ" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTQ5ODQ1Mn0:1riB12:CH50niPUhHIQwR5gRvPfbnLxaH4ydliS3n8SIv-6Jqs" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F2ac03565aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZkOCUyRmY4JTJGZDhmODkxYzg0YzQyYzJiMTk0MjE5YmEwYjFjNjgzYTllNzg2N2I0YS5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B7c5dfd89%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUwMTF9:1riB12:wnETtQ99DwSv4UdGik4xSKwDgXgtqiYfzzV6ngSKTas" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUwMjM1fQ:1riB12:laRDpjqZdRW02g8vQA1KxhTHGsJwzH1txTfsulGKiqA" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0">
                         <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F89f5a82baHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZlYSUyRmQ0JTJGZWFkNDQyMDc5ZTk5NWI4MzFjZjdhNDdhMmY2N2I2MmUzNWYzNTI0Zi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B344%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B2efe2bdc%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUwNDQ1OH0:1riB12:fAEOzD4vKHaI3-_sOzD3HJFAFAApuLbXQ9pmjtgCR9E" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="172"/>
                          </a>
                         </div>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUwNjQyNX0:1riB12:EkQqPCbURoLkERRRcwe7BBq3fZ4oWpSnaQk2FUNySzQ" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUwODE5NH0:1riB12:fhLJYuGivzWEIsAkjmt8eBMH-Cq_wTQHCzUcY5MS1uw" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUwOTQyNH0:1riB12:Fxi6MSYuZJRwHUaaO38ysVjWHuak7AK-RHiJPjdUmrA" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Voluminous maxi dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £54.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUxMDkzOH0:1riB12:FP6VZ0bxYEbuLErYQH2LcR7Ek_Y7VZtt6pFSMklYohY" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Satin kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £44.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUxMjM3OH0:1riB12:Wh_8kCS429XpHc7ehMfUpt-bnaXGMVBOB79-RpwqvNY" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Frill-trimmed kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £54.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUxNDI3fQ:1riB12:PNhFEXSeZHxmtb7x0PSnJv0HLJ_ZRjlxjKTQYaxMDHo" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="4"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Crêpe maxi dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £37.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--[if !mso]><!-->
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-desktop" style="border:0;border-collapse:separate;border-spacing:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F4a97b5afaHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZkMCUyRmE3JTJGZDBhNzkyZGZjYmUxNDJjYjNjOTA0MmU2MTliNWU2NTVhZGUyZWQyYS5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bb065bbf9%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUxNjYzNn0:1riB12:tLe0tx9zEsI-VkuuZfP5G3kgyoa1dUTynLRoz-47yM4" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUxNzkwNX0:1riB12:ij1z6G6YHirUbD1IVXn53n55DBs1gndMruXRf3hICTE" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252Fc0c890adaHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkY4NCUyRjNiJTJGODQzYmVlZjRkMDUyYjY1ZDk4MWVhMTgxZmU4OGU0MTUxODE3MjI5Ni5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bfc40d826%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUxOTk2Mn0:1riB12:XvakszVFnmL66Vy_VIds60rSs_x_74rKbaM-v9BpCmk" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUyMjgxfQ:1riB12:9JrZMC_ijtizKtQRvNw3QC6loiS-g91eBFadXxTD5yE" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Voluminous maxi dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £54.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUyNDgyNn0:1riB12:n_n4-Ee37YL1YtYjhVDpwJ3Wdr_c3MHkV1f-Va1E0Tk" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Satin kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £44.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--<![endif]-->
                      <!--[if !mso]><!-->
                      <table border="0" cellpadding="0" cellspacing="0" class="is-hidden-desktop" style="border:0;border-collapse:separate;border-spacing:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0" width="100%">
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F2ac03565aHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZkOCUyRmY4JTJGZDhmODkxYzg0YzQyYzJiMTk0MjE5YmEwYjFjNjgzYTllNzg2N2I0YS5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B6959f9e3%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUyNjkzOH0:1riB12:gyzYsE8Yb1MMOIv3X6GpRMrhZUwCIMzUfma_Pwx7MtY" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUyODEyM30:1riB12:hfCMT55R21hWUmqohpxsljhDE1QRmgdylv9XaW1nbzk" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="grid-spacer" style="border:0;font-size:0;line-height:0;margin:0;outline:0;padding:0" width="161">
                         <!--[if !mso]><!-->
                         <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcms%252Furl%252Fv1%252Fb64%252F89f5a82baHR0cHM6Ly9scDIuaG0uY29tL2htZ29lcHByb2Q_c2V0PXJlcyU1QmwlNUQlMkNxdWFsaXR5JTVCNzklNUQlMkNzb3VyY2UlNUIlMkZlYSUyRmQ0JTJGZWFkNDQyMDc5ZTk5NWI4MzFjZjdhNDdhMmY2N2I2MmUzNWYzNTI0Zi5qcGclNUQlMkNvcmlnaW4lNUJkYW0lNUQlMkNjYXRlZ29yeSU1QiU1RCUyQ3R5cGUlNUJMT09LQk9PSyU1RCUyQ2htdmVyJTVCMSU1RCUyNmNhbGwlM0R1cmwlNUJmaWxlJTNBJTJGcHJvZHVjdCUyRm1haW4lNUQ%255D%2526set%253Dwidth%255B322%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B6ecfd4e2%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUzMDIxfQ:1riB12:fgAaWc8ohZQvtHtZu7mITvK76-fvNMcAF_ka12uC8Uo" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                          </a>
                         </div>
                         <!--<![endif]-->
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUzMTQxNH0:1riB12:2UkcVt6fjeuLplzROZ8ppIEXJ55gNfCVTtWogKv24b4" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-additional-attribute-container text-regular" style="border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                       <tr style="border:0;margin:0;outline:0;padding:0">
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Frill-trimmed kaftan dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £54.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                        <td style="border:0;margin:0;outline:0;padding:0">
                         <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUzMjUyfQ:1riB12:daB97IV4ykmNw1wiFr4j-WaHN4H3Cu5jOvriPQGDDmw" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="5"/>
                        </td>
                        <td class="stand-alone-product-grid-info" style="border:0;margin:0;outline:0;padding:0;padding-bottom:33px" valign="top" width="148">
                         <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-name-container" style="border:0;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-name text-normal text-no-decoration" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             Crêpe maxi dress
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-price-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;line-height:20px;margin:0;outline:0;padding:0">
                            <a class="stand-alone-product-price text-no-decoration" style="border:0;color:#222;font-size:13px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none">
                             £37.99
                            </a>
                           </td>
                          </tr>
                          <tr style="border:0;margin:0;outline:0;padding:0">
                           <td align="left" class="stand-alone-product-new-arrival-container text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0;padding-top:4px">
                            <a class="stand-alone-product-new-arrival text-no-decoration" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;text-decoration:none">
                             New Arrival
                            </a>
                           </td>
                          </tr>
                         </table>
                        </td>
                       </tr>
                      </table>
                      <!--<![endif]-->
                     </td>
                    </tr>
                   </table>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
             <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
              <img alt="" class="static-margin" height="32" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUzMzczfQ:1riB12:XAHSCEf9hm1NWui4BiubbLzc3m8Njwij7lp1I_7GATM" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
             </div>
            </div>
            <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
             <img alt="" class="static-margin" height="32" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUzNTMxNH0:1riB12:F0yl6czJLlsh1-uurVefOa08GMiDmU0pLgJhLAKUQ4Y" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
            </div>
           </td>
          </tr>
         </table>
         <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
          <img alt="" class="static-margin" height="32" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTUzNjU5fQ:1riB12:QRbJNXmEU9Y50Bu9UXDczzs-HMn9LwnnUeZQT1y0p30" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
         </div>
        </div>
        <div class="customerRibbonContainer container parbase">
        </div>
        <div class="secondaryContainer container parbase">
         <table bgcolor="#FAF9F8" border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
          <tr style="border:0;margin:0;outline:0;padding:0">
           <th class="story-secondary-story-image" style="border:0;margin:0;outline:0;padding:0 40px">
            <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
             <tr style="border:0;margin:0;outline:0;padding:0">
              <td align="center" class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0">
               <div class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                 <img alt="" class="image" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fmen%252F3009-h2%252Fpreview%252FFNP-3009-h2-3x2-preview-w-secondary.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.1400.1400.jpeg%255D%2526set%253Dwidth%255B1240%255D%2526set%253DtextLength%255B400%255D%2526set%253DpositionX%255B64.03%255D%2526set%253DpositionY%255B64.53%255D%2526set%253DbrandName%255B%255D%2526set%253DproductName%255B%255D%2526set%253Dprice%255B%255D%2526set%253DredPrice%255B%255D%2526set%253DyellowPrice%255B%255D%2526set%253DyellowPriceText%255BMember%2520price%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fdesktop.chain%255D%2526auth%253Dhash%255B525d05ff%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTUzOTI1NX0:1riB12:kX1MAdpAhqk92fNMTIAuqTrFD9QuC7_1gtMM9WptbKI" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="620"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                 <img alt="" class="image image-mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252Fglobal_campaigns%252Fseason_09%252Fmen%252F3009-h2%252Fpreview%252FFNP-3009-h2-3x2-preview-w-secondary.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.750.750.jpeg%255D%2526set%253Dwidth%255B650%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fprice-module-image-v2%252Fmobile.chain%255D%2526auth%253Dhash%255B2a64ec86%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU0MTE4OX0:1riB12:ItJDLwoEuOWO9VfgkGZZFiTR2zXVaaKrZ7nCYq7Pp8U" style="border:none;display:block;height:auto;margin:0;max-width:700px;outline:0;padding:0"/>
                </a>
               </div>
               <!--<![endif]-->
              </td>
             </tr>
            </table>
           </th>
          </tr>
          <tr style="border:0;margin:0;outline:0;padding:0">
           <th class="story-text-block-wrapper" style="border:0;margin:0;outline:0;padding:26px 0 29px">
            <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
             <tr style="border:0;margin:0;outline:0;padding:0">
              <td style="border:0;margin:0;outline:0;padding:0">
               <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                <tr style="border:0;margin:0;outline:0;padding:0">
                 <td class="text-block-preamble-side-spacer" style="border:0;font-size:10px;line-height:10px;margin:0;outline:0;padding:0" width="100">
                 </td>
                 <td align="center" class="text-block-preamble text-block-preamble-text text-block-preamble-padding text-normal prevent-auto-links" style="-webkit-font-smoothing:antialiased;border:0;color:#222222;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;line-height:18px;margin:0;outline:0;padding:0;padding-bottom:8px;padding-top:12px" width="500">
                  H&amp;M and Heron Preston proudly present the debut collection for H2. Launching in selected stores and online 14th March 2024.
                 </td>
                 <td class="text-block-preamble-side-spacer" style="border:0;font-size:10px;line-height:10px;margin:0;outline:0;padding:0" width="100">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
            </table>
           </th>
          </tr>
          <tr style="border:0;margin:0;outline:0;padding:0">
           <th style="border:0;margin:0;outline:0;padding:0">
            <div class="is-hidden-mobile cta-links-container" style="border:0;font-size:0;margin:0;outline:0;padding:0 24px;text-align:center">
             <span class="cta-link-wrapper" style="border:0;display:inline-block;margin:0;outline:0;padding:0">
              <img alt="" height="41" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTU0MjM2NH0:1riB12:8GWIttnsI2n97C-0uFADWrOnb_18rAJk8_S-GlqZrj4" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="6"/>
              <a class="cta-link text-bold" style="-webkit-font-smoothing:antialiased;border:1px solid #222222;border-color:#222222;color:#222222;display:inline-block;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:700;line-height:20px;margin:0;outline:0;padding:12px;text-align:center;text-decoration:none" x-cq-linkchecker="skip">
               VIEW COLLECTION
              </a>
              <img alt="" height="41" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTU0NDU0OH0:1riB12:hws5VCSPj8u92zw8sUmi_Xy6MqF6EZmhSUrFCqN_rQ0" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="6"/>
             </span>
            </div>
            <!--[if !mso]><!-->
            <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
             <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
              <tr style="border:0;margin:0;outline:0;padding:0">
               <td align="center" class="cta-links-container" style="border:0;font-size:0;margin:0;outline:0;padding:0 24px">
                <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                 <tr style="border:0;margin:0;outline:0;padding:0">
                  <td align="center" class="cta-link-mobile-border" colspan="3" style="border:1px solid #222222;border-color:#222222;margin:0;outline:0;padding:12px 0" width="100%">
                   <a class="cta-link-mobile text-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222222;display:inline-block;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:700;line-height:20px;margin:0;outline:0;padding:0;text-align:center;text-decoration:none;width:100%" x-cq-linkchecker="skip">
                    VIEW COLLECTION
                   </a>
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
             </table>
            </div>
            <!--<![endif]-->
            <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
             <img alt="" class="cta-bottom-margin" height="40" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTU0NzMzOH0:1riB12:BOebmozoqjqMlkZuWVxiU1IngMRA_DMBpzW2-LzE_EY" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
            </div>
           </th>
          </tr>
         </table>
         <div class="image-wrapper" style="border:0;font-size:0;margin:0;outline:0;padding:0;text-align:center">
          <img alt="" class="static-margin" height="32" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTU0OTF9:1riB12:1EMv3dZIE4PY6A7USPaEuVdF_8MY4nMKdK5JbGQJMow" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="1"/>
         </div>
        </div>
        <div class="secondaryContainer container parbase">
        </div>
        <div class="secondaryContainer container parbase">
        </div>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <tr style="border:0;margin:0;outline:0;padding:0">
    <td align="center" style="border:0;margin:0;outline:0;padding:0" width="100%">
     <table align="center" border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
      <tr style="border:0;margin:0;outline:0;padding:0">
       <td align="center" class="email-layout" style="border:0;margin:0;min-width:700px;outline:0;padding:0" width="100%">
        <table border="0" cellpadding="0" cellspacing="0" class="footer" style="background:#e4e4e4;border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0;text-align:center" width="100%">
         <tr style="border:0;margin:0;outline:0;padding:0">
          <td align="center" style="border:0;margin:0;outline:0;padding:0">
           <table border="0" cellpadding="0" cellspacing="0" class="footer-table" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="700px !important">
            <tr style="border:0;margin:0;outline:0;padding:0">
             <td align="center" style="border:0;margin:0;outline:0;padding:0">
              <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
               <tr class="department-title-wrapper" style="border:0;margin:0;outline:0;padding:0">
                <td align="center" class="department-title text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSansSemiBold,Arial,sans-serif;font-size:36px;font-weight:600;line-height:42px;margin:0;outline:0;padding:96px 0 48px">
                 Shop by
                </td>
               </tr>
               <tr class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                <td class="departments-wrapper" style="border:0;margin:0;outline:0;padding:0;padding-bottom:24px">
                 <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="68">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Women" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Choose-Women-1400x1400.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B97ff306f%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU1MTc4fQ:1riB12:4EnSO8xNURmFlbom-YVW-SShCAJRhBTexY3ggNYu0aw" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Women
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Men" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Men-1400x14002.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B64344450%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU1NDkxN30:1riB12:LVYf21DWCSmX8JFo6Eull5c8lcTqaG9Wr1ifndEIINY" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Men
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Kids" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Kids-1400x14004.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B63a72aac%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU1NzQxOH0:1riB12:a-c78_d4sf2D15ZOrQUqvLe34iyGNG41cT_CQEpKDDA" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Kids
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Baby" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252FFN%2520baby-choose-department-Baby.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bf367cdaa%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU1OTY2Nn0:1riB12:qPeUIKrDE8dl_vJpp498vP4Cx5gOBD63KST1SqHvXuM" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Baby
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="68">
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="68">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Sports" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252Fchoose-department-Move.png%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B40094310%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU2MjIxfQ:1riB12:JXMAoX9cs9zk3UITI5s78WljCVhCcjJo6K-QjPii2Hg" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Sports
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="H&amp;M HOME" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F01.Home_Fashion-News-Choose-Deptartment-1400x1400_4.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B3ba562ed%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU2NDA2NX0:1riB12:yf7iluu5nt1O0o2u5X_mFrl6jSecvPA2cavFml24UIc" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           H&amp;M HOME
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Beauty" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F01.00-Fashion-News-Choose-Deptartment-Beauty-.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bfce67a5e%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU2NjQ2M30:1riB12:JqZwCciEfGa0GKooVBMhQOdwx48r0XF3kdrEt5UhBm4" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Beauty
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="133">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="DESKTOP IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Sustainability" class="department-image image-with-height" height="133" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fjan-2022%252FDepartment-bild-sustainability1x1.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bd58cdb61%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU2ODkyNH0:1riB12:50j5ukNB25a29o6hqIiBwQTnw2I8TGWAzwWNyQEbHE8" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="133"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Sustainability
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="8">
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="68">
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <!--[if !mso]><!-->
               <tr class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                <td class="departments-wrapper" style="border:0;margin:0;outline:0;padding:0;padding-bottom:24px">
                 <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Women" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Choose-Women-1400x1400.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B97ff306f%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3MDc4Nn0:1riB12:_qdG20FnLRKDNVi1MG3pvGEZ_1DJn3dAY6_gFHNj2Ew" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Women
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Men" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Men-1400x14002.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B64344450%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3MjQwNX0:1riB12:nmFW2YFinL4ohmNXL-STLurUWI-UJ2Xndf_ZzdCoqgI" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Men
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Kids" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F-1.00-Fashion-News-Kids-1400x14004.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B63a72aac%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3NDAwMn0:1riB12:kSLunLr94Qc6hRt0Fu1oIowLfqipw-nnZC32gdIn9k8" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Kids
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Baby" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252FFN%2520baby-choose-department-Baby.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bf367cdaa%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3NTU2Mn0:1riB12:smV4eKuBzaKCYecfGFG3DCoFomOt_oVz7H7YvCDjPYw" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Baby
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Sports" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252Fchoose-department-Move.png%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B40094310%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3NzAzM30:1riB12:kHY-Xpp-ZgNQF6ggGc9jAHL-YzSnVgKuVSuC5kHymfI" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Sports
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="H&amp;M HOME" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F01.Home_Fashion-News-Choose-Deptartment-1400x1400_4.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255B3ba562ed%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU3ODgzNX0:1riB12:e_9iMNUpjamB0LF5K7wPoPkldV--Gw6xEQoaGlefxY8" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           H&amp;M HOME
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="63">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Beauty" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fss24%252F01.00-Fashion-News-Choose-Deptartment-Beauty-.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bfce67a5e%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU4MDUzNX0:1riB12:dMpHX1EgbEh-_WlZ2y7sjI809K_4Cb8dZb_Nsy6M3dA" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Beauty
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td style="border:0;margin:0;outline:0;padding:0" width="122">
                       <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0">
                          <a _label="MOBILE IMAGE" style="border:0;font-weight:400;margin:0;outline:0;padding:0">
                           <img alt="Sustainability" class="department-image image-with-height" height="122" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253DimageUrl%255Bhttps%253A%252F%252Faemcomm.hm.com%252Fcontent%252Fdam%252Fhm%252FSeasonal%2520Images%2520Email%252Fjan-2022%252FDepartment-bild-sustainability1x1.jpg%252F_jcr_content%252Frenditions%252Fcq5dam.web.250.250.jpeg%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Fcommon%252Fimage.chain%255D%2526auth%253Dhash%255Bd58cdb61%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU4MjMxNH0:1riB12:NzYeF_OE6H4EDMIa7y701KfB2Of2brD_kdK4Exl8Lrg" style="border:none;border-radius:4px;margin:0;max-width:700px;outline:0;padding:0" width="122"/>
                          </a>
                         </td>
                        </tr>
                        <tr style="border:0;margin:0;outline:0;padding:0">
                         <td align="center" class="department-link-container" style="border:0;margin:0;outline:0;padding:8px 0 32px">
                          <a class="department-link text-normal" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSans,Arial,sans-serif;font-size:16px;font-weight:400;line-height:20px;margin:0;outline:0;padding:0;text-decoration:none" x-cq-linkchecker="skip">
                           Sustainability
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="4">
                      </td>
                      <td class="spacer" style="border:0;font-size:0;line-height:1px;margin:0;outline:0;padding:0" width="63">
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <!--<![endif]-->
              </table>
             </td>
            </tr>
            <tr style="border:0;margin:0;outline:0;padding:0">
             <td style="border:0;margin:0;outline:0;padding:0">
              <table align="center" border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
               <tr style="border:0;margin:0;outline:0;padding:0">
                <td align="center" class="footer-layout" style="background:#e4e4e4;border:0;color:#222;margin:0;outline:0;padding:40px 0" width="700">
                 <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                  <tr class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                   <td class="footer-buttons-wrapper" style="border:0;margin:0;outline:0;padding:0 70px">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-headline text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSansSemiBold,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:0;outline:0;padding:0;padding-bottom:15px" width="210">
                       Download app
                      </td>
                      <td align="center" class="footer-headline text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSansSemiBold,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:0;outline:0;padding:0;padding-bottom:15px" width="210">
                       Stores &amp; Service
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr class="is-hidden-mobile" style="border:0;margin:0;outline:0;padding:0">
                   <td class="footer-buttons-wrapper" style="border:0;margin:0;outline:0;padding:0 70px">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0" width="210">
                       <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                        <img alt="Android" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BAndroid%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton.chain%255D%2526auth%253Dhash%255Ba129dee3%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU4NDUyMX0:1riB12:_niYAXBBoGE2pBsLCSnTz0Z5r7oJxmrdUi9KgIyqmlk" style="border:none;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </td>
                      <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0" width="210">
                       <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                        <img alt="Find store" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BFind%2520store%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton.chain%255D%2526auth%253Dhash%255Bb515fdf4%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU4NjkzMn0:1riB12:R2e8AT3X0UvIaMn6Wtwg2p6QrAUIXspmGGPRKqErSHY" style="border:none;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </td>
                     </tr>
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0" width="210">
                       <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                        <img alt="iOS" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BiOS%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton.chain%255D%2526auth%253Dhash%255Bb8982655%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU4ODkyNX0:1riB12:J_dukTNHJZ5pK4ufUWpBE1IKnzKacNJpR8jErTIJd6E" style="border:none;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </td>
                      <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0" width="210">
                       <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                        <img alt="Contact" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BContact%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton.chain%255D%2526auth%253Dhash%255Bbdc73c4c%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU5MDYzfQ:1riB12:aMHlgPGE2JNqOBKKC7yzzwSi39xWbthw6ZZadPdGUB8" style="border:none;margin:0;max-width:700px;outline:0;padding:0"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <!--[if !mso]><!-->
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" style="border:0;margin:0;outline:0;padding:0">
                    <div class="is-hidden-desktop" style="border:0;display:none;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                     <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                      <tr style="border:0;margin:0;outline:0;padding:0">
                       <td align="center" style="border:0;margin:0;outline:0;padding:0">
                        <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-headline text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSansSemiBold,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:0;outline:0;padding:0;padding-bottom:15px">
                           Download app
                          </td>
                         </tr>
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0">
                           <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                            <img alt="Android" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BAndroid%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton-mobile.chain%255D%2526auth%253Dhash%255Bbe7269dd%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU5MjQ5NH0:1riB12:CSg0adG7vj7qSZC5uDzb3FwJRRxf4PJzvSCiQqilYyI" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="375"/>
                           </a>
                          </td>
                         </tr>
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0">
                           <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                            <img alt="iOS" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BiOS%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton-mobile.chain%255D%2526auth%253Dhash%255B5e851ae0%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU5NDc1N30:1riB12:WkuaHpbVT0ww9Z4XAa07Nl3jggfLy0XiDK0gU7PFAZ0" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="375"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr style="border:0;margin:0;outline:0;padding:0">
                       <td align="center" style="border:0;margin:0;outline:0;padding:0">
                        <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-headline text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;color:#222;font-family:HMSansSemiBold,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:0;outline:0;padding:0;padding-bottom:15px">
                           Stores &amp; Service
                          </td>
                         </tr>
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0">
                           <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                            <img alt="Find store" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BFind%2520store%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton-mobile.chain%255D%2526auth%253Dhash%255Bfebde7c1%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU5NjU2OX0:1riB12:7LQiVujRa4jCoK0U8_9zlRo5GXCETUKw0VluAg6f2Ps" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="375"/>
                           </a>
                          </td>
                         </tr>
                         <tr style="border:0;margin:0;outline:0;padding:0">
                          <td align="center" class="footer-button text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:13px;font-weight:400;margin:0;outline:0;padding:7px 0">
                           <a style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                            <img alt="Contact" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Flpe.hm.com%252Fhmoces%253Fset%253Dlocale%255Ben_gb%255D%2526set%253DbuttonText%255BContact%255D%2526set%253Dheight%255B24%255D%2526set%253DtextColor%255B%2523222222%255D%2526call%253Durl%255Bhttps%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fimage-chains%252F1.1.470%252Ffooter%252Fbutton-mobile.chain%255D%2526auth%253Dhash%255B13e1619e%255D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZscGUuaG0uY29tJSIsInRpbWUiOjE3MDk4MDc0MjAuNTU5ODAyOH0:1riB12:44e6NAD51QKAb7n9mt9tcsAI90peZUfGcFwc29by2yw" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="375"/>
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </div>
                   </td>
                  </tr>
                  <!--<![endif]-->
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="footer-hm-logo-wrapper" style="border:0;margin:0;outline:0;padding:0;padding-bottom:30px;padding-top:39px">
                    <img alt="H&amp;M" height="30" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Flogo%252Fbrands%252Fblack%252FHM_Black.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTU5OTE0NH0:1riB12:mCIjgfU3d9q_SF_dPnu3LLEcQN-Z_kazf6AW-wlXt_s" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="46"/>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="footer-social-media-icons-wrapper" style="border:0;margin:0;outline:0;padding:0;padding-bottom:29px">
                    <a _label="SOCIAL MEDIA" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                     <img alt="facebook" class="footer-icon" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fsocial%252Ffacebook-box.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwMTQ0Mn0:1riB12:HKHlFt9g1d_d_pNnoi5sfEKEWqMGiDJYf5bTqZXuxdo" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="29"/>
                    </a>
                    <img alt="" class="footer-social-media-spacer" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwMzI0N30:1riB12:Rj0Vdc-ogOgGxQrIhuE5gBGXSKrzmvRcBOz1cFHN47Q" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="55"/>
                    <a _label="SOCIAL MEDIA" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                     <img alt="instagram" class="footer-icon" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fsocial%252Finstagram-box.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwNDQyN30:1riB12:nkCa4zOzxJGzJl6e2sctKo4LqIa9-4hSSm-hVcje-qg" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="29"/>
                    </a>
                    <img alt="" class="footer-social-media-spacer" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwNTUxNn0:1riB12:UxPCDBZhj9wdNP7CPrWzTJvfP0NBLcg3NmiNrjLxRtU" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="55"/>
                    <a _label="SOCIAL MEDIA" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                     <img alt="youtube" class="footer-icon" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fsocial%252Fyoutube-box.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwNjU5Mn0:1riB12:YCNZHsR7BhkHR2VM7lz7trIWqWMPgQGxFFk7E7j05hM" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="29"/>
                    </a>
                    <img alt="" class="footer-social-media-spacer" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwNzY1fQ:1riB12:Tug-vepIOkFPwnqhKcUgT4uc107mXIa-UwSX6u5Iz0I" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="55"/>
                    <a _label="SOCIAL MEDIA" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                     <img alt="pinterest" class="footer-icon" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fsocial%252Fpinterest-box.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYwOTA3OH0:1riB12:9cF0RjiqcjBLLYEsZ1t0c89pn3nVZQdJXfRF-UadccA" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="29"/>
                    </a>
                    <img alt="" class="footer-social-media-spacer" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fspacer.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYxMDM3NX0:1riB12:Rw3a4OlWie5hTCvxHDSgo7U6l7DPtwMftTptQJIaAng" style="border:0;margin:0;max-width:700px;outline:0;padding:0" width="55"/>
                    <a _label="SOCIAL MEDIA" style="border:0;font-weight:400;margin:0;outline:0;padding:0" x-cq-linkchecker="skip">
                     <img alt="tiktok" class="footer-icon" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fs1-cdn.hm.com%252Fglobal%252Fassets%252F1.0.161%252Fimages%252Fsocial%252Ftiktok-box.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMS1jZG4uaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYxMTQ3NX0:1riB12:KkG7GcCWRLfwOUl5DqQO6p3cAtb2EAS4ohRyIzERaSk" style="border:none;margin:0;max-width:700px;outline:0;padding:0" width="29"/>
                    </a>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="footer-member-id-wrapper footer-member-id-text prevent-auto-links" style="border:0;font-size:13px;margin:0;outline:0;padding:0;padding-bottom:27px;padding-top:2px">
                    <span class="text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSansSemiBold,Arial,sans-serif;font-weight:600;margin:0;outline:0;padding:0">
                     Member ID:
                    </span>
                    <span class="text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-weight:400;margin:0;outline:0;padding:0">
                     103610227384823
                    </span>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td class="footer-toc-wrapper" style="border:0;margin:0;outline:0;padding:0 80px 20px 80px">
                    <table border="0" cellpadding="0" cellspacing="0" style="border:0;border-collapse:separate;border-spacing:0;margin:0;outline:0;padding:0" width="100%">
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-toc-text text-normal prevent-auto-links" style="-webkit-font-smoothing:antialiased;border:0;color:#707070;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:16px;margin:0;outline:0;padding:0;padding-bottom:16px">
                       <p>
                        H&amp;M member offers: Find the full terms and conditions for all offers in the H&amp;M member area at hm.com or in the H&amp;M app.
                       </p>
                      </td>
                     </tr>
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-toc-text text-normal prevent-auto-links prevent-paragraph-margins" style="-webkit-font-smoothing:antialiased;border:0;color:#707070;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:16px;margin:0;outline:0;padding:0;padding-bottom:16px">
                       <p>
                        H&amp;M is authorized and regulated by the Financial Conduct Authority, Pay later by Klarna.
                        <br/>
                        <br/>
                        May be subject to printing errors, changes, price changes, delivery delays and limited availability of stock.
                       </p>
                      </td>
                     </tr>
                     <tr style="border:0;margin:0;outline:0;padding:0">
                      <td align="center" class="footer-toc-text text-normal prevent-auto-links prevent-paragraph-margins" style="-webkit-font-smoothing:antialiased;border:0;color:#707070;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:16px;margin:0;outline:0;padding:0;padding-bottom:16px">
                       <p>
                        You are receiving this email because you are signed up to receive H&amp;M promotional communications. This message was sent by H &amp; M Hennes &amp; Mauritz GBC AB, Mäster Samuelsgatan 46, 106 38 Stockholm, Sweden.
                       </p>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="footer-unsubscribe-wrapper footer-unsubscribe-text text-semi-bold" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSansSemiBold,Arial,sans-serif;font-size:13px;font-weight:600;margin:0;outline:0;padding:0;padding-bottom:20px">
                    <a _type="optout" class="footer-unsubscribe-link-text" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;padding-bottom:1px;text-decoration:underline" x-cq-linkchecker="skip">
                     Unsubscribe
                    </a>
                   </td>
                  </tr>
                  <tr style="border:0;margin:0;outline:0;padding:0">
                   <td align="center" class="footer-view-in-browser text-normal" style="-webkit-font-smoothing:antialiased;border:0;font-family:HMSans,Arial,sans-serif;font-size:11px;font-weight:400;line-height:14px;margin:0;outline:0;padding:0">
                    <span class="is-hidden" style="border:0;display:none;line-height:0px;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                    </span>
                    <a class="footer-view-in-browser-link" style="border:0;color:#222;font-weight:400;margin:0;outline:0;padding:0;padding-bottom:1px;text-decoration:underline" x-cq-linkchecker="skip">
                     View in Browser
                    </a>
                    <span class="is-hidden" style="border:0;display:none;line-height:0px;margin:0;max-height:0;mso-hide:all;outline:0;overflow:hidden;padding:0">
                    </span>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <img alt="" height="0" src="https://inboxflows.com/_/image/http%253A%252F%252Ft.email.hm.com%252Fr%252F%253Fid%253Dhe34ea0f4%252Cbfddc254%252C1/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnQuZW1haWwuaG0uYyIsInRpbWUiOjE3MDk4MDc0MjAuNTYxMjY4OH0:1riB12:2e5Ljcpn6-4i-MgEfuzLXu5wV8vC4UYk8GlUJ_0zjXw" width="0"/>
 </body>
</html>