It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://momdaughts.ae

  1. <!doctype html>
  2. <html class="js" lang="en">
  3.  <head>
  4.  
  5. <style>
  6.  #redirect-popup {
  7.    position: fixed;
  8.    inset: 0;
  9.    z-index: 1000;
  10.    display: flex;
  11.    align-items: center;
  12.    justify-content: center;
  13.    background: rgba(0, 0, 0, 0.5);
  14.    backdrop-filter: blur(5px);
  15.    font-family: Arial, sans-serif;
  16.  }
  17.  
  18.  #redirect-box {
  19.    background: white;
  20.    padding: 24px;
  21.    border-radius: 12px;
  22.    text-align: center;
  23.    width: 90%;
  24.    max-width: 400px;
  25.    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  26.  }
  27.  
  28.  #redirect-title {
  29.    font-size: 22px;
  30.    font-weight: bold;
  31.    color: #2c2a6b;
  32.    margin-bottom: 12px;
  33.  }
  34.  
  35.  #redirect-message {
  36.    color: #333;
  37.    font-size: 16px;
  38.    margin-bottom: 16px;
  39.  }
  40.  
  41.  .progress-bar {
  42.    height: 4px;
  43.    width: 100%;
  44.    background: #eee;
  45.    border-radius: 2px;
  46.    overflow: hidden;
  47.    margin-bottom: 16px;
  48.  }
  49.  
  50.  .progress-fill {
  51.    height: 100%;
  52.    background: #2c2a6b;
  53.    width: 100%;
  54.    transition: width 3s linear;
  55.  }
  56.  
  57.  .btn-container {
  58.    display: flex;
  59.    justify-content: center;
  60.    gap: 12px;
  61.  }
  62.  
  63.  .btn {
  64.    padding: 10px 16px;
  65.    border: none;
  66.    border-radius: 5px;
  67.    font-size: 14px;
  68.    cursor: pointer;
  69.    transition: 0.3s ease-in-out;
  70.  }
  71.  
  72.  .btn-primary {
  73.    background: #2c2a6b;
  74.    color: white;
  75.  }
  76.  
  77.  .btn-secondary {
  78.    background: transparent;
  79.    color: #2c2a6b;
  80.    border: 1px solid #2c2a6b;
  81.  }
  82.  
  83.  .btn:hover {
  84.    opacity: 0.8;
  85.  }
  86.  
  87.  .loader {
  88.    border: 3px solid #f3f3f3;
  89.    border-top: 3px solid #2c2a6b;
  90.    border-radius: 50%;
  91.    width: 30px;
  92.    height: 30px;
  93.    animation: spin 1s linear infinite;
  94.    margin: 20px auto;
  95.  }
  96.  
  97.  @keyframes spin {
  98.    0% { transform: rotate(0deg); }
  99.    100% { transform: rotate(360deg); }
  100.  }
  101. </style>
  102.  
  103. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  104. <script>
  105.  $(document).ready(function () {
  106.    if (!window.location.href.includes("momdaughts.com")) {
  107.      let lastVisit = localStorage.getItem("lastVisit");
  108.      let currentTime = new Date().getTime();
  109.      
  110.      // If last visit was within 24 hours, do nothing
  111.      if (lastVisit && currentTime - lastVisit < 24 * 60 * 60 * 1000) {
  112.        return;
  113.      }
  114.  
  115.      
  116.      fetch("https://ipinfo.io/json?token=039f7a53d698ab")
  117.        .then(response => response.json())
  118.        .then(data => {
  119.          hideLoader();
  120.          if (data.country === "PK") {
  121.            showRedirectPopup();
  122.          }
  123.        })
  124.        .catch(error => {
  125.          console.error("Error fetching IP location:", error);
  126.          hideLoader();
  127.        });
  128.    }
  129.  
  130.    function showLoader() {
  131.      $("body").append(`
  132.        <div id="redirect-popup">
  133.          <div id="redirect-box">
  134.            <div class="loader"></div>
  135.            <p>Checking your location...</p>
  136.          </div>
  137.        </div>
  138.      `);
  139.    }
  140.  
  141.    function hideLoader() {
  142.      $("#redirect-popup").remove();
  143.    }
  144.  
  145.    function showRedirectPopup() {
  146.      $("body").append(`
  147.        <div id="redirect-popup">
  148.          <div id="redirect-box">
  149.            <h2 id="redirect-title">Welcome to MomDaughts</h2>
  150.            <p id="redirect-message">We noticed you're accessing from Pakistan. You will be redirected to momdaughts.com in <span id="countdown">3</span> seconds.</p>
  151.            <div class="progress-bar">
  152.              <div class="progress-fill"></div>
  153.            </div>
  154.            <div class="btn-container">
  155.              <button id="stay-here" class="btn btn-secondary">Stay Here</button>
  156.              <button id="go-now" class="btn btn-primary">Go Now</button>
  157.            </div>
  158.          </div>
  159.        </div>
  160.      `);
  161.  
  162.      $("#go-now").click(() => {
  163.        localStorage.setItem("lastVisit", new Date().getTime()); // Save visit time
  164.        window.location.href = "https://momdaughts.com";
  165.      });
  166.  
  167.      $("#stay-here").click(() => {
  168.        localStorage.setItem("lastVisit", new Date().getTime()); // Save visit time
  169.        removePopup();
  170.      });
  171.  
  172.      startCountdown();
  173.    }
  174.  
  175.    function startCountdown() {
  176.      let countdown = 3;
  177.      $(".progress-fill").css("width", "0%");
  178.      
  179.      let countdownInterval = setInterval(() => {
  180.        countdown--;
  181.        $("#countdown").text(countdown);
  182.        $(".progress-fill").css("width", `${(3 - countdown) / 3 * 100}%`);
  183.  
  184.        if (countdown <= 0) {
  185.          clearInterval(countdownInterval);
  186.          localStorage.setItem("lastVisit", new Date().getTime()); // Save visit time
  187.          window.location.href = "https://momdaughts.com";
  188.        }
  189.      }, 1000);
  190.    }
  191.  
  192.    function removePopup() {
  193.      $("#redirect-popup").remove();
  194.    }
  195.  });
  196. </script>
  197.  
  198.  
  199.  
  200.    
  201. <!-- BEAE-GLOBAL-FONT -->
  202.  
  203. <!-- END BEAE-GLOBAL-FONT -->
  204. <!-- BEAE-HEADER -->
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/beae.base.min.css?v=30248973878737945191736691368" rel="stylesheet" type="text/css" media="all" />
  211.  
  212.  
  213.      
  214.  
  215.      
  216.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/beae.base.min.js?v=16312600615427942761736691369" defer="defer"></script>
  217.  <script>
  218.    window.BEAE_HELPER = {
  219.        routes: {
  220.            cart_url: "/cart",
  221.            root_url: "/"
  222.        },
  223.        lang: "en",
  224.        available_lang: {"shop_locale":{"locale":"en","enabled":true,"primary":true,"published":true}}
  225.    };
  226.  </script><!-- END BEAE-HEADER -->
  227. <!-- Google Tag Manager -->
  228. <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  229. new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  230. j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  231. 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  232. })(window,document,'script','dataLayer','GTM-NQXRXMZ9');</script>
  233. <!-- End Google Tag Manager -->
  234.    
  235.    <meta charset="utf-8">
  236.    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  237.    <meta name="viewport" content="width=device-width,initial-scale=1">
  238.    <meta name="theme-color" content="">
  239.    <link rel="canonical" href="https://momdaughts.ae/"><link rel="icon" type="image/png" href="//momdaughts.ae/cdn/shop/files/logo_alt_without_textnobg_4500x4500_aa2b9821-9f3f-4a9d-80f2-677f5d7a06b1.png?crop=center&height=32&v=1736422436&width=32"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><title>
  240.      MomDaughts UAE – Shop Menstrual Cups, Breast Pumps &amp; Self-Care
  241. </title>
  242.  
  243.    
  244.      <meta name="description" content="Find premium menstrual cups, breast pumps &amp; IPL hair removers in UAE. Safe, comfortable &amp; affordable personal care at MomDaughts UAE!">
  245.    
  246.  
  247.    
  248.  
  249. <meta property="og:site_name" content="MomDaughts UAE">
  250. <meta property="og:url" content="https://momdaughts.ae/">
  251. <meta property="og:title" content="MomDaughts UAE – Shop Menstrual Cups, Breast Pumps &amp; Self-Care">
  252. <meta property="og:type" content="website">
  253. <meta property="og:description" content="Find premium menstrual cups, breast pumps &amp; IPL hair removers in UAE. Safe, comfortable &amp; affordable personal care at MomDaughts UAE!"><meta property="og:image" content="http://momdaughts.ae/cdn/shop/files/410985408_369222552427763_5984429743974491025_n.jpg?v=1737207627">
  254.  <meta property="og:image:secure_url" content="https://momdaughts.ae/cdn/shop/files/410985408_369222552427763_5984429743974491025_n.jpg?v=1737207627">
  255.  <meta property="og:image:width" content="1080">
  256.  <meta property="og:image:height" content="1080"><meta name="twitter:site" content="@momdaughts"><meta name="twitter:card" content="summary_large_image">
  257. <meta name="twitter:title" content="MomDaughts UAE – Shop Menstrual Cups, Breast Pumps &amp; Self-Care">
  258. <meta name="twitter:description" content="Find premium menstrual cups, breast pumps &amp; IPL hair removers in UAE. Safe, comfortable &amp; affordable personal care at MomDaughts UAE!">
  259.  
  260.  
  261.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/constants.js?v=132983761750457495441736691106" defer="defer"></script>
  262.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/pubsub.js?v=158357773527763999511736691107" defer="defer"></script>
  263.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/global.js?v=88558128918567037191736691106" defer="defer"></script>
  264.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/details-disclosure.js?v=13653116266235556501736691106" defer="defer"></script>
  265.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/details-modal.js?v=25581673532751508451736691106" defer="defer"></script>
  266.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/search-form.js?v=133129549252120666541736691107" defer="defer"></script><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="IlX6Zw-WKfZgS5Ohm7Wi44hNST_GRwXF_w4aNr3yZ0E">
  267. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/64606339150/digital_wallets/dialog">
  268. <script async="async" src="/checkouts/internal/preloads.js?locale=en-AE"></script>
  269. <script id="shopify-features" type="application/json">{"accessToken":"02bcab1467273ab10d7b7a53136c2629","betas":["rich-media-storefront-analytics"],"domain":"momdaughts.ae","predictiveSearch":true,"shopId":64606339150,"smart_payment_buttons_url":"https:\/\/momdaughts.ae\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/momdaughts.ae\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
  270. <script>var Shopify = Shopify || {};
  271. Shopify.shop = "nxncvn-hf.myshopify.com";
  272. Shopify.locale = "en";
  273. Shopify.currency = {"active":"AED","rate":"1.0"};
  274. Shopify.country = "AE";
  275. Shopify.theme = {"name":"Sense Main","id":135963705422,"schema_name":"Sense","schema_version":"15.1.0","theme_store_id":null,"role":"main"};
  276. Shopify.theme.handle = "null";
  277. Shopify.theme.style = {"id":null,"handle":null};
  278. Shopify.cdnHost = "momdaughts.ae/cdn";
  279. Shopify.routes = Shopify.routes || {};
  280. Shopify.routes.root = "/";</script>
  281. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  282. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  283. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  284. <script>(function() {
  285.  function asyncLoad() {
  286.    var urls = ["https:\/\/cdn1.judge.me\/assets\/installed.js?shop=nxncvn-hf.myshopify.com","https:\/\/cdn.hextom.com\/js\/eventpromotionbar.js?shop=nxncvn-hf.myshopify.com"];
  287.    for (var i = 0; i < urls.length; i++) {
  288.      var s = document.createElement('script');
  289.      s.type = 'text/javascript';
  290.      s.async = true;
  291.      s.src = urls[i];
  292.      var x = document.getElementsByTagName('script')[0];
  293.      x.parentNode.insertBefore(s, x);
  294.    }
  295.  };
  296.  if(window.attachEvent) {
  297.    window.attachEvent('onload', asyncLoad);
  298.  } else {
  299.    window.addEventListener('load', asyncLoad, false);
  300.  }
  301. })();</script>
  302. <script id="__st">var __st={"a":64606339150,"offset":14400,"reqid":"b6f95664-a862-4ebc-938f-b8be1f34fcc0-1742145407","pageurl":"momdaughts.ae\/","u":"92fe552d5115","p":"home"};</script>
  303. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  304. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
  305. <script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//momdaughts.ae/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  306. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://momdaughts.ae/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  307. </script>
  308. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  309.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  310. </script>
  311. <script>
  312.  function portableWalletsCleanup(e){e&&e.src&&console.error("Failed to load portable wallets script "+e.src);var t=document.querySelectorAll("shopify-accelerated-checkout .shopify-payment-button__skeleton, shopify-accelerated-checkout-cart .wallet-cart-button__skeleton"),e=document.getElementById("shopify-buyer-consent");for(let e=0;e<t.length;e++)t[e].remove();e&&e.remove()}function portableWalletsNotLoadedAsModule(e){e instanceof ErrorEvent&&"string"==typeof e.message&&e.message.includes("import.meta")&&"string"==typeof e.filename&&e.filename.includes("portable-wallets")&&(window.removeEventListener("error",portableWalletsNotLoadedAsModule),window.Shopify.PaymentButton.failedToLoad=e,"loading"===document.readyState?document.addEventListener("DOMContentLoaded",window.Shopify.PaymentButton.init):window.Shopify.PaymentButton.init())}window.addEventListener("error",portableWalletsNotLoadedAsModule);
  313. </script>
  314.  
  315. <script type="module" src="https://momdaughts.ae/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js" onError="portableWalletsCleanup(this)" crossorigin="anonymous"></script>
  316. <script nomodule>
  317.  document.addEventListener("DOMContentLoaded", portableWalletsCleanup);
  318. </script>
  319.  
  320. <script id="sections-script" data-sections="header" defer="defer" src="//momdaughts.ae/cdn/shop/t/4/compiled_assets/scripts.js?455"></script>
  321. <link rel="stylesheet" media="screen" href="https://momdaughts.ae/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  322.  
  323. <style id="shopify-accelerated-checkout-cart">
  324.        #shopify-buyer-consent {
  325.  margin-top: 1em;
  326.  display: inline-block;
  327.  width: 100%;
  328. }
  329.  
  330. #shopify-buyer-consent.hidden {
  331.  display: none;
  332. }
  333.  
  334. #shopify-subscription-policy-button {
  335.  background: none;
  336.  border: none;
  337.  padding: 0;
  338.  text-decoration: underline;
  339.  font-size: inherit;
  340.  cursor: pointer;
  341. }
  342.  
  343. #shopify-subscription-policy-button::before {
  344.  box-shadow: none;
  345. }
  346.  
  347.      </style>
  348. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  349.  
  350.  
  351.    <style data-shopify>
  352.      @font-face {
  353.  font-family: Montserrat;
  354.  font-weight: 400;
  355.  font-style: normal;
  356.  font-display: swap;
  357.  src: url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_n4.1d581f6d4bf1a97f4cbc0b88b933bc136d38d178.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=fc10769f8dbaf3b8c1d56568f45c0affc65d226d80b2c213eb542000fb17134f") format("woff2"),
  358.       url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_n4.cfce41a967758ce5a9b7d48daeb5b028fd977a9b.woff?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=d3fae024951cd06ed5e71ee02939986da2788d067286c4fc5b958693d3baa1e6") format("woff");
  359. }
  360.  
  361.      @font-face {
  362.  font-family: Montserrat;
  363.  font-weight: 700;
  364.  font-style: normal;
  365.  font-display: swap;
  366.  src: url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_n7.c496e9cf2031deec4c4bca338faa81971c8631d4.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=9852198d3103fdd553a41b4b2a068382db7a6a173141fced545cfeee9cfe569a") format("woff2"),
  367.       url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_n7.78b0223375c94b39ce1af7e09a0225f2bb3d05f7.woff?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=4bea2c92ab8aa884fc7567fd9599d8a450a06d59f0113df36a476d8062c89f1d") format("woff");
  368. }
  369.  
  370.      @font-face {
  371.  font-family: Montserrat;
  372.  font-weight: 400;
  373.  font-style: italic;
  374.  font-display: swap;
  375.  src: url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_i4.ae02483b3d5e8777d0d4a4ccf396482c364d8955.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=a9ad7b0c014ee4eed85ea1a8437c8e8e964e94801e5630badcdee22a6a83fb9a") format("woff2"),
  376.       url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_i4.ba28d1a04ec09448de486d83c63235903dfc0af8.woff?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=1d23b799eaec74e0fe93c606eff46a4e0b17936d0e9fa025a57e616c348b1307") format("woff");
  377. }
  378.  
  379.      @font-face {
  380.  font-family: Montserrat;
  381.  font-weight: 700;
  382.  font-style: italic;
  383.  font-display: swap;
  384.  src: url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_i7.83866c3eec90071fa974c17980ffb42977f9e667.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=57e719cfdca4fbbbc6b33ebe83d7d48697ab3e2006add666fcf6eaeff40d5da0") format("woff2"),
  385.       url("//momdaughts.ae/cdn/fonts/montserrat/montserrat_i7.25524241b12d864609c85325613d60efcf1a87e3.woff?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=6e10906bae6096f42bc4297c7927581805c34d3149b41e488b81906c39d55873") format("woff");
  386. }
  387.  
  388.      @font-face {
  389.  font-family: Poppins;
  390.  font-weight: 400;
  391.  font-style: normal;
  392.  font-display: swap;
  393.  src: url("//momdaughts.ae/cdn/fonts/poppins/poppins_n4.934accbf9f5987aa89334210e6c1e9151f37d3b6.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=90b2c77cd52eb087973c73d93666c87e58288ab2aa6eac4552f1d785de3fe771") format("woff2"),
  394.       url("//momdaughts.ae/cdn/fonts/poppins/poppins_n4.ee28d4489eaf5de9cf6e17e696991b5e9148c716.woff?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=5239f3eb63246ebc17d2052b800a13d6f5eb51b529658c8491bb6d1d18624953") format("woff");
  395. }
  396.  
  397.  
  398.      
  399.        :root,
  400.        .color-scheme-1 {
  401.          --color-background: 253,251,247;
  402.        
  403.          --gradient-background: #fdfbf7;
  404.        
  405.  
  406.        
  407.  
  408.        --color-foreground: 0,0,0;
  409.        --color-background-contrast: 228,200,145;
  410.        --color-shadow: 0,0,0;
  411.        --color-button: 44,42,107;
  412.        --color-button-text: 255,255,255;
  413.        --color-secondary-button: 253,251,247;
  414.        --color-secondary-button-text: 0,0,0;
  415.        --color-link: 0,0,0;
  416.        --color-badge-foreground: 0,0,0;
  417.        --color-badge-background: 253,251,247;
  418.        --color-badge-border: 0,0,0;
  419.        --payment-terms-background-color: rgb(253 251 247);
  420.      }
  421.      
  422.        
  423.        .color-scheme-2 {
  424.          --color-background: 233,217,229;
  425.        
  426.          --gradient-background: radial-gradient(rgba(246, 230, 255, 1), rgba(247, 240, 253, 1) 21%, rgba(248, 218, 244, 1) 100%);
  427.        
  428.  
  429.        
  430.  
  431.        --color-foreground: 0,0,0;
  432.        --color-background-contrast: 186,136,174;
  433.        --color-shadow: 0,0,0;
  434.        --color-button: 0,0,0;
  435.        --color-button-text: 255,255,255;
  436.        --color-secondary-button: 233,217,229;
  437.        --color-secondary-button-text: 0,0,0;
  438.        --color-link: 0,0,0;
  439.        --color-badge-foreground: 0,0,0;
  440.        --color-badge-background: 233,217,229;
  441.        --color-badge-border: 0,0,0;
  442.        --payment-terms-background-color: rgb(233 217 229);
  443.      }
  444.      
  445.        
  446.        .color-scheme-3 {
  447.          --color-background: 44,42,107;
  448.        
  449.          --gradient-background: #2c2a6b;
  450.        
  451.  
  452.        
  453.  
  454.        --color-foreground: 255,255,255;
  455.        --color-background-contrast: 52,49,125;
  456.        --color-shadow: 44,42,107;
  457.        --color-button: 255,255,255;
  458.        --color-button-text: 44,42,107;
  459.        --color-secondary-button: 44,42,107;
  460.        --color-secondary-button-text: 255,255,255;
  461.        --color-link: 255,255,255;
  462.        --color-badge-foreground: 255,255,255;
  463.        --color-badge-background: 44,42,107;
  464.        --color-badge-border: 255,255,255;
  465.        --payment-terms-background-color: rgb(44 42 107);
  466.      }
  467.      
  468.        
  469.        .color-scheme-4 {
  470.          --color-background: 44,42,107;
  471.        
  472.          --gradient-background: #2c2a6b;
  473.        
  474.  
  475.        
  476.  
  477.        --color-foreground: 255,255,255;
  478.        --color-background-contrast: 52,49,125;
  479.        --color-shadow: 0,0,0;
  480.        --color-button: 255,255,255;
  481.        --color-button-text: 44,42,107;
  482.        --color-secondary-button: 44,42,107;
  483.        --color-secondary-button-text: 255,255,255;
  484.        --color-link: 255,255,255;
  485.        --color-badge-foreground: 255,255,255;
  486.        --color-badge-background: 44,42,107;
  487.        --color-badge-border: 255,255,255;
  488.        --payment-terms-background-color: rgb(44 42 107);
  489.      }
  490.      
  491.        
  492.        .color-scheme-5 {
  493.          --color-background: 255,255,255;
  494.        
  495.          --gradient-background: #ffffff;
  496.        
  497.  
  498.        
  499.  
  500.        --color-foreground: 0,0,0;
  501.        --color-background-contrast: 191,191,191;
  502.        --color-shadow: 46,42,57;
  503.        --color-button: 255,255,255;
  504.        --color-button-text: 255,255,255;
  505.        --color-secondary-button: 255,255,255;
  506.        --color-secondary-button-text: 0,0,0;
  507.        --color-link: 0,0,0;
  508.        --color-badge-foreground: 0,0,0;
  509.        --color-badge-background: 255,255,255;
  510.        --color-badge-border: 0,0,0;
  511.        --payment-terms-background-color: rgb(255 255 255);
  512.      }
  513.      
  514.  
  515.      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-5 {
  516.        color: rgba(var(--color-foreground), 0.75);
  517.        background-color: rgb(var(--color-background));
  518.      }
  519.  
  520.      :root {
  521.        --font-body-family: Montserrat, sans-serif;
  522.        --font-body-style: normal;
  523.        --font-body-weight: 400;
  524.        --font-body-weight-bold: 700;
  525.  
  526.        --font-heading-family: Poppins, sans-serif;
  527.        --font-heading-style: normal;
  528.        --font-heading-weight: 400;
  529.  
  530.        --font-body-scale: 1.0;
  531.        --font-heading-scale: 1.25;
  532.  
  533.        --media-padding: px;
  534.        --media-border-opacity: 0.1;
  535.        --media-border-width: 0px;
  536.        --media-radius: 12px;
  537.        --media-shadow-opacity: 0.1;
  538.        --media-shadow-horizontal-offset: 10px;
  539.        --media-shadow-vertical-offset: 0px;
  540.        --media-shadow-blur-radius: 20px;
  541.        --media-shadow-visible: 1;
  542.  
  543.        --page-width: 120rem;
  544.        --page-width-margin: 0rem;
  545.  
  546.        --product-card-image-padding: 0.0rem;
  547.        --product-card-corner-radius: 1.2rem;
  548.        --product-card-text-alignment: center;
  549.        --product-card-border-width: 0.0rem;
  550.        --product-card-border-opacity: 0.1;
  551.        --product-card-shadow-opacity: 0.05;
  552.        --product-card-shadow-visible: 1;
  553.        --product-card-shadow-horizontal-offset: 1.0rem;
  554.        --product-card-shadow-vertical-offset: 1.0rem;
  555.        --product-card-shadow-blur-radius: 3.5rem;
  556.  
  557.        --collection-card-image-padding: 0.0rem;
  558.        --collection-card-corner-radius: 1.2rem;
  559.        --collection-card-text-alignment: center;
  560.        --collection-card-border-width: 0.0rem;
  561.        --collection-card-border-opacity: 0.1;
  562.        --collection-card-shadow-opacity: 0.05;
  563.        --collection-card-shadow-visible: 1;
  564.        --collection-card-shadow-horizontal-offset: 1.0rem;
  565.        --collection-card-shadow-vertical-offset: 1.0rem;
  566.        --collection-card-shadow-blur-radius: 3.5rem;
  567.  
  568.        --blog-card-image-padding: 0.0rem;
  569.        --blog-card-corner-radius: 1.2rem;
  570.        --blog-card-text-alignment: center;
  571.        --blog-card-border-width: 0.0rem;
  572.        --blog-card-border-opacity: 0.1;
  573.        --blog-card-shadow-opacity: 0.05;
  574.        --blog-card-shadow-visible: 1;
  575.        --blog-card-shadow-horizontal-offset: 1.0rem;
  576.        --blog-card-shadow-vertical-offset: 1.0rem;
  577.        --blog-card-shadow-blur-radius: 3.5rem;
  578.  
  579.        --badge-corner-radius: 2.0rem;
  580.  
  581.        --popup-border-width: 1px;
  582.        --popup-border-opacity: 0.1;
  583.        --popup-corner-radius: 22px;
  584.        --popup-shadow-opacity: 0.1;
  585.        --popup-shadow-horizontal-offset: 10px;
  586.        --popup-shadow-vertical-offset: 12px;
  587.        --popup-shadow-blur-radius: 20px;
  588.  
  589.        --drawer-border-width: 1px;
  590.        --drawer-border-opacity: 0.1;
  591.        --drawer-shadow-opacity: 0.0;
  592.        --drawer-shadow-horizontal-offset: 0px;
  593.        --drawer-shadow-vertical-offset: 4px;
  594.        --drawer-shadow-blur-radius: 5px;
  595.  
  596.        --spacing-sections-desktop: 36px;
  597.        --spacing-sections-mobile: 25px;
  598.  
  599.        --grid-desktop-vertical-spacing: 40px;
  600.        --grid-desktop-horizontal-spacing: 40px;
  601.        --grid-mobile-vertical-spacing: 20px;
  602.        --grid-mobile-horizontal-spacing: 20px;
  603.  
  604.        --text-boxes-border-opacity: 0.1;
  605.        --text-boxes-border-width: 0px;
  606.        --text-boxes-radius: 24px;
  607.        --text-boxes-shadow-opacity: 0.0;
  608.        --text-boxes-shadow-visible: 0;
  609.        --text-boxes-shadow-horizontal-offset: 10px;
  610.        --text-boxes-shadow-vertical-offset: 12px;
  611.        --text-boxes-shadow-blur-radius: 20px;
  612.  
  613.        --buttons-radius: 10px;
  614.        --buttons-radius-outset: 11px;
  615.        --buttons-border-width: 1px;
  616.        --buttons-border-opacity: 0.55;
  617.        --buttons-shadow-opacity: 0.0;
  618.        --buttons-shadow-visible: 0;
  619.        --buttons-shadow-horizontal-offset: 0px;
  620.        --buttons-shadow-vertical-offset: 4px;
  621.        --buttons-shadow-blur-radius: 5px;
  622.        --buttons-border-offset: 0.3px;
  623.  
  624.        --inputs-radius: 10px;
  625.        --inputs-border-width: 1px;
  626.        --inputs-border-opacity: 0.55;
  627.        --inputs-shadow-opacity: 0.0;
  628.        --inputs-shadow-horizontal-offset: 0px;
  629.        --inputs-margin-offset: 0px;
  630.        --inputs-shadow-vertical-offset: -10px;
  631.        --inputs-shadow-blur-radius: 5px;
  632.        --inputs-radius-outset: 11px;
  633.  
  634.        --variant-pills-radius: 10px;
  635.        --variant-pills-border-width: 0px;
  636.        --variant-pills-border-opacity: 0.1;
  637.        --variant-pills-shadow-opacity: 0.0;
  638.        --variant-pills-shadow-horizontal-offset: 0px;
  639.        --variant-pills-shadow-vertical-offset: 4px;
  640.        --variant-pills-shadow-blur-radius: 5px;
  641.      }
  642.  
  643.      *,
  644.      *::before,
  645.      *::after {
  646.        box-sizing: inherit;
  647.      }
  648.  
  649.      html {
  650.        box-sizing: border-box;
  651.        font-size: calc(var(--font-body-scale) * 62.5%);
  652.        height: 100%;
  653.      }
  654.  
  655.      body {
  656.        display: grid;
  657.        grid-template-rows: auto auto 1fr auto;
  658.        grid-template-columns: 100%;
  659.        min-height: 100%;
  660.        margin: 0;
  661.        font-size: 1.5rem;
  662.        letter-spacing: 0.06rem;
  663.        line-height: calc(1 + 0.8 / var(--font-body-scale));
  664.        font-family: var(--font-body-family);
  665.        font-style: var(--font-body-style);
  666.        font-weight: var(--font-body-weight);
  667.      }
  668.  
  669.      @media screen and (min-width: 750px) {
  670.        body {
  671.          font-size: 1.6rem;
  672.        }
  673.      }
  674.    </style>
  675.  
  676.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/base.css?v=94266557971103095941736691105" rel="stylesheet" type="text/css" media="all" />
  677.    <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-cart-items.css?v=123238115697927560811736691105" media="print" onload="this.media='all'">
  678.      <link rel="preload" as="font" href="//momdaughts.ae/cdn/fonts/montserrat/montserrat_n4.1d581f6d4bf1a97f4cbc0b88b933bc136d38d178.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=fc10769f8dbaf3b8c1d56568f45c0affc65d226d80b2c213eb542000fb17134f" type="font/woff2" crossorigin>
  679.      
  680.  
  681.      <link rel="preload" as="font" href="//momdaughts.ae/cdn/fonts/poppins/poppins_n4.934accbf9f5987aa89334210e6c1e9151f37d3b6.woff2?h1=bnhuY3ZuLWhmLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=bW9tZGF1Z2h0cy5hZQ&h3=bW9tZGF1Z2h0cy1hZS5teXNob3BpZnkuY29t&hmac=90b2c77cd52eb087973c73d93666c87e58288ab2aa6eac4552f1d785de3fe771" type="font/woff2" crossorigin>
  682.      
  683. <link
  684.        rel="stylesheet"
  685.        href="//momdaughts.ae/cdn/shop/t/4/assets/component-predictive-search.css?v=118923337488134913561736691106"
  686.        media="print"
  687.        onload="this.media='all'"
  688.      ><script>
  689.      if (Shopify.designMode) {
  690.        document.documentElement.classList.add('shopify-design-mode');
  691.      }
  692.    </script>
  693.  
  694.            
  695.                
  696.            
  697.  
  698.  
  699.  
  700.  
  701.    <script>
  702. document.addEventListener("DOMContentLoaded", function() {
  703.    // Extract ttclid from URL
  704.    const urlParams = new URLSearchParams(window.location.search);
  705.    const ttclid = urlParams.get("ttclid");
  706.  
  707.    // If ttclid exists, store it in localStorage
  708.    if (ttclid) {
  709.        localStorage.setItem("ttclid", ttclid);
  710.    }
  711.  
  712.    // Function to send ttclid to Shopify
  713.    function sendTtclidToShopify() {
  714.        let storedTtclid = localStorage.getItem("ttclid");
  715.        console.log("horha hai call")
  716.        if (!storedTtclid) return;
  717.  
  718.        fetch('/cart/update.js', {
  719.            method: 'POST',
  720.            headers: { 'Content-Type': 'application/json' },
  721.            body: JSON.stringify({
  722.                attributes: { ttclid: storedTtclid }
  723.            })
  724.        });
  725.    }
  726.  
  727.    // Run function when user is about to check out
  728.    document.addEventListener("click", function(event) {
  729.        if (event.target.matches('[name="checkout"], .dynamic-checkout__submit')) {
  730.            sendTtclidToShopify();
  731.        }
  732.    });
  733.  
  734. });
  735. </script>
  736.  
  737. <!-- BEGIN app block: shopify://apps/searchpie-seo-speed/blocks/sb-snippets/29f6c508-9bb9-4e93-9f98-b637b62f3552 --><!-- SearchPie snippets --><!-- BEGIN app snippet: sb-meta-tags --><!-- SearchPie meta tags -->
  738.  
  739.  
  740.  
  741. <title>MomDaughts UAE – Menstrual Cups, Breast Pumps & Self-Care</title><meta name="description" content="Find premium menstrual cups, breast pumps & IPL hair removers in UAE. Safe, comfortable & affordable personal care at MomDaughts UAE!">
  742. <!-- END SearchPie meta tags X --><!-- END app snippet --><!-- BEGIN app snippet: amp -->    
  743.  
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.    
  761.  
  762. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Instant-Page --><script>
  763.    var timeout = 2000;
  764.    (function (w, d, s) {
  765.        function asyncLoad_isp() {
  766.            setTimeout(function () {
  767.                var head = document.head;
  768.                var r = document.createElement('script');
  769.                r.type = "module";
  770.                r.integrity = "sha384-MWfCL6g1OTGsbSwfuMHc8+8J2u71/LA8dzlIN3ycajckxuZZmF+DNjdm7O6H3PSq";
  771.                r.src = "//instant.page/5.1.1";
  772.                r.defer = true;
  773.                head.appendChild(r);
  774.            }, timeout);
  775.        };
  776.        document.addEventListener('DOMContentLoaded', function (event) {
  777.            asyncLoad_isp();
  778.        });
  779.    })(window, document, 'script');
  780. </script>
  781. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Store --><!-- seo-booster-json-ld-store -->
  782.  
  783. <!-- seo-booster-website -->
  784. <script type="application/ld+json">
  785. {
  786.   "@context": "http://schema.org",
  787.   "@type": "WebSite",
  788.  
  789.   "name" : "MomDaughts UAE",
  790.  
  791.   "url": "https://momdaughts.ae/",
  792.   "potentialAction": {
  793.     "@type": "SearchAction",
  794.     "target": {
  795.        "@type": "EntryPoint",
  796.        "urlTemplate": "https://momdaughts.ae/search?q={search_term_string}"
  797.      },
  798.     "query-input": "required name=search_term_string"
  799.   }
  800. }
  801.  
  802.  
  803.  
  804. </script>
  805. <!-- end-seo-booster-website -->
  806.  
  807. <!-- seo-booster-organization -->
  808. <script type="application/ld+json">
  809. {
  810. "@context": "http://schema.org",
  811. "@type": "Organization",
  812.    
  813.    "name" : "MomDaughts UAE",
  814.    
  815. "url": "https://momdaughts.ae","logo": "https://sb.secomapp.com/images/artwork/sb_logo_100137.png","description": "Find premium menstrual cups, breast pumps &amp; IPL hair removers in UAE. Safe, comfortable &amp; affordable personal care at MomDaughts UAE!","address": {
  816.      "@type": "PostalAddress",
  817.      "streetAddress": "House # 206, Norani Maholla Block-A, Unit No.10",
  818.      "addressLocality": "Hyderabad",
  819.      "addressCountry":  "AE",
  820.      "addressRegion": "Dubai",
  821.      "postalCode": ""
  822.    }
  823. , "sameAs" : [
  824.  
  825. "https://momdaughts.ae",
  826.    
  827. "https://instagram.com/momdaughts.ae",
  828.    
  829. "https://twitter.com/momdaughts",
  830.    
  831. "https://facebook.com/momdaughts.ae"
  832.    
  833. ]}
  834.  
  835. </script>
  836.  
  837. <!-- End - seo-booster-json-ld-store -->
  838. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Breadcrumb --><!-- seo-booster-json-ld-Breadcrumb -->
  839. <script type="application/ld+json">
  840.    {
  841.        "@context": "http://schema.org",
  842.        "@type": "BreadcrumbList",
  843.        "itemListElement": [{
  844.            "@type": "ListItem",
  845.            "position": "1",
  846.            "item": {
  847.                "@type": "Website",
  848.                "@id": "https://momdaughts.ae",
  849.                "name": "MomDaughts UAE"
  850.            }
  851.        }]
  852.  
  853. }
  854.  
  855. </script>
  856. <!-- END app snippet -->
  857.  
  858.  
  859.  <meta name="google-site-verification" content="h0V0ITexHplMKY8PBmo_v5U1Qq861KwERCNL41eQ4fg">
  860.  
  861.  
  862. <!-- BEGIN app snippet: sb-detect-broken-link --><script></script><!-- END app snippet -->
  863. <!-- BEGIN app snippet: internal-link --><script>
  864. </script><!-- END app snippet -->
  865. <!-- BEGIN app snippet: social-tags --><!-- SearchPie Social Tags -->
  866.  
  867.  
  868. <!-- END SearchPie Social Tags --><!-- END app snippet -->
  869. <!-- BEGIN app snippet: sb-nx -->
  870.  
  871. <!-- END app snippet -->
  872. <!-- END SearchPie snippets -->
  873.  
  874. <!-- END app block --><!-- BEGIN app block: shopify://apps/judge-me-reviews/blocks/judgeme_core/61ccd3b1-a9f2-4160-9fe9-4fec8413e5d8 --><!-- Start of Judge.me Core -->
  875.  
  876.  
  877.  
  878.  
  879.    
  880.    
  881.  
  882.  
  883.    
  884.    
  885.    
  886.      
  887.    
  888.      
  889.    
  890.      
  891.    
  892.      
  893.    
  894.      
  895.    
  896.      
  897.    
  898.      
  899.    
  900.      
  901.    
  902.      
  903.    
  904.      
  905.    
  906.      
  907.    
  908.      
  909.    
  910.      
  911.        
  912.        
  913.  
  914.  
  915.  
  916. <link rel="dns-prefetch" href="https://cdnwidget.judge.me">
  917.  
  918. <script data-cfasync='false' class='jdgm-settings-script'>window.jdgmSettings={"pagination":5,"disable_web_reviews":false,"badge_no_review_text":"No reviews","badge_n_reviews_text":"{{ n }} review/reviews","hide_badge_preview_if_no_reviews":true,"badge_hide_text":false,"enforce_center_preview_badge":false,"widget_title":"Customer Reviews","widget_open_form_text":"Write a review","widget_close_form_text":"Cancel review","widget_refresh_page_text":"Refresh page","widget_summary_text":"Based on {{ number_of_reviews }} review/reviews","widget_no_review_text":"Be the first to write a review","widget_name_field_text":"Name","widget_verified_name_field_text":"Verified Name (public)","widget_name_placeholder_text":"Enter your name (public)","widget_required_field_error_text":"This field is required.","widget_email_field_text":"Email","widget_verified_email_field_text":"Verified Email (private, can not be edited)","widget_email_placeholder_text":"Enter your email (private)","widget_email_field_error_text":"Please enter a valid email address.","widget_rating_field_text":"Rating","widget_review_title_field_text":"Review Title","widget_review_title_placeholder_text":"Give your review a title","widget_review_body_field_text":"Review","widget_review_body_placeholder_text":"Write your comments here","widget_pictures_field_text":"Picture/Video (optional)","widget_submit_review_text":"Submit Review","widget_submit_verified_review_text":"Submit Verified Review","widget_submit_success_msg_with_auto_publish":"Thank you! Please refresh the page in a few moments to see your review. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_submit_success_msg_no_auto_publish":"Thank you! Your review will be published as soon as it is approved by the shop admin. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_show_default_reviews_out_of_total_text":"Showing {{ n_reviews_shown }} out of {{ n_reviews }} reviews.","widget_show_all_link_text":"Show all","widget_show_less_link_text":"Show less","widget_author_said_text":"{{ reviewer_name }} said:","widget_days_text":"{{ n }} days ago","widget_weeks_text":"{{ n }} week/weeks ago","widget_months_text":"{{ n }} month/months ago","widget_years_text":"{{ n }} year/years ago","widget_yesterday_text":"Yesterday","widget_today_text":"Today","widget_replied_text":"\u003e\u003e {{ shop_name }} replied:","widget_read_more_text":"Read more","widget_rating_filter_see_all_text":"See all reviews","widget_sorting_most_recent_text":"Most Recent","widget_sorting_highest_rating_text":"Highest Rating","widget_sorting_lowest_rating_text":"Lowest Rating","widget_sorting_with_pictures_text":"Only Pictures","widget_sorting_most_helpful_text":"Most Helpful","widget_open_question_form_text":"Ask a question","widget_reviews_subtab_text":"Reviews","widget_questions_subtab_text":"Questions","widget_question_label_text":"Question","widget_answer_label_text":"Answer","widget_question_placeholder_text":"Write your question here","widget_submit_question_text":"Submit Question","widget_question_submit_success_text":"Thank you for your question! We will notify you once it gets answered.","verified_badge_text":"Verified","verified_badge_placement":"left-of-reviewer-name","widget_hide_border":false,"widget_social_share":false,"all_reviews_include_out_of_store_products":true,"all_reviews_out_of_store_text":"(out of store)","all_reviews_product_name_prefix_text":"about","enable_review_pictures":true,"widget_product_reviews_subtab_text":"Product Reviews","widget_shop_reviews_subtab_text":"Shop Reviews","widget_write_a_store_review_text":"Write a Store Review","widget_other_languages_heading":"Reviews in Other Languages","widget_sorting_pictures_first_text":"Pictures First","floating_tab_button_name":"★ Reviews","floating_tab_title":"Let customers speak for us","floating_tab_url":"","floating_tab_url_enabled":false,"all_reviews_text_badge_text":"Customers rate us {{ shop.metafields.judgeme.all_reviews_rating | round: 1 }}/5 based on {{ shop.metafields.judgeme.all_reviews_count }} reviews.","all_reviews_text_badge_text_branded_style":"{{ shop.metafields.judgeme.all_reviews_rating | round: 1 }} out of 5 stars based on {{ shop.metafields.judgeme.all_reviews_count }} reviews","all_reviews_text_badge_url":"","all_reviews_text_style":"branded","featured_carousel_title":"Let customers speak for us","featured_carousel_count_text":"from {{ n }} reviews","featured_carousel_url":"","verified_count_badge_style":"branded","verified_count_badge_url":"","picture_reminder_submit_button":"Upload Pictures","widget_sorting_videos_first_text":"Videos First","widget_review_pending_text":"Pending","remove_microdata_snippet":true,"preview_badge_no_question_text":"No questions","preview_badge_n_question_text":"{{ number_of_questions }} question/questions","widget_search_bar_placeholder":"Search reviews","widget_sorting_verified_only_text":"Verified only","featured_carousel_verified_badge_enable":true,"featured_carousel_more_reviews_button_text":"Read more reviews","featured_carousel_view_product_button_text":"View product","all_reviews_page_load_more_text":"Load More Reviews","widget_advanced_speed_features":5,"widget_public_name_text":"displayed publicly like","default_reviewer_name_has_non_latin":true,"widget_reviewer_anonymous":"Anonymous","medals_widget_title":"Judge.me Review Medals","widget_invalid_yt_video_url_error_text":"Not a YouTube video URL","widget_max_length_field_error_text":"Please enter no more than {0} characters.","widget_verified_by_shop_text":"Verified by Shop","widget_load_with_code_splitting":true,"widget_ugc_title":"Made by us, Shared by you","widget_ugc_subtitle":"Tag us to see your picture featured in our page","widget_ugc_primary_button_text":"Buy Now","widget_ugc_secondary_button_text":"Load More","widget_ugc_reviews_button_text":"View Reviews","widget_primary_color":"#2C2A6B","widget_summary_average_rating_text":"{{ average_rating }} out of 5","widget_media_grid_title":"Customer photos \u0026 videos","widget_media_grid_see_more_text":"See more","widget_verified_by_judgeme_text":"Verified by Judge.me","widget_verified_by_judgeme_text_in_store_medals":"Verified by Judge.me","widget_media_field_exceed_quantity_message":"Sorry, we can only accept {{ max_media }} for one review.","widget_media_field_exceed_limit_message":"{{ file_name }} is too large, please select a {{ media_type }} less than {{ size_limit }}MB.","widget_review_submitted_text":"Review Submitted!","widget_question_submitted_text":"Question Submitted!","widget_close_form_text_question":"Cancel","widget_write_your_answer_here_text":"Write your answer here","widget_enabled_branded_link":true,"widget_show_collected_by_judgeme":true,"widget_collected_by_judgeme_text":"collected by Judge.me","widget_load_more_text":"Load More","widget_full_review_text":"Full Review","widget_read_more_reviews_text":"Read More Reviews","widget_read_questions_text":"Read Questions","widget_questions_and_answers_text":"Questions \u0026 Answers","widget_verified_by_text":"Verified by","widget_number_of_reviews_text":"{{ number_of_reviews }} reviews","widget_back_button_text":"Back","widget_next_button_text":"Next","widget_custom_forms_filter_button":"Filters","how_reviews_are_collected":"How reviews are collected?","widget_gdpr_statement":"How we use your data: We’ll only contact you about the review you left, and only if necessary. By submitting your review, you agree to Judge.me’s \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms\u003c/a\u003e, \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy\u003c/a\u003e and \u003ca href='https://judge.me/content-policy' target='_blank' rel='nofollow noopener'\u003econtent\u003c/a\u003e policies.","review_snippet_widget_round_border_style":true,"review_snippet_widget_card_color":"#FFFFFF","review_snippet_widget_slider_arrows_background_color":"#FFFFFF","review_snippet_widget_slider_arrows_color":"#000000","review_snippet_widget_star_color":"#339999","platform":"shopify","branding_url":"https://app.judge.me/reviews","branding_text":"Powered by Judge.me","locale":"en","reply_name":"MomDaughts UAE","widget_version":"3.0","footer":true,"autopublish":true,"review_dates":true,"enable_custom_form":false,"enable_multi_locales_translations":false,"can_be_branded":false,"reply_name_text":"MomDaughts UAE"};</script> <style class='jdgm-settings-style'>.jdgm-xx{left:0}:root{--jdgm-primary-color: #2C2A6B;--jdgm-secondary-color: rgba(44,42,107,0.1);--jdgm-star-color: #2C2A6B;--jdgm-write-review-text-color: white;--jdgm-write-review-bg-color: #2C2A6B;--jdgm-paginate-color: #2C2A6B;--jdgm-border-radius: 0;--jdgm-reviewer-name-color: #2C2A6B}.jdgm-histogram__bar-content{background-color:#2C2A6B}.jdgm-rev[data-verified-buyer=true] .jdgm-rev__icon.jdgm-rev__icon:after,.jdgm-rev__buyer-badge.jdgm-rev__buyer-badge{color:white;background-color:#2C2A6B}.jdgm-review-widget--small .jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}@media only screen and (min-width: 768px){.jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}}.jdgm-prev-badge[data-average-rating='0.00']{display:none !important}.jdgm-author-all-initials{display:none !important}.jdgm-author-last-initial{display:none !important}.jdgm-rev-widg__title{visibility:hidden}.jdgm-rev-widg__summary-text{visibility:hidden}.jdgm-prev-badge__text{visibility:hidden}.jdgm-rev__prod-link-prefix:before{content:'about'}.jdgm-rev__out-of-store-text:before{content:'(out of store)'}@media only screen and (min-width: 768px){.jdgm-rev__pics .jdgm-rev_all-rev-page-picture-separator,.jdgm-rev__pics .jdgm-rev__product-picture{display:none}}@media only screen and (max-width: 768px){.jdgm-rev__pics .jdgm-rev_all-rev-page-picture-separator,.jdgm-rev__pics .jdgm-rev__product-picture{display:none}}.jdgm-preview-badge[data-template="product"]{display:none !important}.jdgm-preview-badge[data-template="collection"]{display:none !important}.jdgm-preview-badge[data-template="index"]{display:none !important}.jdgm-review-widget[data-from-snippet="true"]{display:none !important}.jdgm-verified-count-badget[data-from-snippet="true"]{display:none !important}.jdgm-carousel-wrapper[data-from-snippet="true"]{display:none !important}.jdgm-all-reviews-text[data-from-snippet="true"]{display:none !important}.jdgm-medals-section[data-from-snippet="true"]{display:none !important}.jdgm-ugc-media-wrapper[data-from-snippet="true"]{display:none !important}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card{border-radius:8px;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card__rev-rating .jdgm-star{color:#399}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn{border-radius:50%;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn>svg,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn>svg{fill:#000}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jm-mfp-content,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__icon,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__pic-img,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__reply{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev[data-verified-buyer="true"] .jdgm-full-rev__icon::after{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-rev__buyer-badge{border-radius:calc( 8px / 2 )}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__replier::before{content:'MomDaughts UAE'}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__product-button{border-radius:calc( 8px * 6 )}
  919. </style> <style class='jdgm-settings-style'></style>
  920.  
  921.  
  922.  
  923.  
  924.  <style class='jdgm-miracle-styles'>
  925.  @-webkit-keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@font-face{font-family:'JudgemeStar';src:url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAScAA0AAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEgAAAABoAAAAcbyQ+3kdERUYAAARgAAAAHgAAACAAMwAGT1MvMgAAAZgAAABGAAAAVi+vS9xjbWFwAAAB8AAAAEAAAAFKwBMjvmdhc3AAAARYAAAACAAAAAj//wADZ2x5ZgAAAkAAAAEJAAABdH33LXtoZWFkAAABMAAAAC0AAAA2BroQKWhoZWEAAAFgAAAAHAAAACQD5QHQaG10eAAAAeAAAAAPAAAAFAYAAABsb2NhAAACMAAAAA4AAAAOAO4AeG1heHAAAAF8AAAAHAAAACAASgAvbmFtZQAAA0wAAADeAAABkorWfVZwb3N0AAAELAAAACkAAABEp3ubLXgBY2BkYADhPPP4OfH8Nl8ZuJkYQODS2fRrCPr/aSYGxq1ALgcDWBoAO60LkwAAAHgBY2BkYGDc+v80gx4TAwgASaAICmABAFB+Arl4AWNgZGBgYGPQYWBiAAIwyQgWc2AAAwAHVQB6eAFjYGRiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbByMsCBAAMCBKS5pjA4PGB4wMR44P8BBj3GrQymQGFGkBwAjtgK/gAAeAFjYoAAEA1jAwAAZAAHAHgB3crBCcAwDEPRZydkih567CDdf4ZskmLwFBV8xBfCaC4BXkOUmx4sU0h2ngNb9V0vQCxaRKIAevT7fGWuBrEAAAAAAAAAAAA0AHgAugAAeAF9z79Kw1AUx/FzTm7un6QmJtwmQ5Bg1abgEGr/BAqlU6Gju+Cgg1MkQ/sA7Vj7BOnmO/gUvo2Lo14NqIO6/IazfD8HEODtmQCfoANwNsyp2/GJt3WKQrd1NLiYYWx2PBqOsmJMEOznPOTzfSCrhAtbbLdmeFLJV9eKd63WLrZcIcuaEVdssWCKM6pLCfTVOYbz/0pNSMSZKLIZpvh78sAUH6PlMrreTCabP9r+Z/puPZ2ur/RqpQHgh+MIegCnXeM4MRAPjYN//5tj4ZtTjkFqEdmeMShlEJ7tVAly2TAkx6R68Fl4E/aVvn8JqHFQ4JS1434gXKcuL31dDhzs3YbsEOAd/IU88gAAAHgBfY4xTgMxEEVfkk0AgRCioKFxQYd2ZRtpixxgRU2RfhU5q5VWseQ4JdfgAJyBlmNwAM7ABRhZQ0ORwp7nr+eZAa54YwYg9zm3ynPOeFRe8MCrciXOh/KSS76UV5L/iDmrLiS5AeU519wrL3jmSbkS5115yR2fyivJv9kx0ZMZ2RLZw27q87iNQi8EBo5FSPIMw3HqBboi5lKTGAGDp8FKXWP+t9TU01Lj5His1Ba6uM9dTEMwvrFmbf5GC/q2drW3ruXUhhsCiQOjznFlCzYhHUZp4xp76vsvQh89CQAAeAFjYGJABowM6IANLMrEyMTIzMjCXpyRWJBqZshWXJJYBKOMAFHFBucAAAAAAAAB//8AAngBY2BkYGDgA2IJBhBgAvKZGViBJAuYxwAABJsAOgAAeAFjYGBgZACCk535hiD60tn0azAaAEqpB6wAAA==") format("woff");font-weight:normal;font-style:normal}.jdgm-star{font-family:'JudgemeStar';display:inline !important;text-decoration:none !important;padding:0 4px 0 0 !important;margin:0 !important;font-weight:bold;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.jdgm-star:hover{opacity:1}.jdgm-star:last-of-type{padding:0 !important}.jdgm-star.jdgm--on:before{content:"\e000"}.jdgm-star.jdgm--off:before{content:"\e001"}.jdgm-star.jdgm--half:before{content:"\e002"}.jdgm-widget *{margin:0;line-height:1.4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-overflow-scrolling:touch}.jdgm-hidden{display:none !important;visibility:hidden !important}.jdgm-temp-hidden{display:none}.jdgm-spinner{width:40px;height:40px;margin:auto;border-radius:50%;border-top:2px solid #eee;border-right:2px solid #eee;border-bottom:2px solid #eee;border-left:2px solid #ccc;-webkit-animation:jdgm-spin 0.8s infinite linear;animation:jdgm-spin 0.8s infinite linear}.jdgm-spinner:empty{display:block}.jdgm-prev-badge{display:block !important}
  926.  
  927. </style>
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935. <script data-cfasync='false' class='jdgm-script'>
  936. !function(e){window.jdgm=window.jdgm||{},jdgm.CDN_HOST="https://cdnwidget.judge.me/",
  937. jdgm.docReady=function(d){(e.attachEvent?"complete"===e.readyState:"loading"!==e.readyState)?
  938. setTimeout(d,0):e.addEventListener("DOMContentLoaded",d)},jdgm.loadCSS=function(d,t,o,a){
  939. !o&&jdgm.loadCSS.requestedUrls.indexOf(d)>=0||(jdgm.loadCSS.requestedUrls.push(d),
  940. (a=e.createElement("link")).rel="stylesheet",a.class="jdgm-stylesheet",a.media="nope!",
  941. a.href=d,a.onload=function(){this.media="all",t&&setTimeout(t)},e.body.appendChild(a))},
  942. jdgm.loadCSS.requestedUrls=[],jdgm.loadJS=function(e,d){var t=new XMLHttpRequest;
  943. t.onreadystatechange=function(){4===t.readyState&&(Function(t.response)(),d&&d(t.response))},
  944. t.open("GET",e),t.send()},jdgm.docReady((function(){(window.jdgmLoadCSS||e.querySelectorAll(
  945. ".jdgm-widget, .jdgm-all-reviews-page").length>0)&&(jdgmSettings.widget_load_with_code_splitting?
  946. parseFloat(jdgmSettings.widget_version)>=3?jdgm.loadCSS(jdgm.CDN_HOST+"widget_v3/base.css"):
  947. jdgm.loadCSS(jdgm.CDN_HOST+"widget/base.css"):jdgm.loadCSS(jdgm.CDN_HOST+"shopify_v2.css"),
  948. jdgm.loadJS(jdgm.CDN_HOST+"loader.js"))}))}(document);
  949. </script>
  950. <noscript><link rel="stylesheet" type="text/css" media="all" href="https://cdnwidget.judge.me/shopify_v2.css"></noscript>
  951.  
  952. <!-- BEGIN app snippet: theme_fix_tags --><script>
  953.  (function() {
  954.    var jdgmThemeFixes = null;
  955.    if (!jdgmThemeFixes) return;
  956.    var thisThemeFix = jdgmThemeFixes[Shopify.theme.id];
  957.    if (!thisThemeFix) return;
  958.  
  959.    if (thisThemeFix.html) {
  960.      document.addEventListener("DOMContentLoaded", function() {
  961.        var htmlDiv = document.createElement('div');
  962.        htmlDiv.classList.add('jdgm-theme-fix-html');
  963.        htmlDiv.innerHTML = thisThemeFix.html;
  964.        document.body.append(htmlDiv);
  965.      });
  966.    };
  967.  
  968.    if (thisThemeFix.css) {
  969.      var styleTag = document.createElement('style');
  970.      styleTag.classList.add('jdgm-theme-fix-style');
  971.      styleTag.innerHTML = thisThemeFix.css;
  972.      document.head.append(styleTag);
  973.    };
  974.  
  975.    if (thisThemeFix.js) {
  976.      var scriptTag = document.createElement('script');
  977.      scriptTag.classList.add('jdgm-theme-fix-script');
  978.      scriptTag.innerHTML = thisThemeFix.js;
  979.      document.head.append(scriptTag);
  980.    };
  981.  })();
  982. </script>
  983. <!-- END app snippet -->
  984. <!-- End of Judge.me Core -->
  985.  
  986.  
  987.  
  988.  
  989. <!-- END app block --><!-- BEGIN app block: shopify://apps/ecomposer-landing-page-builder/blocks/app-embed/a0fc26e1-7741-4773-8b27-39389b4fb4a0 --><link rel="preconnect" href="https://cdn.ecomposer.app" crossorigin />
  990. <link rel="dns-prefetch" href="https://cdn.ecomposer.app" />
  991. <link rel="preload" href="https://cdn.ecomposer.app/vendors/css/ecom-base.css?v=4.0" as="style" />
  992. <link rel="preload" href="https://cdn.ecomposer.app/vendors/css/ecom-swiper@11.css" as="style" />
  993. <link rel="preload" href="https://cdn.ecomposer.app/vendors/js/ecom-swiper@11.0.5.js" as="script" />
  994. <link rel="preload" href="https://cdn.ecomposer.app/vendors/js/ecom_modal.js" as="script" />
  995.    <!--ECOM-EMBED-->
  996.        <style id="ecom-global-css" class="ecom-global-css">
  997.            /**ECOM-INSERT-CSS**/.ecom-section > div.core__row--columns{max-width: 1200px;}.ecom-column>div.core__column--wrapper{padding: 20px;}div.core__blocks--body>div.ecom-block.elmspace:not(:first-child){margin-top: 20px;}:root{--ecom-global-colors-primary:#ffffff;--ecom-global-colors-secondary:#ffffff;--ecom-global-colors-text:#ffffff;--ecom-global-colors-accent:#ffffff;--ecom-global-typography-h1-font-weight:600;--ecom-global-typography-h1-font-size:72px;--ecom-global-typography-h1-line-height:90px;--ecom-global-typography-h1-letter-spacing:-0.02em;--ecom-global-typography-h2-font-weight:600;--ecom-global-typography-h2-font-size:60px;--ecom-global-typography-h2-line-height:72px;--ecom-global-typography-h2-letter-spacing:-0.02em;--ecom-global-typography-h3-font-weight:600;--ecom-global-typography-h3-font-size:48px;--ecom-global-typography-h3-line-height:60px;--ecom-global-typography-h3-letter-spacing:-0.02em;--ecom-global-typography-h4-font-weight:600;--ecom-global-typography-h4-font-size:36px;--ecom-global-typography-h4-line-height:44px;--ecom-global-typography-h4-letter-spacing:-0.02em;--ecom-global-typography-h5-font-weight:600;--ecom-global-typography-h5-font-size:30px;--ecom-global-typography-h5-line-height:38px;--ecom-global-typography-h6-font-weight:600;--ecom-global-typography-h6-font-size:24px;--ecom-global-typography-h6-line-height:32px;--ecom-global-typography-h7-font-weight:400;--ecom-global-typography-h7-font-size:18px;--ecom-global-typography-h7-line-height:28px;}
  998.        </style>
  999.    <!--/ECOM-EMBED-->
  1000.  
  1001.  
  1002.      <style id="ecom-custom-css">
  1003.        
  1004.      </style>
  1005.  
  1006.    <script id="ecom-custom-js" async="async">
  1007.        
  1008.    </script><style type="text/css" class="ecom-theme-helper">
  1009.    .ecom-animation{opacity:0}.ecom-animation.animate,.ecom-animation.ecom-animated{opacity:1}.ecom-cart-popup{display:grid;position:fixed;inset:0;z-index:9999999;align-content:center;padding:5px;justify-content:center;align-items:center;justify-items:center}.ecom-cart-popup::before{content:' ';position:absolute;background:#e5e5e5b3;inset:0}.ecom-ajax-loading{cursor:not-allowed;pointer-events:none;opacity:.6}#ecom-toast{visibility:hidden;max-width:50px;height:60px;margin:auto;background-color:#333;color:#fff;text-align:center;border-radius:2px;position:fixed;z-index:1;left:0;right:0;bottom:30px;font-size:17px;display:grid;grid-template-columns:50px auto;align-items:center;justify-content:start;align-content:center;justify-items:start}#ecom-toast.ecom-toast-show{visibility:visible;-webkit-animation:ecomFadein .5s,ecomExpand .5s .5s,ecomStay 3s 1s,ecomShrink .5s 2s,ecomFadeout .5s 2.5s;animation:ecomFadein .5s,ecomExpand .5s .5s,ecomStay 3s 1s,ecomShrink .5s 4s,ecomFadeout .5s 4.5s}#ecom-toast #ecom-toast-icon{width:50px;height:100%;box-sizing:border-box;background-color:#111;color:#fff;padding:5px}#ecom-toast .ecom-toast-icon-svg{width:100%;height:100%;position:relative;vertical-align:middle;margin:auto;text-align:center}#ecom-toast #ecom-toast-desc{color:#fff;padding:16px;overflow:hidden;white-space:nowrap}@media (max-width: 768px){#ecom-toast #ecom-toast-desc{white-space:normal;min-width:250px}#ecom-toast{height:auto;min-height:60px}}.ecom__column-full-height{height: 100%}@-webkit-keyframes ecomFadein{from{bottom:0;opacity:0}to{bottom:30px;opacity:1}}@keyframes fadein{from{bottom:0;opacity:0}to{bottom:30px;opacity:1}}@-webkit-keyframes ecomExpand{from{min-width:50px}to{min-width:var(--ecom-max-width)}}@keyframes ecomExpand{from{min-width:50px}to{min-width:var(--ecom-max-width)}}@-webkit-keyframes ecomStay{from{min-width:var(--ecom-max-width)}to{min-width:var(--ecom-max-width)}}@keyframes ecomStay{from{min-width:var(--ecom-max-width)}to{min-width:var(--ecom-max-width)}}@-webkit-keyframes ecomShrink{from{min-width:var(--ecom-max-width)}to{min-width:50px}}@keyframes ecomShrink{from{min-width:var(--ecom-max-width)}to{min-width:50px}}@-webkit-keyframes ecomFadeout{from{bottom:30px;opacity:1}to{bottom:60px;opacity:0}}@keyframes ecomFadeout{from{bottom:30px;opacity:1}to{bottom:60px;opacity:0}}
  1010. </style>
  1011. <script type="text/javascript" id="ecom-theme-helpers" async="async">
  1012.    window.EComposer = window.EComposer || {};
  1013.    (function(){
  1014.        if(!this.configs) this.configs = {};this.configs = {"custom_code":{"custom_css":"","custom_js":""},"instagram":null};this.configs.ajax_cart = {
  1015.            enable: false
  1016.          };
  1017.        
  1018.      
  1019.       this.customer = false;
  1020.      
  1021.        this.proxy_path = '/apps/ecomposer-visual-page-builder';
  1022.        this.routes = {
  1023.            domain: 'https://momdaughts.ae',
  1024.            root_url: '/',
  1025.            collections_url: '/collections',
  1026.            all_products_collection_url: '/collections/all',
  1027.            cart_url:'/cart',
  1028.            cart_add_url:'/cart/add',
  1029.            cart_change_url:'/cart/change',
  1030.            cart_clear_url: '/cart/clear',
  1031.            cart_update_url: '/cart/update',
  1032.            product_recommendations_url: '/recommendations/products'
  1033.        };
  1034.        this.queryParams = {};
  1035.        if (window.location.search.length) {
  1036.            new URLSearchParams(window.location.search).forEach((value,key)=>{
  1037.                this.queryParams[key] = value;
  1038.            })
  1039.        }
  1040.        this.money_format = "AED. {{amount}}",
  1041.        this.money_with_currency_format = "Dhs. {{amount}} AED",
  1042.        this.currencyCodeEnabled = false,
  1043.        
  1044.        this.formatMoney=function(t,e){const r=this.currencyCodeEnabled?this.money_with_currency_format:this.money_format;function a(t,e){return void 0===t?e:t}function o(t,e,r,o){if(e=a(e,2),r=a(r,","),o=a(o,"."),isNaN(t)||null==t)return 0;var n=(t=(t/100).toFixed(e)).split(".");return n[0].replace(/(\d)(?=(\d\d\d)+(?!\d))/g,"$1"+r)+(n[1]?o+n[1]:"")}"string"==typeof t&&(t=t.replace(".",""));var n="",i=/\{\{\s*(\w+)\s*\}\}/,s=e||r;switch(s.match(i)[1]){case"amount":n=o(t,2);break;case"amount_no_decimals":n=o(t,0);break;case"amount_with_comma_separator":n=o(t,2,".",",");break;case"amount_with_space_separator":n=o(t,2," ",",");break;case"amount_with_period_and_space_separator":n=o(t,2," ",".");break;case"amount_no_decimals_with_comma_separator":n=o(t,0,".",",");break;case"amount_no_decimals_with_space_separator":n=o(t,0," ");break;case"amount_with_apostrophe_separator":n=o(t,2,"'",".")}return s.replace(i,n)},this.resizeImage=function(t,e){try{if(!e||"original"==e||"full"==e||"master"==e)return t;if(-1!==t.indexOf("cdn.shopify.com")||-1!==t.indexOf("/cdn/shop/")){var r=t.match(/\.(jpg|jpeg|gif|png|bmp|bitmap|tiff|tif|webp)((\#[0-9a-z\-]+)?(\?v=.*)?)?$/gim);if(null==r)return null;var a=t.split(r[0]),o=r[0];return a[0]+"_"+e+o}}catch(r){return t}return t},this.getProduct=function(t){if(!t)return!1;let e=("/"===this.routes.root_url?"":this.routes.root_url)+"/products/"+t+".js?shop="+Shopify.shop;return window.ECOM_LIVE&&(e="/shop/builder/ajax/ecom-proxy/products/"+t+"?shop="+Shopify.shop),window.fetch(e,{headers:{"Content-Type":"application/json"}}).then(t=>t.ok?t.json():false)};
  1045.  
  1046.        const urlParams = new URLSearchParams(window.location.search);
  1047.        if (urlParams.has('ecom-redirect')) {
  1048.            const redirectUrl = decodeURIComponent(urlParams.get('ecom-redirect'));
  1049.            window.location.href = redirectUrl;
  1050.        }
  1051.    }).bind(window.EComposer)();
  1052.    if(window.Shopify && window.Shopify.designMode && window.top && window.top.opener){
  1053.        window.addEventListener("load", function(){
  1054.            window.top.opener.postMessage({
  1055.                action: "ecomposer:loaded",
  1056.            }, "*");
  1057.        });
  1058.    }
  1059. </script>
  1060. <script type="text/javascript" id="ecom-theme-quickview" async="async">
  1061.    window.EComposer = window.EComposer || {};
  1062.      (function() {
  1063.        this.initQuickview = function() {
  1064.            var enable_qv = false;
  1065.              
  1066.            const qv_wrapper_script = document.querySelector('#ecom-quickview-template-html');
  1067.            if(!qv_wrapper_script) return;
  1068.            const ecom_quickview = document.createElement('div');
  1069.            ecom_quickview.classList.add('ecom-quickview');
  1070.            ecom_quickview.innerHTML = qv_wrapper_script.innerHTML
  1071.            document.body.prepend(ecom_quickview);
  1072.            const qv_wrapper = ecom_quickview.querySelector('.ecom-quickview__wrapper');
  1073.            
  1074.            const ecomQuickview=function(e){let t=qv_wrapper.querySelector(".ecom-quickview__content-data");if(t){let i=document.createRange().createContextualFragment(e);t.innerHTML="",t.append(i),qv_wrapper.classList.add("ecom-open");let c=new CustomEvent("ecom:quickview:init",{detail:{wrapper:qv_wrapper}});document.dispatchEvent(c),setTimeout(function(){qv_wrapper.classList.add("ecom-display")},500),closeQuickview(t)}},closeQuickview=function(e){let t=qv_wrapper.querySelector(".ecom-quickview__close-btn"),i=qv_wrapper.querySelector(".ecom-quickview__content");function c(t){let o=t.target;do{if(o==i||o&&o.classList&&o.classList.contains("ecom-modal"))return;o=o.parentNode}while(o);o!=i&&(qv_wrapper.classList.add("ecom-remove"),qv_wrapper.classList.remove("ecom-open","ecom-display","ecom-remove"),setTimeout(function(){e.innerHTML=""},300),document.removeEventListener("click",c),document.removeEventListener("keydown",n))}function n(t){(t.isComposing||27===t.keyCode)&&(qv_wrapper.classList.add("ecom-remove"),qv_wrapper.classList.remove("ecom-open","ecom-display","ecom-remove"),setTimeout(function(){e.innerHTML=""},300),document.removeEventListener("keydown",n),document.removeEventListener("click",c))}t&&t.addEventListener("click",function(t){t.preventDefault(),document.removeEventListener("click",c),document.removeEventListener("keydown",n),qv_wrapper.classList.add("ecom-remove"),qv_wrapper.classList.remove("ecom-open","ecom-display","ecom-remove"),setTimeout(function(){e.innerHTML=""},300)}),document.addEventListener("click",c),document.addEventListener("keydown",n)};function quickViewHandler(e){e&&e.preventDefault();let t=this;t.classList&&t.classList.add("ecom-loading");let i=t.classList?t.getAttribute("href"):window.location.pathname;if(i){if(window.location.search.includes("ecom_template_id")){let c=new URLSearchParams(location.search);i=window.location.pathname+"?section_id="+c.get("ecom_template_id")}else i+=(i.includes("?")?"&":"?")+"section_id=ecom-default-template-quickview";fetch(i).then(function(e){return 200==e.status?e.text():window.document.querySelector("#admin-bar-iframe")?(404==e.status?alert("Please create Ecomposer quickview template first!"):alert("Have some problem with quickview!"),t.classList&&t.classList.remove("ecom-loading"),!1):void window.open(new URL(i).pathname,"_blank")}).then(function(e){e&&(ecomQuickview(e),setTimeout(function(){t.classList&&t.classList.remove("ecom-loading")},300))}).catch(function(e){})}}
  1075.            if(window.location.search.includes('ecom_template_id'))
  1076.            {
  1077.                setTimeout(quickViewHandler,1000)
  1078.            }
  1079.            if(enable_qv) {
  1080.              const qv_buttons = document.querySelectorAll('.ecom-product-quickview');
  1081.              if(qv_buttons.length > 0) {
  1082.                qv_buttons.forEach(function(button, index) {
  1083.                    button.addEventListener('click', quickViewHandler)
  1084.                })
  1085.              }
  1086.            }
  1087.        }
  1088.    }).bind(window.EComposer)();
  1089. </script>
  1090. <script type="text/template" id="ecom-quickview-template-html">
  1091.    <div class="ecom-quickview__wrapper ecom-dn"><div class="ecom-quickview__container"><div class="ecom-quickview__content"><div class="ecom-quickview__content-inner"><div class="ecom-quickview__content-data"></div></div><span class="ecom-quickview__close-btn"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32"><g id="icomoon-ignore"></g><path d="M10.722 9.969l-0.754 0.754 5.278 5.278-5.253 5.253 0.754 0.754 5.253-5.253 5.253 5.253 0.754-0.754-5.253-5.253 5.278-5.278-0.754-0.754-5.278 5.278z" fill="#000000"></path></svg></span></div></div></div>
  1092. </script>
  1093. <style type="text/css" class="ecom-theme-quickview">
  1094. .ecom-quickview .ecom-animation{opacity: 1}.ecom-quickview__wrapper{opacity:0;display:none;pointer-events:none}.ecom-quickview__wrapper.ecom-open{position:fixed;top:0;left:0;right:0;bottom:0;display:block;pointer-events:auto;z-index:100000;outline:0!important;-webkit-backface-visibility:hidden;opacity:1;transition:all .1s}.ecom-quickview__container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box;opacity:0;background-color:rgba(0,0,0,.8);transition:opacity .1s}.ecom-quickview__container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.ecom-quickview__wrapper.ecom-display .ecom-quickview__content{visibility:visible;opacity:1;transform:none;-webkit-transform:none}.ecom-quickview__content{position:relative;display:inline-block;opacity:0;visibility:hidden;-webkit-transition:opacity .1s,-webkit-transform .1s;transition:transform .1s,opacity .1s,-webkit-transform .1s;-webkit-transform:translateX(-100px);transform:translateX(-100px)}.ecom-quickview__content-inner{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:999;overflow-y:auto;max-height:80vh}.ecom-quickview__content-data>.shopify-section{margin:0 auto;max-width:980px;overflow:hidden;position:relative;background-color:#fff;opacity:0}.ecom-quickview__wrapper.ecom-display .ecom-quickview__content-data>.shopify-section{opacity:1;-webkit-transform:none;transform:none}.ecom-quickview__wrapper.ecom-display .ecom-quickview__container{opacity:1}.ecom-quickview__wrapper.ecom-remove #shopify-section-ecom-default-template-quickview{opacity:0;-webkit-transform:translateX(100px);transform:translateX(100px)}.ecom-quickview__close-btn{position:fixed!important;top:0;right:0;transform:none;background-color:transparent;color:#000;opacity:0;width:40px;height:40px;-webkit-transition:.25s;transition:.25s;z-index:9999}.ecom-quickview__close-btn{stroke: #fff}.ecom-quickview__wrapper.ecom-display .ecom-quickview__close-btn{opacity:1}.ecom-quickview__close-btn:hover{cursor:pointer}@media screen and (max-width:1024px){.ecom-quickview__content{position:absolute;inset:0;margin:50px 15px;display:flex}.ecom-quickview__close-btn{right:0}}.ecom-toast-icon-info{display:none}.ecom-toast-error .ecom-toast-icon-info{display:inline!important}.ecom-toast-error .ecom-toast-icon-success{display:none!important} .ecom-toast-icon-success{fill:#fff;width:35px}
  1095. </style>
  1096. <script type="text/template" id="ecom-template-html">
  1097.    <!-- BEGIN app snippet: ecom-toast --><div id="ecom-toast"><div id="ecom-toast-icon"><svg xmlns="http://www.w3.org/2000/svg" class="ecom-toast-icon-svg ecom-toast-icon-info" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>
  1098. <svg class="ecom-toast-icon-svg ecom-toast-icon-success" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 48c110.5 0 200 89.5 200 200 0 110.5-89.5 200-200 200-110.5 0-200-89.5-200-200 0-110.5 89.5-200 200-200m140.2 130.3l-22.5-22.7c-4.7-4.7-12.3-4.7-17-.1L215.3 303.7l-59.8-60.3c-4.7-4.7-12.3-4.7-17-.1l-22.7 22.5c-4.7 4.7-4.7 12.3-.1 17l90.8 91.5c4.7 4.7 12.3 4.7 17 .1l172.6-171.2c4.7-4.7 4.7-12.3 .1-17z"/></svg>
  1099. </div><div id="ecom-toast-desc"></div></div><!-- END app snippet -->
  1100. </script>
  1101. <!-- END app block --><!-- BEGIN app block: shopify://apps/rt-whatsapp-chat-live-chat/blocks/app-embed/9baee9b7-6929-47af-9935-05bcdc376396 --><script>
  1102.  window.roarJs = window.roarJs || {};
  1103.  roarJs.WhatsAppConfig = {
  1104.    metafields: {
  1105.      shop: "nxncvn-hf.myshopify.com",
  1106.      settings: {"enabled":"1","block_order":["1492096252560"],"blocks":{"1492096252560":{"disabled":"0","type":"whatsapp","number":"+1 (555) 707-3608","whatsapp_web":"1","name":"MomDaughts","label":"Support","avatar":"0","avatar_url":"https:\/\/www.gravatar.com\/avatar","online":"1","timezone":"America\/New_York","sunday":{"enabled":"1","range":"480,1050"},"monday":{"enabled":"1","range":"480,1050"},"tuesday":{"enabled":"1","range":"480,1050"},"wednesday":{"enabled":"1","range":"480,1050"},"thursday":{"enabled":"1","range":"480,1050"},"friday":{"enabled":"1","range":"480,1050"},"saturday":{"enabled":"1","range":"480,1050"},"offline":"I will be back soon","chat":{"enabled":"1","greeting":"Hello!."},"message":"","page_url":"0"}},"param":{"newtab":"0","offline_disabled":"0","offline_message":"1","greeting":{"enabled":"0","message":"Hi there! How can we help you? Tap here to start chat with us.","delay":"5"},"pending":{"enabled":"1","number":"1","color":"#ffffff","background":"#dd0000"},"position":{"value":"right","bottom":"20","left":"20","right":"20"},"cta_type":"all"},"mobile":{"enabled":"1","position":{"value":"inherit","bottom":"20","left":"20","right":"20"}},"style":{"gradient":"preset","pattern":"0","custom":{"color":"#ffffff","background":"#2db67c"},"icon":"3","rounded":"0"},"share":{"block_order":["facebook","twitter","whatsapp"],"blocks":{"facebook":{"type":"facebook","label":"Share on Facebook"},"twitter":{"type":"twitter","label":"Share on Twitter"},"whatsapp":{"type":"whatsapp","label":"Share on Whatsapp"}},"param":{"enabled":"0","position":"left"},"mobile":{"enabled":"1","position":"inherit"},"style":{"color":"#000000","background":"#ffffff"},"texts":{"button":"Share","message":"Check this out, it's so cool!"}},"charge":false,"onetime":false,"track_url":"https:\/\/haloroar.com\/app\/whatsapp\/tracking","texts":{"title":"Hi there 👋","description":"Welcome to Social Chat and Share. Ask us anything 🎉","note":"We typically reply within a few minutes","button":"Chat with us","placeholder":"Send a message…","emoji_search":"Search emoji…","emoji_frequently":"Frequently used","emoji_people":"People","emoji_nature":"Nature","emoji_objects":"Objects","emoji_places":"Places","emoji_symbols":"Symbols","emoji_not_found":"No emoji could be found"},"only1":"true"},
  1107.      moneyFormat: "AED. {{amount}}"
  1108.    }
  1109.  }
  1110. </script>
  1111.  
  1112.  
  1113. <!-- END app block --><script src="https://cdn.shopify.com/extensions/29f72a26-8efb-48ac-bb25-4405c167a30c/ecomposer-builder-42/assets/ecom.js" type="text/javascript" defer="defer"></script>
  1114. <script src="https://cdn.shopify.com/extensions/7ee0413a-f1ec-4d2b-95fb-a1e6a6721c36/1.0.0/assets/whatsapp.js" type="text/javascript" defer="defer"></script>
  1115. <link href="https://cdn.shopify.com/extensions/7ee0413a-f1ec-4d2b-95fb-a1e6a6721c36/1.0.0/assets/whatsapp.css" rel="stylesheet" type="text/css" media="all">
  1116. <script src="https://cdn.shopify.com/extensions/f8e542ba-0929-453c-a69e-8534b5d7c180/infinite-fb-tiktok-pixels-272/assets/embede.js" type="text/javascript" defer="defer"></script>
  1117. <script src="https://cdn.shopify.com/extensions/c8f68b0c-a4bd-4517-9f03-9531915826ed/searchpie-seo-speed-112/assets/local-seo.js" type="text/javascript" defer="defer"></script>
  1118. <link href="https://cdn.shopify.com/extensions/c8f68b0c-a4bd-4517-9f03-9531915826ed/searchpie-seo-speed-112/assets/local-seo.css" rel="stylesheet" type="text/css" media="all">
  1119. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1120. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 64606339150,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  1121. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=o?o:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{!function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=document.createElement("script"),s=document.querySelector("head"),l=document.querySelector("body");if(t.async=n,t.src=d,a&&(t.integrity=a,t.crossOrigin="anonymous"),o&&t.addEventListener("load",o),i&&t.addEventListener("error",i),s)s.appendChild(t);else{if(!l)throw new Error("Did not find a head or body element to append the script");l.appendChild(t)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){"object"==typeof e&&(e.browserTarget=l);var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:""}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 64606339150,storefrontBaseUrl: "https://momdaughts.ae",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["6a396365"],webPixelsConfigList: [{"id":"696614990","configuration":"{\"pixelCode\":\"CV9CQ8RC77U76UBU9R00\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"685932622","configuration":"{\"accountID\":\"28613\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"1ac3d6707ed85e2fcfb9beaed1969288","type":"APP","apiClientId":34503065601,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"634388558","configuration":"{\"url\":\"https://events.realtimestack.com\",\"shop\":\"nxncvn-hf.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"883c02bd7769698b4c9e65ad85b45730","type":"APP","apiClientId":4759791,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"634355790","configuration":"{\"Events\":\"[\\\"cart_viewed\\\",\\\"product_added_to_cart\\\",\\\"product_removed_from_cart\\\",\\\"product_viewed\\\",\\\"collection_viewed\\\",\\\"checkout_completed\\\"]\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"79a1e86bb6e70585442796ba37ff1c56","type":"APP","apiClientId":98763309057,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"599982158","configuration":"{\"pixel_id\":\"1126983885787644\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"8d894c63179843e74a9691414b5ad83d","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"591560782","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"GT-NMC3Z7FT\\\",\\\"target_country\\\":\\\"AE\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":\\\"MC-6XZ0LX0DCD\\\"},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":\\\"MC-6XZ0LX0DCD\\\"},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":\\\"MC-6XZ0LX0DCD\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"322b4d09e15b68127cd86b1bb8929c25","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"92635214","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":["SALE_OF_DATA"],"name":"MomDaughts UAE Tiktok"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0402","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0402","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "",initData: {"shop":{"name":"MomDaughts UAE","paymentSettings":{"currencyCode":"AED"},"myshopifyDomain":"nxncvn-hf.myshopify.com","countryCode":"AE","storefrontUrl":"https://momdaughts.ae"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://momdaughts.ae/cdn","25defc1cw623deafep7265ec1cm5d91da82",{"modern":"","legacy":""});</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1122. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1123. window.ShopifyAnalytics.meta.currency = 'AED';
  1124. var meta = {"page":{"pageType":"home"}};
  1125. for (var attr in meta) {
  1126.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1127. }</script>
  1128. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1129.  
  1130. };
  1131. </script>
  1132. <script class="analytics">(function () {
  1133.    var customDocumentWrite = function(content) {
  1134.      var jquery = null;
  1135.  
  1136.      if (window.jQuery) {
  1137.        jquery = window.jQuery;
  1138.      } else if (window.Checkout && window.Checkout.$) {
  1139.        jquery = window.Checkout.$;
  1140.      }
  1141.  
  1142.      if (jquery) {
  1143.        jquery('body').append(content);
  1144.      }
  1145.    };
  1146.  
  1147.    var hasLoggedConversion = function(token) {
  1148.      if (token) {
  1149.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1150.      }
  1151.      return false;
  1152.    }
  1153.  
  1154.    var setCookieIfConversion = function(token) {
  1155.      if (token) {
  1156.        var twoMonthsFromNow = new Date(Date.now());
  1157.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1158.  
  1159.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1160.      }
  1161.    }
  1162.  
  1163.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1164.    if (trekkie.integrations) {
  1165.      return;
  1166.    }
  1167.    trekkie.methods = [
  1168.      'identify',
  1169.      'page',
  1170.      'ready',
  1171.      'track',
  1172.      'trackForm',
  1173.      'trackLink'
  1174.    ];
  1175.    trekkie.factory = function(method) {
  1176.      return function() {
  1177.        var args = Array.prototype.slice.call(arguments);
  1178.        args.unshift(method);
  1179.        trekkie.push(args);
  1180.        return trekkie;
  1181.      };
  1182.    };
  1183.    for (var i = 0; i < trekkie.methods.length; i++) {
  1184.      var key = trekkie.methods[i];
  1185.      trekkie[key] = trekkie.factory(key);
  1186.    }
  1187.    trekkie.load = function(config) {
  1188.      trekkie.config = config || {};
  1189.      trekkie.config.initialDocumentCookie = document.cookie;
  1190.      var first = document.getElementsByTagName('script')[0];
  1191.      var script = document.createElement('script');
  1192.      script.type = 'text/javascript';
  1193.      script.onerror = function(e) {
  1194.        var scriptFallback = document.createElement('script');
  1195.        scriptFallback.type = 'text/javascript';
  1196.        scriptFallback.onerror = function(error) {
  1197.                var Monorail = {
  1198.      produce: function produce(monorailDomain, schemaId, payload) {
  1199.        var currentMs = new Date().getTime();
  1200.        var event = {
  1201.          schema_id: schemaId,
  1202.          payload: payload,
  1203.          metadata: {
  1204.            event_created_at_ms: currentMs,
  1205.            event_sent_at_ms: currentMs
  1206.          }
  1207.        };
  1208.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1209.      },
  1210.      sendRequest: function sendRequest(endpointUrl, payload) {
  1211.        // Try the sendBeacon API
  1212.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1213.          var blobData = new window.Blob([payload], {
  1214.            type: 'text/plain'
  1215.          });
  1216.  
  1217.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1218.            return true;
  1219.          } // sendBeacon was not successful
  1220.  
  1221.        } // XHR beacon
  1222.  
  1223.        var xhr = new XMLHttpRequest();
  1224.  
  1225.        try {
  1226.          xhr.open('POST', endpointUrl);
  1227.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1228.          xhr.send(payload);
  1229.        } catch (e) {
  1230.          console.log(e);
  1231.        }
  1232.  
  1233.        return false;
  1234.      },
  1235.      isIos12: function isIos12() {
  1236.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1237.      }
  1238.    };
  1239.    Monorail.produce('monorail-edge.shopifysvc.com',
  1240.      'trekkie_storefront_load_errors/1.1',
  1241.      {shop_id: 64606339150,
  1242.      theme_id: 135963705422,
  1243.      app_name: "storefront",
  1244.      context_url: window.location.href,
  1245.      source_url: "//momdaughts.ae/cdn/s/trekkie.storefront.136cfbbe654ea03adb18db0fd28f0c86c2cdc84e.min.js"});
  1246.  
  1247.        };
  1248.        scriptFallback.async = true;
  1249.        scriptFallback.src = '//momdaughts.ae/cdn/s/trekkie.storefront.136cfbbe654ea03adb18db0fd28f0c86c2cdc84e.min.js';
  1250.        first.parentNode.insertBefore(scriptFallback, first);
  1251.      };
  1252.      script.async = true;
  1253.      script.src = '//momdaughts.ae/cdn/s/trekkie.storefront.136cfbbe654ea03adb18db0fd28f0c86c2cdc84e.min.js';
  1254.      first.parentNode.insertBefore(script, first);
  1255.    };
  1256.    trekkie.load(
  1257.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":64606339150,"isMerchantRequest":null,"themeId":135963705422,"themeCityHash":"4062502677896684771","contentLanguage":"en","currency":"AED"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1258.    );
  1259.  
  1260.    var loaded = false;
  1261.    trekkie.ready(function() {
  1262.      if (loaded) return;
  1263.      loaded = true;
  1264.  
  1265.      window.ShopifyAnalytics.lib = window.trekkie;
  1266.  
  1267.  
  1268.      var originalDocumentWrite = document.write;
  1269.      document.write = customDocumentWrite;
  1270.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1271.      document.write = originalDocumentWrite;
  1272.  
  1273.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1274.  
  1275.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1276.      var token = match? match[1]: undefined;
  1277.      if (!hasLoggedConversion(token)) {
  1278.        setCookieIfConversion(token);
  1279.        
  1280.      }
  1281.    });
  1282.  
  1283.  
  1284.        var eventsListenerScript = document.createElement('script');
  1285.        eventsListenerScript.async = true;
  1286.        eventsListenerScript.src = "//momdaughts.ae/cdn/shopifycloud/shopify/assets/shop_events_listener-bbbf3223c550be0dd72914a2fa06aaa88eb8943e96f9ea31fb63e7e27e0f97f4.js";
  1287.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1288.  
  1289. })();</script>
  1290. <script
  1291.  defer
  1292.  src="https://momdaughts.ae/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.4.0.min.js"
  1293.  data-application="storefront-renderer"
  1294.  data-shop-id="64606339150"
  1295.  data-render-region="gcp-us-east1"
  1296.  data-page-type="index"
  1297.  data-theme-instance-id="135963705422"
  1298.  data-monorail-region="shop_domain"
  1299.  data-resource-timing-sampling-rate="10"
  1300. ></script>
  1301. </head>
  1302.  
  1303.  <body class="gradient animate--hover-default">
  1304.    <!-- Google Tag Manager (noscript) -->
  1305. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NQXRXMZ9"
  1306. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  1307. <!-- End Google Tag Manager (noscript) -->
  1308.    <a class="skip-to-content-link button visually-hidden" href="#MainContent">
  1309.      Skip to content
  1310.    </a><!-- BEGIN sections: header-group -->
  1311. <div id="shopify-section-sections--17173044559950__announcement-bar" class="shopify-section shopify-section-group-header-group announcement-bar-section"><link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slideshow.css?v=17933591812325749411736691106" rel="stylesheet" type="text/css" media="all" />
  1312. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  1313.  
  1314.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-social.css?v=35792976012981934991736691106" rel="stylesheet" type="text/css" media="all" />
  1315.  
  1316.  
  1317. <div
  1318.  class="utility-bar color-scheme-4 gradient utility-bar--bottom-border"
  1319.  
  1320. >
  1321.  <div class="page-width utility-bar__grid"><div
  1322.        class="announcement-bar"
  1323.        role="region"
  1324.        aria-label="Announcement"
  1325.        
  1326.      ><p class="announcement-bar__message h5">
  1327.            <span>Enjoy free shipping on orders over 100 AED!</span></p></div><div class="localization-wrapper">
  1328. </div>
  1329.  </div>
  1330. </div>
  1331.  
  1332.  
  1333. </div><div id="shopify-section-sections--17173044559950__header" class="shopify-section shopify-section-group-header-group section-header"><link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-menu.css?v=151968516119678728991736691106" media="print" onload="this.media='all'">
  1334. <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-search.css?v=165164710990765432851736691106" media="print" onload="this.media='all'">
  1335. <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-menu-drawer.css?v=147478906057189667651736691106" media="print" onload="this.media='all'">
  1336. <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-cart-notification.css?v=54116361853792938221736691105" media="print" onload="this.media='all'"><link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" media="print" onload="this.media='all'"><link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-mega-menu.css?v=10110889665867715061736691106" media="print" onload="this.media='all'"><style>
  1337.  header-drawer {
  1338.    justify-self: start;
  1339.    margin-left: -1.2rem;
  1340.  }@media screen and (min-width: 990px) {
  1341.      header-drawer {
  1342.        display: none;
  1343.      }
  1344.    }.menu-drawer-container {
  1345.    display: flex;
  1346.  }
  1347.  
  1348.  .list-menu {
  1349.    list-style: none;
  1350.    padding: 0;
  1351.    margin: 0;
  1352.  }
  1353.  
  1354.  .list-menu--inline {
  1355.    display: inline-flex;
  1356.    flex-wrap: wrap;
  1357.  }
  1358.  
  1359.  summary.list-menu__item {
  1360.    padding-right: 2.7rem;
  1361.  }
  1362.  
  1363.  .list-menu__item {
  1364.    display: flex;
  1365.    align-items: center;
  1366.    line-height: calc(1 + 0.3 / var(--font-body-scale));
  1367.  }
  1368.  
  1369.  .list-menu__item--link {
  1370.    text-decoration: none;
  1371.    padding-bottom: 1rem;
  1372.    padding-top: 1rem;
  1373.    line-height: calc(1 + 0.8 / var(--font-body-scale));
  1374.  }
  1375.  
  1376.  @media screen and (min-width: 750px) {
  1377.    .list-menu__item--link {
  1378.      padding-bottom: 0.5rem;
  1379.      padding-top: 0.5rem;
  1380.    }
  1381.  }
  1382. </style><style data-shopify>.header {
  1383.    padding: 2px 3rem 2px 3rem;
  1384.  }
  1385.  
  1386.  .section-header {
  1387.    position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
  1388.    margin-bottom: 0px;
  1389.  }
  1390.  
  1391.  @media screen and (min-width: 750px) {
  1392.    .section-header {
  1393.      margin-bottom: 0px;
  1394.    }
  1395.  }
  1396.  
  1397.  @media screen and (min-width: 990px) {
  1398.    .header {
  1399.      padding-top: 4px;
  1400.      padding-bottom: 4px;
  1401.    }
  1402.  }</style><script src="//momdaughts.ae/cdn/shop/t/4/assets/cart-notification.js?v=133508293167896966491736691105" defer="defer"></script><sticky-header data-sticky-type="on-scroll-up" class="header-wrapper color-scheme-1 gradient"><header class="header header--middle-left header--mobile-center page-width header--has-menu header--has-social header--has-account">
  1403.  
  1404. <header-drawer data-breakpoint="tablet">
  1405.  <details id="Details-menu-drawer-container" class="menu-drawer-container">
  1406.    <summary
  1407.      class="header__icon header__icon--menu header__icon--summary link focus-inset"
  1408.      aria-label="Menu"
  1409.    >
  1410.      <span><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-hamburger" viewBox="0 0 18 16"><path fill="currentColor" d="M1 .5a.5.5 0 1 0 0 1h15.71a.5.5 0 0 0 0-1zM.5 8a.5.5 0 0 1 .5-.5h15.71a.5.5 0 0 1 0 1H1A.5.5 0 0 1 .5 8m0 7a.5.5 0 0 1 .5-.5h15.71a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5"/></svg>
  1411. <svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  1412. </span>
  1413.    </summary>
  1414.    <div id="menu-drawer" class="gradient menu-drawer motion-reduce color-scheme-1">
  1415.      <div class="menu-drawer__inner-container">
  1416.        <div class="menu-drawer__navigation-container">
  1417.          <nav class="menu-drawer__navigation">
  1418.            <ul class="menu-drawer__menu has-submenu list-menu" role="list"><li><a
  1419.                      id="HeaderDrawer-home"
  1420.                      href="/"
  1421.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset menu-drawer__menu-item--active"
  1422.                      
  1423.                        aria-current="page"
  1424.                      
  1425.                    >
  1426.                      Home
  1427.                    </a></li><li><a
  1428.                      id="HeaderDrawer-catalog"
  1429.                      href="/collections/all"
  1430.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1431.                      
  1432.                    >
  1433.                      Catalog
  1434.                    </a></li><li><details id="Details-menu-drawer-menu-item-3">
  1435.                      <summary
  1436.                        id="HeaderDrawer-mother-baby"
  1437.                        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1438.                      >
  1439.                        Mother &amp; Baby
  1440.                        <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  1441. </span>
  1442.                        <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  1443. </span>
  1444.                      </summary>
  1445.                      <div
  1446.                        id="link-mother-baby"
  1447.                        class="menu-drawer__submenu has-submenu gradient motion-reduce"
  1448.                        tabindex="-1"
  1449.                      >
  1450.                        <div class="menu-drawer__inner-submenu">
  1451.                          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
  1452.                            <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  1453. </span>
  1454.                            Mother &amp; Baby
  1455.                          </button>
  1456.                          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
  1457.                                    id="HeaderDrawer-mother-baby-breast-pumps"
  1458.                                    href="/collections/breast-pumps"
  1459.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1460.                                    
  1461.                                  >
  1462.                                    Breast Pumps
  1463.                                  </a></li><li><a
  1464.                                    id="HeaderDrawer-mother-baby-mother-care"
  1465.                                    href="/collections/mother-care"
  1466.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1467.                                    
  1468.                                  >
  1469.                                    Mother Care
  1470.                                  </a></li></ul>
  1471.                        </div>
  1472.                      </div>
  1473.                    </details></li><li><details id="Details-menu-drawer-menu-item-4">
  1474.                      <summary
  1475.                        id="HeaderDrawer-personal-care"
  1476.                        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1477.                      >
  1478.                        Personal Care
  1479.                        <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  1480. </span>
  1481.                        <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  1482. </span>
  1483.                      </summary>
  1484.                      <div
  1485.                        id="link-personal-care"
  1486.                        class="menu-drawer__submenu has-submenu gradient motion-reduce"
  1487.                        tabindex="-1"
  1488.                      >
  1489.                        <div class="menu-drawer__inner-submenu">
  1490.                          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
  1491.                            <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  1492. </span>
  1493.                            Personal Care
  1494.                          </button>
  1495.                          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
  1496.                                    id="HeaderDrawer-personal-care-menstrual-collection"
  1497.                                    href="/collections/menstrual-cups"
  1498.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1499.                                    
  1500.                                  >
  1501.                                    Menstrual Collection
  1502.                                  </a></li><li><a
  1503.                                    id="HeaderDrawer-personal-care-hair-care"
  1504.                                    href="/collections/hair-care"
  1505.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1506.                                    
  1507.                                  >
  1508.                                    Hair Care
  1509.                                  </a></li></ul>
  1510.                        </div>
  1511.                      </div>
  1512.                    </details></li><li><a
  1513.                      id="HeaderDrawer-about-us"
  1514.                      href="/pages/about-us"
  1515.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1516.                      
  1517.                    >
  1518.                      About Us
  1519.                    </a></li></ul>
  1520.          </nav>
  1521.          <div class="menu-drawer__utility-links"><a
  1522.                href="https://shopify.com/64606339150/account?locale=en&region_country=AE"
  1523.                class="menu-drawer__account link focus-inset h5 medium-hide large-up-hide"
  1524.              ><account-icon><span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-account" viewBox="0 0 18 19"><path fill="currentColor" fill-rule="evenodd" d="M6 4.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8m5.58 12.15c1.12.82 1.83 2.24 1.91 4.85H1.51c.08-2.6.79-4.03 1.9-4.85C4.66 11.75 6.5 11.5 9 11.5s4.35.26 5.58 1.15M9 10.5c-2.5 0-4.65.24-6.17 1.35C1.27 12.98.5 14.93.5 18v.5h17V18c0-3.07-.77-5.02-2.33-6.15-1.52-1.1-3.67-1.35-6.17-1.35" clip-rule="evenodd"/></svg>
  1525. </span></account-icon>Log in</a><div class="menu-drawer__localization header-localization">
  1526. </div><ul class="list list-social list-unstyled" role="list"><li class="list-social__item">
  1527.                  <a href="https://twitter.com/momdaughts" class="list-social__link link">
  1528.                    <span class="svg-wrapper"><svg class="icon icon-twitter" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M7.273 2.8 10.8 7.822 15.218 2.8h1.768l-5.4 6.139 5.799 8.254h-4.658l-3.73-5.31-4.671 5.31H2.558l5.654-6.427L2.615 2.8zm6.242 13.125L5.07 4.109h1.405l8.446 11.816z" clip-rule="evenodd"/></svg>
  1529. </span>
  1530.                    <span class="visually-hidden">X (Twitter)</span>
  1531.                  </a>
  1532.                </li><li class="list-social__item">
  1533.                  <a href="https://www.facebook.com/momdaughts.ae" class="list-social__link link">
  1534.                    <span class="svg-wrapper"><svg class="icon icon-facebook" viewBox="0 0 20 20"><path fill="currentColor" d="M18 10.049C18 5.603 14.419 2 10 2s-8 3.603-8 8.049C2 14.067 4.925 17.396 8.75 18v-5.624H6.719v-2.328h2.03V8.275c0-2.017 1.195-3.132 3.023-3.132.874 0 1.79.158 1.79.158v1.98h-1.009c-.994 0-1.303.621-1.303 1.258v1.51h2.219l-.355 2.326H11.25V18c3.825-.604 6.75-3.933 6.75-7.951"/></svg>
  1535. </span>
  1536.                    <span class="visually-hidden">Facebook</span>
  1537.                  </a>
  1538.                </li><li class="list-social__item">
  1539.                  <a href="https://www.instagram.com/momdaughts.ae" class="list-social__link link">
  1540.                    <span class="svg-wrapper"><svg class="icon icon-instagram" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M13.23 3.492c-.84-.037-1.096-.046-3.23-.046-2.144 0-2.39.01-3.238.055-.776.027-1.195.164-1.487.273a2.4 2.4 0 0 0-.912.593 2.5 2.5 0 0 0-.602.922c-.11.282-.238.702-.274 1.486-.046.84-.046 1.095-.046 3.23s.01 2.39.046 3.229c.004.51.097 1.016.274 1.495.145.365.319.639.602.913.282.282.538.456.92.602.474.176.974.268 1.479.273.848.046 1.103.046 3.238.046s2.39-.01 3.23-.046c.784-.036 1.203-.164 1.486-.273.374-.146.648-.329.921-.602.283-.283.447-.548.602-.922.177-.476.27-.979.274-1.486.037-.84.046-1.095.046-3.23s-.01-2.39-.055-3.229c-.027-.784-.164-1.204-.274-1.495a2.4 2.4 0 0 0-.593-.913 2.6 2.6 0 0 0-.92-.602c-.284-.11-.703-.237-1.488-.273ZM6.697 2.05c.857-.036 1.131-.045 3.302-.045a63 63 0 0 1 3.302.045c.664.014 1.321.14 1.943.374a4 4 0 0 1 1.414.922c.41.397.728.88.93 1.414.23.622.354 1.279.365 1.942C18 7.56 18 7.824 18 10.005c0 2.17-.01 2.444-.046 3.292-.036.858-.173 1.442-.374 1.943-.2.53-.474.976-.92 1.423a3.9 3.9 0 0 1-1.415.922c-.51.191-1.095.337-1.943.374-.857.036-1.122.045-3.302.045-2.171 0-2.445-.009-3.302-.055-.849-.027-1.432-.164-1.943-.364a4.15 4.15 0 0 1-1.414-.922 4.1 4.1 0 0 1-.93-1.423c-.183-.51-.329-1.085-.365-1.943C2.009 12.45 2 12.167 2 10.004c0-2.161 0-2.435.055-3.302.027-.848.164-1.432.365-1.942a4.4 4.4 0 0 1 .92-1.414 4.2 4.2 0 0 1 1.415-.93c.51-.183 1.094-.33 1.943-.366Zm.427 4.806a4.105 4.105 0 1 1 5.805 5.805 4.105 4.105 0 0 1-5.805-5.805m1.882 5.371a2.668 2.668 0 1 0 2.042-4.93 2.668 2.668 0 0 0-2.042 4.93m5.922-5.942a.958.958 0 1 1-1.355-1.355.958.958 0 0 1 1.355 1.355" clip-rule="evenodd"/></svg>
  1541. </span>
  1542.                    <span class="visually-hidden">Instagram</span>
  1543.                  </a>
  1544.                </li></ul>
  1545.          </div>
  1546.        </div>
  1547.      </div>
  1548.    </div>
  1549.  </details>
  1550. </header-drawer>
  1551. <h1 class="header__heading"><a href="/" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper">
  1552.                
  1553.                <img src="//momdaughts.ae/cdn/shop/files/Logo_Main_Cropped.png?v=1736422504&amp;width=600" alt="MomDaughts UAE" srcset="//momdaughts.ae/cdn/shop/files/Logo_Main_Cropped.png?v=1736422504&amp;width=150 150w, //momdaughts.ae/cdn/shop/files/Logo_Main_Cropped.png?v=1736422504&amp;width=225 225w, //momdaughts.ae/cdn/shop/files/Logo_Main_Cropped.png?v=1736422504&amp;width=300 300w" width="150" height="58.33333333333333" loading="eager" class="header__heading-logo motion-reduce" sizes="(max-width: 300px) 50vw, 150px">
  1554.              </div></a></h1>
  1555.  
  1556. <nav class="header__inline-menu">
  1557.  <ul class="list-menu list-menu--inline" role="list"><li><a
  1558.            id="HeaderMenu-home"
  1559.            href="/"
  1560.            class="header__menu-item list-menu__item link link--text focus-inset"
  1561.            
  1562.              aria-current="page"
  1563.            
  1564.          >
  1565.            <span
  1566.                class="header__active-menu-item"
  1567.              
  1568.            >Home</span>
  1569.          </a></li><li><a
  1570.            id="HeaderMenu-catalog"
  1571.            href="/collections/all"
  1572.            class="header__menu-item list-menu__item link link--text focus-inset"
  1573.            
  1574.          >
  1575.            <span
  1576.            >Catalog</span>
  1577.          </a></li><li><header-menu>
  1578.            <details id="Details-HeaderMenu-3" class="mega-menu">
  1579.              <summary
  1580.                id="HeaderMenu-mother-baby"
  1581.                class="header__menu-item list-menu__item link focus-inset"
  1582.              >
  1583.                <span
  1584.                >Mother &amp; Baby</span><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  1585. </summary>
  1586.              <div
  1587.                id="MegaMenu-Content-3"
  1588.                class="mega-menu__content color-scheme-1 gradient motion-reduce global-settings-popup"
  1589.                tabindex="-1"
  1590.              >
  1591.                <ul
  1592.                  class="mega-menu__list page-width mega-menu__list--condensed"
  1593.                  role="list"
  1594.                ><li>
  1595.                      <a
  1596.                        id="HeaderMenu-mother-baby-breast-pumps"
  1597.                        href="/collections/breast-pumps"
  1598.                        class="mega-menu__link mega-menu__link--level-2 link"
  1599.                        
  1600.                      >
  1601.                        Breast Pumps
  1602.                      </a></li><li>
  1603.                      <a
  1604.                        id="HeaderMenu-mother-baby-mother-care"
  1605.                        href="/collections/mother-care"
  1606.                        class="mega-menu__link mega-menu__link--level-2 link"
  1607.                        
  1608.                      >
  1609.                        Mother Care
  1610.                      </a></li></ul>
  1611.              </div>
  1612.            </details>
  1613.          </header-menu></li><li><header-menu>
  1614.            <details id="Details-HeaderMenu-4" class="mega-menu">
  1615.              <summary
  1616.                id="HeaderMenu-personal-care"
  1617.                class="header__menu-item list-menu__item link focus-inset"
  1618.              >
  1619.                <span
  1620.                >Personal Care</span><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  1621. </summary>
  1622.              <div
  1623.                id="MegaMenu-Content-4"
  1624.                class="mega-menu__content color-scheme-1 gradient motion-reduce global-settings-popup"
  1625.                tabindex="-1"
  1626.              >
  1627.                <ul
  1628.                  class="mega-menu__list page-width mega-menu__list--condensed"
  1629.                  role="list"
  1630.                ><li>
  1631.                      <a
  1632.                        id="HeaderMenu-personal-care-menstrual-collection"
  1633.                        href="/collections/menstrual-cups"
  1634.                        class="mega-menu__link mega-menu__link--level-2 link"
  1635.                        
  1636.                      >
  1637.                        Menstrual Collection
  1638.                      </a></li><li>
  1639.                      <a
  1640.                        id="HeaderMenu-personal-care-hair-care"
  1641.                        href="/collections/hair-care"
  1642.                        class="mega-menu__link mega-menu__link--level-2 link"
  1643.                        
  1644.                      >
  1645.                        Hair Care
  1646.                      </a></li></ul>
  1647.              </div>
  1648.            </details>
  1649.          </header-menu></li><li><a
  1650.            id="HeaderMenu-about-us"
  1651.            href="/pages/about-us"
  1652.            class="header__menu-item list-menu__item link link--text focus-inset"
  1653.            
  1654.          >
  1655.            <span
  1656.            >About Us</span>
  1657.          </a></li></ul>
  1658. </nav>
  1659.  
  1660. <div class="header__icons">
  1661.      <div class="desktop-localization-wrapper">
  1662. </div>
  1663.      
  1664.  
  1665. <details-modal class="header__search">
  1666.  <details>
  1667.    <summary
  1668.      class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle"
  1669.      aria-haspopup="dialog"
  1670.      aria-label="Search"
  1671.    >
  1672.      <span>
  1673.        <span class="svg-wrapper"><svg fill="none" class="icon icon-search" viewBox="0 0 18 19"><path fill="currentColor" fill-rule="evenodd" d="M11.03 11.68A5.784 5.784 0 1 1 2.85 3.5a5.784 5.784 0 0 1 8.18 8.18m.26 1.12a6.78 6.78 0 1 1 .72-.7l5.4 5.4a.5.5 0 1 1-.71.7z" clip-rule="evenodd"/></svg>
  1674. </span>
  1675.        <span class="svg-wrapper header__icon-close"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  1676. </span>
  1677.      </span>
  1678.    </summary>
  1679.    <div
  1680.      class="search-modal modal__content gradient"
  1681.      role="dialog"
  1682.      aria-modal="true"
  1683.      aria-label="Search"
  1684.    >
  1685.      <div class="modal-overlay"></div>
  1686.      <div
  1687.        class="search-modal__content search-modal__content-top"
  1688.        tabindex="-1"
  1689.      ><predictive-search class="search-modal__form" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="search search-modal__form">
  1690.          <div class="field">
  1691.            <input
  1692.              class="search__input field__input"
  1693.              id="Search-In-Modal"
  1694.              type="search"
  1695.              name="q"
  1696.              value=""
  1697.              placeholder="Search"role="combobox"
  1698.                aria-expanded="false"
  1699.                aria-owns="predictive-search-results"
  1700.                aria-controls="predictive-search-results"
  1701.                aria-haspopup="listbox"
  1702.                aria-autocomplete="list"
  1703.                autocorrect="off"
  1704.                autocomplete="off"
  1705.                autocapitalize="off"
  1706.                spellcheck="false">
  1707.            <label class="field__label" for="Search-In-Modal">Search</label>
  1708.            <input type="hidden" name="options[prefix]" value="last">
  1709.            <button
  1710.              type="reset"
  1711.              class="reset__button field__button hidden"
  1712.              aria-label="Clear search term"
  1713.            >
  1714.              <span class="svg-wrapper"><svg fill="none" stroke="currentColor" class="icon icon-close" viewBox="0 0 18 18"><circle cx="9" cy="9" r="8.5" stroke-opacity=".2"/><path stroke-linecap="round" stroke-linejoin="round" d="M11.83 11.83 6.172 6.17M6.229 11.885l5.544-5.77"/></svg>
  1715. </span>
  1716.            </button>
  1717.            <button class="search__button field__button" aria-label="Search">
  1718.              <span class="svg-wrapper"><svg fill="none" class="icon icon-search" viewBox="0 0 18 19"><path fill="currentColor" fill-rule="evenodd" d="M11.03 11.68A5.784 5.784 0 1 1 2.85 3.5a5.784 5.784 0 0 1 8.18 8.18m.26 1.12a6.78 6.78 0 1 1 .72-.7l5.4 5.4a.5.5 0 1 1-.71.7z" clip-rule="evenodd"/></svg>
  1719. </span>
  1720.            </button>
  1721.          </div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
  1722.  
  1723. <div class="predictive-search__loading-state">
  1724.  <svg xmlns="http://www.w3.org/2000/svg" class="spinner" viewBox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>
  1725.  
  1726. </div>
  1727. </div>
  1728.  
  1729.            <span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button
  1730.          type="button"
  1731.          class="search-modal__close-button modal__close-button link link--text focus-inset"
  1732.          aria-label="Close"
  1733.        >
  1734.          <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  1735. </span>
  1736.        </button>
  1737.      </div>
  1738.    </div>
  1739.  </details>
  1740. </details-modal>
  1741.  
  1742. <a href="https://shopify.com/64606339150/account?locale=en&region_country=AE" class="header__icon header__icon--account link focus-inset small-hide"><account-icon><span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-account" viewBox="0 0 18 19"><path fill="currentColor" fill-rule="evenodd" d="M6 4.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8m5.58 12.15c1.12.82 1.83 2.24 1.91 4.85H1.51c.08-2.6.79-4.03 1.9-4.85C4.66 11.75 6.5 11.5 9 11.5s4.35.26 5.58 1.15M9 10.5c-2.5 0-4.65.24-6.17 1.35C1.27 12.98.5 14.93.5 18v.5h17V18c0-3.07-.77-5.02-2.33-6.15-1.52-1.1-3.67-1.35-6.17-1.35" clip-rule="evenodd"/></svg>
  1743. </span></account-icon><span class="visually-hidden">Log in</span>
  1744.        </a><a href="/cart" class="header__icon header__icon--cart link focus-inset" id="cart-icon-bubble">
  1745.          
  1746.            <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-cart-empty" viewBox="0 0 40 40"><path fill="currentColor" fill-rule="evenodd" d="M15.75 11.8h-3.16l-.77 11.6a5 5 0 0 0 4.99 5.34h7.38a5 5 0 0 0 4.99-5.33L28.4 11.8zm0 1h-2.22l-.71 10.67a4 4 0 0 0 3.99 4.27h7.38a4 4 0 0 0 4-4.27l-.72-10.67h-2.22v.63a4.75 4.75 0 1 1-9.5 0zm8.5 0h-7.5v.63a3.75 3.75 0 1 0 7.5 0z"/></svg>
  1747. </span>
  1748.          
  1749.        <span class="visually-hidden">Cart</span></a>
  1750.    </div>
  1751.  </header>
  1752. </sticky-header>
  1753.  
  1754. <cart-notification>
  1755.  <div class="cart-notification-wrapper page-width">
  1756.    <div
  1757.      id="cart-notification"
  1758.      class="cart-notification focus-inset color-scheme-1 gradient"
  1759.      aria-modal="true"
  1760.      aria-label="Item added to your cart"
  1761.      role="dialog"
  1762.      tabindex="-1"
  1763.    >
  1764.      <div class="cart-notification__header">
  1765.        <h2 class="cart-notification__heading caption-large text-body"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewBox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
  1766. Item added to your cart
  1767.        </h2>
  1768.        <button
  1769.          type="button"
  1770.          class="cart-notification__close modal__close-button link link--text focus-inset"
  1771.          aria-label="Close"
  1772.        >
  1773.          <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  1774. </span>
  1775.        </button>
  1776.      </div>
  1777.      <div id="cart-notification-product" class="cart-notification-product"></div>
  1778.      <div class="cart-notification__links">
  1779.        <a
  1780.          href="/cart"
  1781.          id="cart-notification-button"
  1782.          class="button button--secondary button--full-width"
  1783.        >View cart</a>
  1784.        <form action="/cart" method="post" id="cart-notification-form">
  1785.          <button class="button button--primary button--full-width" name="checkout">
  1786.            Check out
  1787.          </button>
  1788.        </form>
  1789.        <button type="button" class="link button-label">Continue shopping</button>
  1790.      </div>
  1791.    </div>
  1792.  </div>
  1793. </cart-notification>
  1794. <style data-shopify>
  1795.  .cart-notification {
  1796.    display: none;
  1797.  }
  1798. </style>
  1799.  
  1800.  
  1801. <script type="application/ld+json">
  1802.  {
  1803.    "@context": "http://schema.org",
  1804.    "@type": "Organization",
  1805.    "name": "MomDaughts UAE",
  1806.    
  1807.      "logo": "https:\/\/momdaughts.ae\/cdn\/shop\/files\/Logo_Main_Cropped.png?v=1736422504\u0026width=500",
  1808.    
  1809.    "sameAs": [
  1810.      "https:\/\/twitter.com\/momdaughts",
  1811.      "https:\/\/www.facebook.com\/momdaughts.ae",
  1812.      "",
  1813.      "https:\/\/www.instagram.com\/momdaughts.ae",
  1814.      "",
  1815.      "",
  1816.      "",
  1817.      "",
  1818.      ""
  1819.    ],
  1820.    "url": "https:\/\/momdaughts.ae"
  1821.  }
  1822. </script>
  1823.  <script type="application/ld+json">
  1824.    {
  1825.      "@context": "http://schema.org",
  1826.      "@type": "WebSite",
  1827.      "name": "MomDaughts UAE",
  1828.      "potentialAction": {
  1829.        "@type": "SearchAction",
  1830.        "target": "https:\/\/momdaughts.ae\/search?q={search_term_string}",
  1831.        "query-input": "required name=search_term_string"
  1832.      },
  1833.      "url": "https:\/\/momdaughts.ae"
  1834.    }
  1835.  </script>
  1836. </div>
  1837. <!-- END sections: header-group -->
  1838.  
  1839.    <main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">
  1840.      <div id="shopify-section-template--17173043150926__responsivebanner_B6Ajxz" class="shopify-section"><!-- responsive-banner.liquid -->
  1841. <section class="responsive-banner-section">
  1842.  <div class="banner-container">
  1843.    <!-- Desktop Banner with Link -->
  1844.    <a href="/collections/frontpage" class="banner-link" target="_self">
  1845.      <img class="banner-desktop" src="//momdaughts.ae/cdn/shop/files/new_banner.jpg?v=1740580089" alt="Desktop Banner">
  1846.    </a>
  1847.  
  1848.    <!-- Mobile Banner with Link -->
  1849.    <a href="/collections/frontpage" class="banner-link" target="_self">
  1850.      <img class="banner-mobile" src="//momdaughts.ae/cdn/shop/files/new_banner_mob.jpg?v=1740580090" alt="Mobile Banner">
  1851.    </a>
  1852.  </div>
  1853. </section>
  1854.  
  1855.  
  1856.  
  1857. <style data-shopify>
  1858. .responsive-banner-section {
  1859.  position: relative;
  1860.  width: 100%;
  1861. }
  1862.  
  1863. .banner-container {
  1864.  position: relative;
  1865.  width: 100%;
  1866. }
  1867.  
  1868. .banner-desktop, .banner-mobile {
  1869.  width: 100%;
  1870.  height: auto;
  1871.  display: block;
  1872. }
  1873.  
  1874. .banner-link {
  1875.  display: block;
  1876. }
  1877.  
  1878. /* Hide mobile image on desktop */
  1879. .banner-mobile {
  1880.  display: none;
  1881. }
  1882.  
  1883. /* Show the mobile banner on smaller devices and hide desktop banner */
  1884. @media screen and (max-width: 767px) {
  1885.  .banner-desktop {
  1886.    display: none;
  1887.  }
  1888.  .banner-mobile {
  1889.    display: block;
  1890.  }
  1891. }
  1892. </style>
  1893. </div><section id="shopify-section-template--17173043150926__featured-collection" class="shopify-section section"><link href="//momdaughts.ae/cdn/shop/t/4/assets/component-card.css?v=120341546515895839841736691105" rel="stylesheet" type="text/css" media="all" />
  1894. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  1895.  
  1896. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  1897. <link href="//momdaughts.ae/cdn/shop/t/4/assets/template-collection.css?v=58558206033505836701736691108" rel="stylesheet" type="text/css" media="all" />
  1898.  
  1899. <style data-shopify>.section-template--17173043150926__featured-collection-padding {
  1900.    padding-top: 18px;
  1901.    padding-bottom: 18px;
  1902.  }
  1903.  
  1904.  @media screen and (min-width: 750px) {
  1905.    .section-template--17173043150926__featured-collection-padding {
  1906.      padding-top: 24px;
  1907.      padding-bottom: 24px;
  1908.    }
  1909.  }</style><div
  1910.  class="color-scheme-1 isolate gradient"
  1911. >
  1912.  <div
  1913.    class="collection section-template--17173043150926__featured-collection-padding"
  1914.    id="collection-template--17173043150926__featured-collection"
  1915.    data-id="template--17173043150926__featured-collection"
  1916.  >
  1917.    <div class="collection__title title-wrapper title-wrapper--no-top-margin page-width title-wrapper--self-padded-tablet-down"><h2 class="title inline-richtext h2">
  1918.          Exclusives
  1919.        </h2></div>
  1920.  
  1921.    <slider-component class="slider-mobile-gutter page-width-desktop">
  1922.      <ul
  1923.        id="Slider-template--17173043150926__featured-collection"
  1924.        data-id="template--17173043150926__featured-collection"
  1925.        class="grid product-grid contains-card contains-card--product contains-card--standard grid--4-col-desktop grid--2-col-tablet-down slider slider--tablet grid--peek"
  1926.        role="list"
  1927.        aria-label="Slider"
  1928.      >
  1929.        
  1930. <li
  1931.            id="Slide-template--17173043150926__featured-collection-1"
  1932.            class="grid__item slider__slide"
  1933.            
  1934.          >
  1935.            
  1936. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-rating.css?v=179577762467860590411736691106" rel="stylesheet" type="text/css" media="all" />
  1937.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-volume-pricing.css?v=111870094811454961941736691106" rel="stylesheet" type="text/css" media="all" />
  1938.  
  1939.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  1940.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/quick-order-list.css?v=129932180309343703061736691107" rel="stylesheet" type="text/css" media="all" />
  1941.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/quantity-popover.css?v=129068967981937647381736691107" rel="stylesheet" type="text/css" media="all" />
  1942. <div class="card-wrapper product-card-wrapper underline-links-hover">
  1943.    <div
  1944.      class="
  1945.        card card--standard
  1946.         card--media
  1947.        
  1948.        
  1949.        
  1950.        
  1951.        
  1952.      "
  1953.      style="--ratio-percent: 100.0%;"
  1954.    >
  1955.      <div
  1956.        class="card__inner color-scheme-3 gradient ratio"
  1957.        style="--ratio-percent: 100.0%;"
  1958.      ><div class="card__media">
  1959.            <div class="media media--transparent media--hover-effect">
  1960.              
  1961.              <img
  1962.                srcset="//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=165 165w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=360 360w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=533 533w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=720 720w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=940 940w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=1066 1066w,//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949 1080w
  1963.                "
  1964.                src="//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=533"
  1965.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  1966.                alt="Powerful Electric Double Breast Pump – Efficient &amp; Bilateral - MomDaughts UAE"
  1967.                class="motion-reduce"
  1968.                
  1969.                  loading="lazy"
  1970.                
  1971.                width="1080"
  1972.                height="1080"
  1973.              >
  1974.              
  1975. <img
  1976.                  srcset="//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=165 165w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=360 360w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=533 533w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=720 720w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=940 940w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=1066 1066w,//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171 1080w
  1977.                  "
  1978.                  src="//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=533"
  1979.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  1980.                  alt=""
  1981.                  class="motion-reduce"
  1982.                  loading="lazy"
  1983.                  width="1080"
  1984.                  height="1080"
  1985.                ></div>
  1986.          </div><div class="card__content">
  1987.          <div class="card__information">
  1988.            <h3
  1989.              class="card__heading"
  1990.              
  1991.            >
  1992.              <a
  1993.                href="/products/electric-double-breast-pump"
  1994.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7571389382734"
  1995.                class="full-unstyled-link"
  1996.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7571389382734 NoMediaStandardBadge-template--17173043150926__featured-collection-7571389382734"
  1997.              >
  1998.                Powerful Electric Double Breast Pump – Efficient &amp; Bilateral
  1999.              </a>
  2000.            </h3>
  2001.          </div>
  2002.          <div class="card__badge bottom left"><span
  2003.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7571389382734"
  2004.                class="badge badge--bottom-left color-scheme-3"
  2005.              >Sale</span></div>
  2006.        </div>
  2007.      </div>
  2008.      <div class="card__content">
  2009.        <div class="card__information">
  2010.          <h3
  2011.            class="card__heading h5"
  2012.            
  2013.              id="title-template--17173043150926__featured-collection-7571389382734"
  2014.            
  2015.          >
  2016.            <a
  2017.              href="/products/electric-double-breast-pump"
  2018.              id="CardLink-template--17173043150926__featured-collection-7571389382734"
  2019.              class="full-unstyled-link"
  2020.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7571389382734 Badge-template--17173043150926__featured-collection-7571389382734"
  2021.            >
  2022.              Powerful Electric Double Breast Pump – Efficient &amp; Bilateral
  2023.            </a>
  2024.          </h3>
  2025.          <div class="card-information"><span class="caption-large light"></span>
  2026.              <div
  2027.                class="rating"
  2028.                role="img"
  2029.                aria-label="4.57 out of 5.0 stars"
  2030.              >
  2031.                <span
  2032.                  aria-hidden="true"
  2033.                  class="rating-star"
  2034.                  style="--rating: 4; --rating-max: 5.0; --rating-decimal: 0.5;"
  2035.                ></span>
  2036.              </div>
  2037.              <p class="rating-text caption">
  2038.                <span aria-hidden="true">4.57 /
  2039.                  5.0</span>
  2040.              </p>
  2041.              <p class="rating-count caption">
  2042.                <span aria-hidden="true">(46)</span>
  2043.                <span class="visually-hidden">46
  2044.                  total reviews</span>
  2045.              </p>
  2046. <div
  2047.    class="
  2048.      price  price--on-sale"
  2049.  >
  2050.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2051.          <span class="price-item price-item--regular">
  2052.            AED. 109.00
  2053.          </span></div>
  2054.      <div class="price__sale">
  2055.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2056.          <span>
  2057.            <s class="price-item price-item--regular">
  2058.              
  2059.                AED. 249.00
  2060.              
  2061.            </s>
  2062.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2063.        <span class="price-item price-item--sale price-item--last">
  2064.          AED. 109.00
  2065.        </span>
  2066.      </div>
  2067.      <small class="unit-price caption hidden">
  2068.        <span class="visually-hidden">Unit price</span>
  2069.        <span class="price-item price-item--last">
  2070.          <span></span>
  2071.          <span aria-hidden="true">/</span>
  2072.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2073.          <span>
  2074.          </span>
  2075.        </span>
  2076.      </small>
  2077.    </div></div>
  2078.  
  2079.  
  2080. </div>
  2081.        </div>
  2082.        
  2083.        
  2084.        <div class="card__badge bottom left"><span
  2085.              id="Badge-template--17173043150926__featured-collection-7571389382734"
  2086.              class="badge badge--bottom-left color-scheme-3"
  2087.            >Sale</span></div>
  2088.      </div>
  2089.    </div>
  2090.  </div>
  2091.          </li><li
  2092.            id="Slide-template--17173043150926__featured-collection-2"
  2093.            class="grid__item slider__slide"
  2094.            
  2095.          >
  2096.            
  2097. <div class="card-wrapper product-card-wrapper underline-links-hover">
  2098.    <div
  2099.      class="
  2100.        card card--standard
  2101.         card--media
  2102.        
  2103.        
  2104.        
  2105.        
  2106.        
  2107.      "
  2108.      style="--ratio-percent: 100.0%;"
  2109.    >
  2110.      <div
  2111.        class="card__inner color-scheme-3 gradient ratio"
  2112.        style="--ratio-percent: 100.0%;"
  2113.      ><div class="card__media">
  2114.            <div class="media media--transparent media--hover-effect">
  2115.              
  2116.              <img
  2117.                srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=165 165w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=360 360w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=533 533w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=720 720w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=940 940w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=1066 1066w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356 1080w
  2118.                "
  2119.                src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=533"
  2120.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2121.                alt="MomDaughts Wearable Breast Pump MY-376."
  2122.                class="motion-reduce"
  2123.                
  2124.                  loading="lazy"
  2125.                
  2126.                width="1080"
  2127.                height="1080"
  2128.              >
  2129.              
  2130. <img
  2131.                  srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=165 165w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=360 360w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=533 533w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=720 720w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=940 940w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=1066 1066w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853 1080w
  2132.                  "
  2133.                  src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=533"
  2134.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2135.                  alt=""
  2136.                  class="motion-reduce"
  2137.                  loading="lazy"
  2138.                  width="1080"
  2139.                  height="1080"
  2140.                ></div>
  2141.          </div><div class="card__content">
  2142.          <div class="card__information">
  2143.            <h3
  2144.              class="card__heading"
  2145.              
  2146.            >
  2147.              <a
  2148.                href="/products/wearable-breast-pump-my376"
  2149.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7540982448206"
  2150.                class="full-unstyled-link"
  2151.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7540982448206 NoMediaStandardBadge-template--17173043150926__featured-collection-7540982448206"
  2152.              >
  2153.                MomDaughts Wearable Breast Pump MY-376
  2154.              </a>
  2155.            </h3>
  2156.          </div>
  2157.          <div class="card__badge bottom left"><span
  2158.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7540982448206"
  2159.                class="badge badge--bottom-left color-scheme-3"
  2160.              >Sale</span></div>
  2161.        </div>
  2162.      </div>
  2163.      <div class="card__content">
  2164.        <div class="card__information">
  2165.          <h3
  2166.            class="card__heading h5"
  2167.            
  2168.              id="title-template--17173043150926__featured-collection-7540982448206"
  2169.            
  2170.          >
  2171.            <a
  2172.              href="/products/wearable-breast-pump-my376"
  2173.              id="CardLink-template--17173043150926__featured-collection-7540982448206"
  2174.              class="full-unstyled-link"
  2175.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7540982448206 Badge-template--17173043150926__featured-collection-7540982448206"
  2176.            >
  2177.              MomDaughts Wearable Breast Pump MY-376
  2178.            </a>
  2179.          </h3>
  2180.          <div class="card-information"><span class="caption-large light"></span>
  2181.              <div
  2182.                class="rating"
  2183.                role="img"
  2184.                aria-label="4.75 out of 5.0 stars"
  2185.              >
  2186.                <span
  2187.                  aria-hidden="true"
  2188.                  class="rating-star"
  2189.                  style="--rating: 4; --rating-max: 5.0; --rating-decimal: 1;"
  2190.                ></span>
  2191.              </div>
  2192.              <p class="rating-text caption">
  2193.                <span aria-hidden="true">4.75 /
  2194.                  5.0</span>
  2195.              </p>
  2196.              <p class="rating-count caption">
  2197.                <span aria-hidden="true">(52)</span>
  2198.                <span class="visually-hidden">52
  2199.                  total reviews</span>
  2200.              </p>
  2201. <div
  2202.    class="
  2203.      price  price--on-sale"
  2204.  >
  2205.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2206.          <span class="price-item price-item--regular">
  2207.            From AED. 149.00
  2208.          </span></div>
  2209.      <div class="price__sale">
  2210.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2211.          <span>
  2212.            <s class="price-item price-item--regular">
  2213.              
  2214.                AED. 229.00
  2215.              
  2216.            </s>
  2217.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2218.        <span class="price-item price-item--sale price-item--last">
  2219.          From AED. 149.00
  2220.        </span>
  2221.      </div>
  2222.      <small class="unit-price caption hidden">
  2223.        <span class="visually-hidden">Unit price</span>
  2224.        <span class="price-item price-item--last">
  2225.          <span></span>
  2226.          <span aria-hidden="true">/</span>
  2227.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2228.          <span>
  2229.          </span>
  2230.        </span>
  2231.      </small>
  2232.    </div></div>
  2233.  
  2234.  
  2235. </div>
  2236.        </div>
  2237.        
  2238.        
  2239.        <div class="card__badge bottom left"><span
  2240.              id="Badge-template--17173043150926__featured-collection-7540982448206"
  2241.              class="badge badge--bottom-left color-scheme-3"
  2242.            >Sale</span></div>
  2243.      </div>
  2244.    </div>
  2245.  </div>
  2246.          </li><li
  2247.            id="Slide-template--17173043150926__featured-collection-3"
  2248.            class="grid__item slider__slide"
  2249.            
  2250.          >
  2251.            
  2252. <div class="card-wrapper product-card-wrapper underline-links-hover">
  2253.    <div
  2254.      class="
  2255.        card card--standard
  2256.         card--media
  2257.        
  2258.        
  2259.        
  2260.        
  2261.        
  2262.      "
  2263.      style="--ratio-percent: 100.0%;"
  2264.    >
  2265.      <div
  2266.        class="card__inner color-scheme-3 gradient ratio"
  2267.        style="--ratio-percent: 100.0%;"
  2268.      ><div class="card__media">
  2269.            <div class="media media--transparent media--hover-effect">
  2270.              
  2271.              <img
  2272.                srcset="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=165 165w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=360 360w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=533 533w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=720 720w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=940 940w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=1066 1066w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946 1080w
  2273.                "
  2274.                src="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=533"
  2275.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2276.                alt="Premium Manual Breast Pump – BPA - Free &amp; Portable - MomDaughts UAE"
  2277.                class="motion-reduce"
  2278.                
  2279.                  loading="lazy"
  2280.                
  2281.                width="1080"
  2282.                height="1080"
  2283.              >
  2284.              
  2285. <img
  2286.                  srcset="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=165 165w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=360 360w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=533 533w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=720 720w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=940 940w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=1066 1066w,//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945 1080w
  2287.                  "
  2288.                  src="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=533"
  2289.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2290.                  alt=""
  2291.                  class="motion-reduce"
  2292.                  loading="lazy"
  2293.                  width="1080"
  2294.                  height="1080"
  2295.                ></div>
  2296.          </div><div class="card__content">
  2297.          <div class="card__information">
  2298.            <h3
  2299.              class="card__heading"
  2300.              
  2301.            >
  2302.              <a
  2303.                href="/products/modern-manual-pump"
  2304.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7560789033038"
  2305.                class="full-unstyled-link"
  2306.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7560789033038 NoMediaStandardBadge-template--17173043150926__featured-collection-7560789033038"
  2307.              >
  2308.                Premium Manual Breast Pump – BPA-Free &amp; Portable
  2309.              </a>
  2310.            </h3>
  2311.          </div>
  2312.          <div class="card__badge bottom left"><span
  2313.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7560789033038"
  2314.                class="badge badge--bottom-left color-scheme-3"
  2315.              >Sale</span></div>
  2316.        </div>
  2317.      </div>
  2318.      <div class="card__content">
  2319.        <div class="card__information">
  2320.          <h3
  2321.            class="card__heading h5"
  2322.            
  2323.              id="title-template--17173043150926__featured-collection-7560789033038"
  2324.            
  2325.          >
  2326.            <a
  2327.              href="/products/modern-manual-pump"
  2328.              id="CardLink-template--17173043150926__featured-collection-7560789033038"
  2329.              class="full-unstyled-link"
  2330.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7560789033038 Badge-template--17173043150926__featured-collection-7560789033038"
  2331.            >
  2332.              Premium Manual Breast Pump – BPA-Free &amp; Portable
  2333.            </a>
  2334.          </h3>
  2335.          <div class="card-information"><span class="caption-large light"></span>
  2336. <div
  2337.    class="
  2338.      price  price--on-sale"
  2339.  >
  2340.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2341.          <span class="price-item price-item--regular">
  2342.            AED. 50.00
  2343.          </span></div>
  2344.      <div class="price__sale">
  2345.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2346.          <span>
  2347.            <s class="price-item price-item--regular">
  2348.              
  2349.                AED. 79.00
  2350.              
  2351.            </s>
  2352.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2353.        <span class="price-item price-item--sale price-item--last">
  2354.          AED. 50.00
  2355.        </span>
  2356.      </div>
  2357.      <small class="unit-price caption hidden">
  2358.        <span class="visually-hidden">Unit price</span>
  2359.        <span class="price-item price-item--last">
  2360.          <span></span>
  2361.          <span aria-hidden="true">/</span>
  2362.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2363.          <span>
  2364.          </span>
  2365.        </span>
  2366.      </small>
  2367.    </div></div>
  2368.  
  2369.  
  2370. </div>
  2371.        </div>
  2372.        
  2373.        
  2374.        <div class="card__badge bottom left"><span
  2375.              id="Badge-template--17173043150926__featured-collection-7560789033038"
  2376.              class="badge badge--bottom-left color-scheme-3"
  2377.            >Sale</span></div>
  2378.      </div>
  2379.    </div>
  2380.  </div>
  2381.          </li></ul><div class="slider-buttons">
  2382.          <button
  2383.            type="button"
  2384.            class="slider-button slider-button--prev"
  2385.            name="previous"
  2386.            aria-label="Slide left"
  2387.            aria-controls="Slider-template--17173043150926__featured-collection"
  2388.          >
  2389.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  2390. </span>
  2391.          </button>
  2392.          <div class="slider-counter caption">
  2393.            <span class="slider-counter--current">1</span>
  2394.            <span aria-hidden="true"> / </span>
  2395.            <span class="visually-hidden">of</span>
  2396.            <span class="slider-counter--total">3</span>
  2397.          </div>
  2398.          <button
  2399.            type="button"
  2400.            class="slider-button slider-button--next"
  2401.            name="next"
  2402.            aria-label="Slide right"
  2403.            aria-controls="Slider-template--17173043150926__featured-collection"
  2404.          >
  2405.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  2406. </span>
  2407.          </button>
  2408.        </div></slider-component></div>
  2409. </div>
  2410.  
  2411.  
  2412. </section><section id="shopify-section-template--17173043150926__ss_text_block_z96Pwj" class="shopify-section section"><style data-shopify>.p {
  2413.    margin:0;
  2414.    padding:0;
  2415.  }
  2416.  
  2417.  .section-template--17173043150926__ss_text_block_z96Pwj-padding {
  2418.    max-width: 120rem;
  2419.    margin: 0 auto;
  2420.    padding: 0 1.5rem;
  2421.    padding-top: 27px;
  2422.    padding-bottom: 27px;
  2423.  }
  2424.  
  2425.  @media screen and (min-width: 750px) {
  2426.    .section-template--17173043150926__ss_text_block_z96Pwj-padding {
  2427.      padding: 0 5rem;
  2428.      padding-top: 36px;
  2429.      padding-bottom: 36px;
  2430.    }
  2431.  }
  2432.  
  2433.  .ss-text-wrapper {
  2434.    display:flex;
  2435.    justify-content:center;
  2436.  }
  2437.  
  2438.  .ss-content {
  2439.    text-align:center;
  2440.    width:100%;
  2441.  }
  2442.  
  2443.  .button-wrapper-text-block {
  2444.    
  2445.  }</style><div style="background-color:#ffcfdb;">
  2446.  <div class="page-width section-template--17173043150926__ss_text_block_z96Pwj-padding">
  2447.    <div class="ss-text-wrapper">
  2448.      <div class="ss-content">
  2449.        
  2450.          
  2451.              
  2452.                <style>
  2453.                  .countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR {
  2454.                    font-size: 24px;
  2455.                  }  
  2456.                  @media screen and (min-width: 750px) {
  2457.                    .countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR {
  2458.                      font-size: 28px;
  2459.                    }
  2460.                  }
  2461.                </style>
  2462.                <div
  2463.                  class="countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR"
  2464.                  style="
  2465.                    color: #2c2a6b;
  2466.                    line-height:1.3;
  2467.                    padding-bottom:10px;
  2468.                  "
  2469.                >
  2470.                  <p><strong>Made with Love for Modern Moms</strong></p>
  2471.                </div>
  2472.              
  2473.              
  2474.            
  2475.        
  2476.          
  2477.              <style>
  2478.                .countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb {
  2479.                  padding: 9px 25px;
  2480.                  text-decoration: none;
  2481.                  font-size: 10px;
  2482.                  margin-top:10px;
  2483.                }
  2484.                @media screen and (min-width: 750px) {
  2485.                  .countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb {
  2486.                    padding: 11px 25px;
  2487.                    font-size: 12px;
  2488.                  }
  2489.                }
  2490.              </style>
  2491.              <div class="button-wrapper-text-block">
  2492.              <a
  2493.                href="/collections/catalog"
  2494.                class="countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb"
  2495.                style="
  2496.                  color: #ffffff;
  2497.                  background-color: #2c2a6b;
  2498.                  border-radius: 50px;
  2499.                  display: inline-block;
  2500.                "
  2501.              >
  2502.                Browse Our Catalog
  2503.              </a></div>
  2504.          
  2505.        
  2506.      </div>
  2507.    </div>
  2508.  </div>
  2509. </div>
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515. </section><div id="shopify-section-template--17173043150926__ss_waves_HGjQfz" class="shopify-section"><style data-shopify>.section-template--17173043150926__ss_waves_HGjQfz {
  2516.    margin-top: 0px;
  2517.    margin-bottom: -60px;
  2518.    overflow: hidden;
  2519.  }
  2520.  
  2521.  .section-template--17173043150926__ss_waves_HGjQfz-settings {
  2522.    margin: 0 auto;
  2523.    padding-top: 0px;
  2524.    padding-bottom: 0px;
  2525.    padding-left: 0rem;
  2526.    padding-right: 0rem;
  2527.  }
  2528.  
  2529.  .wave-body-template--17173043150926__ss_waves_HGjQfz {
  2530.    height: 200px;
  2531.    width: 100%;
  2532.    position: relative;
  2533.  }
  2534.  
  2535.  .wave-body-template--17173043150926__ss_waves_HGjQfz svg {
  2536.    width: 100%;
  2537.    height: 100%;
  2538.    display: block;
  2539.    object-fit: cover;
  2540.    transform: rotate(180deg);
  2541.  }
  2542.  
  2543.  @media(min-width: 768px) {
  2544.  
  2545.    .section-template--17173043150926__ss_waves_HGjQfz {
  2546.      margin-top: 0px;
  2547.      margin-bottom: -80px;
  2548.    }
  2549.    
  2550.    .section-template--17173043150926__ss_waves_HGjQfz-settings {
  2551.      padding: 0 5rem;
  2552.      padding-top: 0px;
  2553.      padding-bottom: 0px;
  2554.      padding-left: 0rem;
  2555.      padding-right: 0rem;
  2556.    }
  2557.  }</style>
  2558.  
  2559. <div class="section-template--17173043150926__ss_waves_HGjQfz wave-template--17173043150926__ss_waves_HGjQfz" style="background-color:#fdfbf7;">
  2560.    <div class="section-template--17173043150926__ss_waves_HGjQfz-settings">
  2561.      <div class="wave-body-template--17173043150926__ss_waves_HGjQfz">
  2562.        
  2563.        <svg width="100%" height="100%" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" overflow="auto" shape-rendering="auto" fill="#fdfbf7">
  2564.          <defs>
  2565.           <path id="wavepath1" d="M 0 2000 0 500 Q 62.5 250 125 500 t 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0  v1000 z" />
  2566.          
  2567.             <path id="motionpath1" d="M -250 0 0 0" />
  2568.          
  2569.          </defs>
  2570.          <g >
  2571.           <use xlink:href="#wavepath1" y="100" fill="#ffcfdb">
  2572.          
  2573.             <animateMotion
  2574.              dur="5s"
  2575.              repeatCount="indefinite">
  2576.              <mpath xlink:href="#motionpath1" />
  2577.             </animateMotion>
  2578.          
  2579.           </use>
  2580.          </g>
  2581.        </svg>
  2582.        
  2583.      </div>
  2584.    </div>
  2585. </div>
  2586.  
  2587. </div><section id="shopify-section-template--17173043150926__1709560695d4a2bf7d" class="shopify-section section"><div class="page-width"><div id="shopify-block-AYjlyYS85TTVjS00wO__judge_me_reviews_featured_carousel_dz4eAd" class="shopify-block shopify-app-block"><div style="margin:0 auto;max-width:1080px;">
  2588.  <div class='jdgm-carousel-wrapper'>
  2589.      <div class="jdgm-carousel-title-and-link">
  2590.        <h2 class='jdgm-carousel-title'>Let customers speak for us</h2>
  2591.        <span class="jdgm-all-reviews-rating-wrapper" href="javascript:void(0)">
  2592.          <span style="display:block" data-score='4.61' class='jdgm-all-reviews-rating' aria-label='4.61 stars' tabindex='0' role='img'></span>
  2593.          <span style="display: block" class='jdgm-carousel-number-of-reviews' data-number-of-reviews='441'>
  2594.            from 441 reviews
  2595.          </span>
  2596.        </span>
  2597.      </div>
  2598.    <section class='jdgm-widget jdgm-carousel jdgm-carousel--default-theme' data-widget-locale='en'> <style>.jdgm-carousel{display: none}</style> <style> .jdgm-xx{left:0}.jdgm-carousel-item__timestamp{display:none !important}.jdgm-carousel-item__product-title{display:none !important}.jdgm-carousel-wrapper .jdgm-carousel-item__review{height:calc(72% - 1.4em)}
  2599. </style> <style>  </style> <div class='jdgm-carousel__item-container'> <div class='jdgm-carousel__item-wrapper'><div class='jdgm-carousel-item ' data-review-id='dca8fccc-83e2-48db-b775-78a18e023f61'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Had a great experience with them</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Kareem Abdul Jabbar </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='03/13/2025'> 03/13/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/electric-double-breast-pump#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Powerful Electric Double Breast Pump – Efficient &amp; Bilateral' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_70x70.png?v=1741444949' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_140x140.png?v=1741444949'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Powerful Electric Double Breast Pump – Efficient &amp; Bilateral </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='a66af6e8-4e71-49d1-8227-0b2eb86cf7a7'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Exactly as on the description, everything works smoothly, Recommended</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Bint e Tahir </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='03/12/2025'> 03/12/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/wearable-breast-pump-my376#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts Wearable Breast Pump MY-376' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_70x70.jpg?v=1738948356' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_140x140.jpg?v=1738948356'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts Wearable Breast Pump MY-376 </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='59ea1853-195b-4d95-9417-40a1539e542d'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>This pump is one of the most helpful items I have ever purchased. It has literally been lifechanging!!! If you have not yet tried a wearable pump let me just tell you- you are in for a really big surprise! Before I tell you about my experience with this pump, I just want to make it clear that i have not tried other wearable pumps, so I can't compare to others</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Mehnaz Misgar </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='03/08/2025'> 03/08/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/wearable-breast-pump-my376#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts Wearable Breast Pump MY-376' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_70x70.jpg?v=1738948356' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_140x140.jpg?v=1738948356'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts Wearable Breast Pump MY-376 </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='7cff19d6-c39f-49d1-9719-6a5cc8832382'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>This is very useful. Appreciated!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Khalidah Taqiyah </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='03/06/2025'> 03/06/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/electric-double-breast-pump#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Powerful Electric Double Breast Pump – Efficient &amp; Bilateral' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_70x70.png?v=1741444949' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_140x140.png?v=1741444949'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Powerful Electric Double Breast Pump – Efficient &amp; Bilateral </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='42e99435-bd41-4501-8d96-c7356a177722'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Value for money.</div> <div class='jdgm-carousel-item__review-body'><p>Thanks for fast delivery</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Sheetal Joseph </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='03/06/2025'> 03/06/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/electric-double-breast-pump#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Powerful Electric Double Breast Pump – Efficient &amp; Bilateral' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_70x70.png?v=1741444949' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_140x140.png?v=1741444949'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Powerful Electric Double Breast Pump – Efficient &amp; Bilateral </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='02f6d23e-9af7-4cfa-b340-1b096f73cbb5'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Got it for 109 AED</div> <div class='jdgm-carousel-item__review-body'><p>I didn't expect this much.  Thank you so much</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Mahira Al-Ghafoori </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/25/2025'> 02/25/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/electric-double-breast-pump#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Powerful Electric Double Breast Pump – Efficient &amp; Bilateral' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_70x70.png?v=1741444949' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_140x140.png?v=1741444949'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Powerful Electric Double Breast Pump – Efficient &amp; Bilateral </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='fab223a3-4719-4ed1-b886-51ed0845e54a'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>It was good quality product with the cheapest prices and working very well.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Aqeel Karim </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/25/2025'> 02/25/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/electric-double-breast-pump#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Powerful Electric Double Breast Pump – Efficient &amp; Bilateral' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_70x70.png?v=1741444949' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/powerful-electric-double-breast-pump-efficient-bilateral-753424_140x140.png?v=1741444949'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Powerful Electric Double Breast Pump – Efficient &amp; Bilateral </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='7c132f51-d202-446c-8690-836cccdee487'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Thank you very much for your help and attention I am very happy with my purchase.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Zaid Khalil </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/19/2025'> 02/19/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/wearable-breast-pump-my376#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts Wearable Breast Pump MY-376' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_70x70.jpg?v=1738948356' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_140x140.jpg?v=1738948356'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts Wearable Breast Pump MY-376 </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='32aee76d-1edd-4792-a3f2-28f75eb5a314'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>I am very satisfied</div> <div class='jdgm-carousel-item__review-body'><p>Fully functional, suitable for various shapes, and the appearance is very beautiful. order delivery speed is very fast. Strongly recommend purchasing</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Saira kareem </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/19/2025'> 02/19/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/hair-dryer-brush-5in1#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='5 in 1 Hair Styler – Hot Air Styler &amp; Hair Dryer Brush' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/5-in-1-hair-styler-hot-air-styler-hair-dryer-brush-564591_70x70.png?v=1741444945' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/5-in-1-hair-styler-hot-air-styler-hair-dryer-brush-564591_140x140.png?v=1741444945'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> 5 in 1 Hair Styler – Hot Air Styler &amp; Hair Dryer Brush </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='baba10ec-ec58-45b7-bc9a-712c589351e9'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'></div> <div class='jdgm-carousel-item__review-body'><p>Arrived fastly and great Quality. Much better than pictures😍</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Minahil </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/14/2025'> 02/14/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/wearable-breast-pump-my376#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts Wearable Breast Pump MY-376' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_70x70.jpg?v=1738948356' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-wearable-breast-pump-my-376-581295_140x140.jpg?v=1738948356'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts Wearable Breast Pump MY-376 </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='c29cb366-152c-4d27-a1b6-3c53ed0677d3'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Thanks for this cute product</div> <div class='jdgm-carousel-item__review-body'><p>Arrived in good condition I loved it</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Farheen Afzal </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/14/2025'> 02/14/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/laser-epilator-hair-removal#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts&#39; Handheld IPL Laser Hair Removal Device' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-handheld-ipl-laser-hair-removal-device-655682_70x70.png?v=1741444948' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-handheld-ipl-laser-hair-removal-device-655682_140x140.png?v=1741444948'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts&#39; Handheld IPL Laser Hair Removal Device </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='b0a2dac5-3c96-42c9-a003-37f3d14f4f6b'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Lifesaver during periods!</div> <div class='jdgm-carousel-item__review-body'><p>This heating pad is a lifesaver! It provides instant relief from cramps, and the adjustable heat settings are perfect. Highly recommend it to anyone who suffers from menstrual pain.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Aisha Al-Mansoori </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/14/2025'> 02/14/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/menstrual-heating-pad#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts&#39; Menstrual Heating Pad for Cramps' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-menstrual-heating-pad-for-cramps-685940_70x70.png?v=1741444942' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-menstrual-heating-pad-for-cramps-685940_140x140.png?v=1741444942'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts&#39; Menstrual Heating Pad for Cramps </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='cb33fb57-6258-4b28-aa7b-e66734aaffc9'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Just Switched to Electric</div> <div class='jdgm-carousel-item__review-body'><p>I have been using there manual breast pump, finally I decided to switch to this device and that was best decision i have made.. &lt;3</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Qasem A.M. </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/12/2025'> 02/12/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Rechargeable Electric Breast Pump Wireless - 12 levels / 4 modes' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/main_improved_70x70.png?v=1739379523' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/main_improved_140x140.png?v=1739379523'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Rechargeable Electric Breast Pump Wireless - 12 levels / 4 modes </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='f4fe3c2e-8ff0-4c27-9986-5d8312ae5215'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Perfect for moms!</div> <div class='jdgm-carousel-item__review-body'><p>This pump is a lifesaver! It’s so lightweight and easy to carry. I can use it anywhere, and the adjustable suction makes it super comfortable. Highly recommend!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Amira Al-Haddad </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/12/2025'> 02/12/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='Rechargeable Electric Breast Pump Wireless - 12 levels / 4 modes' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/main_improved_70x70.png?v=1739379523' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/main_improved_140x140.png?v=1739379523'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Rechargeable Electric Breast Pump Wireless - 12 levels / 4 modes </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='337360e4-1fb6-4eea-a4f4-77d4610a2a30'> <div class='jdgm-carousel-item__review'> <div class='jdgm-carousel-item__review-rating' tabindex='0' aria-label='5 stars' role='img'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </div> <div class='jdgm-carousel-item__review-content'> <div class='jdgm-carousel-item__review-title'>Worth Every Dirham! 💡</div> <div class='jdgm-carousel-item__review-body'><p>Noticed a huge difference in my acne and fine lines. Super easy to use, and the results are real! Highly recommend!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Omar K. </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='02/11/2025'> 02/11/2025 </div> </div> <a class='jdgm-carousel-item__product jdgm--shop-review-has-image' href='/products/led-face-mask#judgeme_product_reviews'>  <img class='jdgm-carousel-item__product-image' alt='MomDaughts&#39; 7-Color LED Therapy Mask – Skin Rejuvenation &amp; Anti-Aging' data-src='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-7-color-led-therapy-mask-skin-rejuvenation-anti-aging-451946_70x70.png?v=1739207689' data-src-retina='https://cdn.shopify.com/s/files/1/0646/0633/9150/files/momdaughts-7-color-led-therapy-mask-skin-rejuvenation-anti-aging-451946_140x140.png?v=1739207689'/>  <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> MomDaughts&#39; 7-Color LED Therapy Mask – Skin Rejuvenation &amp; Anti-Aging </div> </a> </div></div> </div> <div class='jdgm-carousel__arrows'> <div class='jdgm-carousel__left-arrow' tabindex="0"></div> <div class='jdgm-carousel__right-arrow' tabindex="0"></div> </div> </section> <section>  </section>
  2600.  </div>
  2601. </div>
  2602.  
  2603.  
  2604. </div>
  2605. </div>
  2606.  
  2607.  
  2608. </section><div id="shopify-section-template--17173043150926__ss_waves_XRYQrp" class="shopify-section"><style data-shopify>.section-template--17173043150926__ss_waves_XRYQrp {
  2609.    margin-top: -75px;
  2610.    margin-bottom: 0px;
  2611.    overflow: hidden;
  2612.  }
  2613.  
  2614.  .section-template--17173043150926__ss_waves_XRYQrp-settings {
  2615.    margin: 0 auto;
  2616.    padding-top: 0px;
  2617.    padding-bottom: 0px;
  2618.    padding-left: 0rem;
  2619.    padding-right: 0rem;
  2620.  }
  2621.  
  2622.  .wave-body-template--17173043150926__ss_waves_XRYQrp {
  2623.    height: 200px;
  2624.    width: 100%;
  2625.    position: relative;
  2626.  }
  2627.  
  2628.  .wave-body-template--17173043150926__ss_waves_XRYQrp svg {
  2629.    width: 100%;
  2630.    height: 100%;
  2631.    display: block;
  2632.    object-fit: cover;
  2633.    transform: rotate(0deg);
  2634.  }
  2635.  
  2636.  @media(min-width: 768px) {
  2637.  
  2638.    .section-template--17173043150926__ss_waves_XRYQrp {
  2639.      margin-top: -100px;
  2640.      margin-bottom: 0px;
  2641.    }
  2642.    
  2643.    .section-template--17173043150926__ss_waves_XRYQrp-settings {
  2644.      padding: 0 5rem;
  2645.      padding-top: 0px;
  2646.      padding-bottom: 0px;
  2647.      padding-left: 0rem;
  2648.      padding-right: 0rem;
  2649.    }
  2650.  }</style>
  2651.  
  2652. <div class="section-template--17173043150926__ss_waves_XRYQrp wave-template--17173043150926__ss_waves_XRYQrp" style="background-color:#fdfbf7;">
  2653.    <div class="section-template--17173043150926__ss_waves_XRYQrp-settings">
  2654.      <div class="wave-body-template--17173043150926__ss_waves_XRYQrp">
  2655.        
  2656.        <svg width="100%" height="100%" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" overflow="auto" shape-rendering="auto" fill="#fdfbf7">
  2657.          <defs>
  2658.           <path id="wavepath1" d="M 0 2000 0 500 Q 62.5 250 125 500 t 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0 125 0  v1000 z" />
  2659.          
  2660.             <path id="motionpath1" d="M -250 0 0 0" />
  2661.          
  2662.          </defs>
  2663.          <g >
  2664.           <use xlink:href="#wavepath1" y="100" fill="#ffcfdb">
  2665.          
  2666.             <animateMotion
  2667.              dur="5s"
  2668.              repeatCount="indefinite">
  2669.              <mpath xlink:href="#motionpath1" />
  2670.             </animateMotion>
  2671.          
  2672.           </use>
  2673.          </g>
  2674.        </svg>
  2675.        
  2676.      </div>
  2677.    </div>
  2678. </div>
  2679.  
  2680. </div><section id="shopify-section-template--17173043150926__ss_text_block_wN6RNT" class="shopify-section section"><style data-shopify>.p {
  2681.    margin:0;
  2682.    padding:0;
  2683.  }
  2684.  
  2685.  .section-template--17173043150926__ss_text_block_wN6RNT-padding {
  2686.    max-width: 120rem;
  2687.    margin: 0 auto;
  2688.    padding: 0 1.5rem;
  2689.    padding-top: 27px;
  2690.    padding-bottom: 27px;
  2691.  }
  2692.  
  2693.  @media screen and (min-width: 750px) {
  2694.    .section-template--17173043150926__ss_text_block_wN6RNT-padding {
  2695.      padding: 0 5rem;
  2696.      padding-top: 36px;
  2697.      padding-bottom: 36px;
  2698.    }
  2699.  }
  2700.  
  2701.  .ss-text-wrapper {
  2702.    display:flex;
  2703.    justify-content:center;
  2704.  }
  2705.  
  2706.  .ss-content {
  2707.    text-align:center;
  2708.    width:100%;
  2709.  }
  2710.  
  2711.  .button-wrapper-text-block {
  2712.    
  2713.  }</style><div style="background-color:#ffcfdb;">
  2714.  <div class="page-width section-template--17173043150926__ss_text_block_wN6RNT-padding">
  2715.    <div class="ss-text-wrapper">
  2716.      <div class="ss-content">
  2717.        
  2718.          
  2719.              
  2720.                <style>
  2721.                  .countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA {
  2722.                    font-size: 24px;
  2723.                  }  
  2724.                  @media screen and (min-width: 750px) {
  2725.                    .countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA {
  2726.                      font-size: 28px;
  2727.                    }
  2728.                  }
  2729.                </style>
  2730.                <div
  2731.                  class="countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA"
  2732.                  style="
  2733.                    color: #2c2a6b;
  2734.                    line-height:1.3;
  2735.                    padding-bottom:10px;
  2736.                  "
  2737.                >
  2738.                  <p><strong>Our Best Selling Breast Pump</strong></p>
  2739.                </div>
  2740.              
  2741.              
  2742.            
  2743.        
  2744.      </div>
  2745.    </div>
  2746.  </div>
  2747. </div>
  2748.  
  2749.  
  2750.  
  2751.  
  2752.  
  2753. </section><section id="shopify-section-template--17173043150926__featured_product_bqCiyd" class="shopify-section section section-featured-product"><product-info
  2754.  data-section="template--17173043150926__featured_product_bqCiyd"
  2755.  data-product-id="7540982448206"
  2756.  data-update-url="false"
  2757.  data-url="/products/wearable-breast-pump-my376"
  2758.  
  2759. >
  2760.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-main-product.css?v=161818056142182136911736691108" rel="stylesheet" type="text/css" media="all" />
  2761.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-featured-product.css?v=92895955984512702041736691108" rel="stylesheet" type="text/css" media="all" />
  2762.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-accordion.css?v=7971072480289620591736691105" rel="stylesheet" type="text/css" media="all" />
  2763.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  2764.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-deferred-media.css?v=14096082462203297471736691105" rel="stylesheet" type="text/css" media="all" />
  2765.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-rating.css?v=179577762467860590411736691106" rel="stylesheet" type="text/css" media="all" />
  2766.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-volume-pricing.css?v=111870094811454961941736691106" rel="stylesheet" type="text/css" media="all" />
  2767.  
  2768.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-product-variant-picker.css?v=101198305663325844211736691106" rel="stylesheet" type="text/css" media="all" />
  2769.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-swatch.css?v=6811383713633888781736691106" rel="stylesheet" type="text/css" media="all" />
  2770.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-swatch-input.css?v=61683592951238328641736691106" rel="stylesheet" type="text/css" media="all" />
  2771.  
  2772. <style data-shopify>.section-template--17173043150926__featured_product_bqCiyd-padding {
  2773.      padding-top: 0px;
  2774.      padding-bottom: 27px;
  2775.    }
  2776.  
  2777.    @media screen and (min-width: 750px) {
  2778.      .section-template--17173043150926__featured_product_bqCiyd-padding {
  2779.        padding-top: 0px;
  2780.        padding-bottom: 36px;
  2781.      }
  2782.    }</style><script src="//momdaughts.ae/cdn/shop/t/4/assets/product-info.js?v=149160427226008204701736691107" defer="defer"></script>
  2783.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/show-more.js?v=135784227224860024771736691108" defer="defer"></script>
  2784.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/price-per-item.js?v=20223165687617204711736691107" defer="defer"></script>
  2785.  
  2786.  
  2787.  
  2788.  
  2789.  <section class="color-scheme-1 gradient">
  2790.    <div class="page-width section-template--17173043150926__featured_product_bqCiyd-padding">
  2791.      <div class="featured-product product product--medium grid grid--1-col gradient color-scheme-1 product--left isolate grid--2-col-tablet">
  2792.        <div class="grid__item product__media-wrapper">
  2793. <media-gallery
  2794.  id="MediaGallery-template--17173043150926__featured_product_bqCiyd"
  2795.  role="region"
  2796.  
  2797.  aria-label="Gallery Viewer"
  2798.  data-desktop-layout=""
  2799. >
  2800.  <div id="GalleryStatus-template--17173043150926__featured_product_bqCiyd" class="visually-hidden" role="status"></div>
  2801.  <slider-component id="GalleryViewer-template--17173043150926__featured_product_bqCiyd" class="slider-mobile-gutter">
  2802.    <a class="skip-to-content-link button visually-hidden quick-add-hidden" href="#ProductInfo-template--17173043150926__featured_product_bqCiyd">
  2803.      Skip to product information
  2804.    </a>
  2805.    <ul
  2806.      id="Slider-Gallery-template--17173043150926__featured_product_bqCiyd"
  2807.      class="product__media-list contains-media grid grid--peek list-unstyled slider slider--mobile"
  2808.      role="list"
  2809.    >
  2810. <li
  2811.            id="Slide-template--17173043150926__featured_product_bqCiyd-25430969876558"
  2812.            class="product__media-item grid__item slider__slide product__media-item--single is-active"
  2813.            data-media-id="template--17173043150926__featured_product_bqCiyd-25430969876558"
  2814.          >
  2815.  
  2816. <div
  2817.  class="product-media-container media-type-image media-fit-contain global-media-settings gradient constrain-height"
  2818.  style="--ratio: 1.0; --preview-ratio: 1.0;"
  2819. >
  2820.  <modal-opener
  2821.    class="product__modal-opener product__modal-opener--image"
  2822.    data-modal="#ProductModal-template--17173043150926__featured_product_bqCiyd"
  2823.  >
  2824.    <span
  2825.      class="product__media-icon motion-reduce quick-add-hidden product__media-icon--lightbox"
  2826.      aria-hidden="true"
  2827.    >
  2828.      
  2829.          <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-plus" viewBox="0 0 19 19"><path fill="currentColor" fill-rule="evenodd" d="M4.667 7.94a.5.5 0 0 1 .499-.501l5.534-.014a.5.5 0 1 1 .002 1l-5.534.014a.5.5 0 0 1-.5-.5" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M7.926 4.665a.5.5 0 0 1 .501.498l.014 5.534a.5.5 0 1 1-1 .003l-.014-5.534a.5.5 0 0 1 .499-.501" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M12.832 3.03a6.931 6.931 0 1 0-9.802 9.802 6.931 6.931 0 0 0 9.802-9.802M2.323 2.323a7.931 7.931 0 0 1 11.296 11.136l4.628 4.628a.5.5 0 0 1-.707.707l-4.662-4.662A7.932 7.932 0 0 1 2.323 2.323" clip-rule="evenodd"/></svg>
  2830. </span>
  2831.      
  2832.    </span>
  2833.  
  2834. <div class="loading__spinner hidden">
  2835.  <svg xmlns="http://www.w3.org/2000/svg" class="spinner" viewBox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>
  2836.  
  2837. </div>
  2838. <div class="product__media media media--transparent">
  2839.      <img src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1946" alt="MomDaughts Wearable Breast Pump MY-376." srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=246 246w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=493 493w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=600 600w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=713 713w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=823 823w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=990 990w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1100 1100w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1206 1206w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1346 1346w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1426 1426w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1646 1646w, //momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&amp;width=1946 1946w" width="1946" height="1946" loading="lazy" class="image-magnify-lightbox" sizes="(min-width: 1200px) 605px, (min-width: 990px) calc(55.0vw - 10rem), (min-width: 750px) calc((100vw - 11.5rem) / 2), calc(100vw / 1 - 4rem)">
  2840.    </div>
  2841.    <button
  2842.      class="product__media-toggle quick-add-hidden product__media-zoom-lightbox"
  2843.      type="button"
  2844.      aria-haspopup="dialog"
  2845.      data-media-id="25430969876558"
  2846.    >
  2847.      <span class="visually-hidden">
  2848.        Open media 1 in modal
  2849.      </span>
  2850.    </button>
  2851.  </modal-opener></div>
  2852.  
  2853.          </li>
  2854.          
  2855.          
  2856.          
  2857.          
  2858.          
  2859.          
  2860.          </ul>
  2861.    <div class="slider-buttons quick-add-hidden small-hide">
  2862.      <button
  2863.        type="button"
  2864.        class="slider-button slider-button--prev"
  2865.        name="previous"
  2866.        aria-label="Slide left"
  2867.      >
  2868.        <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  2869. </span>
  2870.      </button>
  2871.      <div class="slider-counter caption">
  2872.        <span class="slider-counter--current">1</span>
  2873.        <span aria-hidden="true"> / </span>
  2874.        <span class="visually-hidden">of</span>
  2875.        <span class="slider-counter--total">8</span>
  2876.      </div>
  2877.      <button
  2878.        type="button"
  2879.        class="slider-button slider-button--next"
  2880.        name="next"
  2881.        aria-label="Slide right"
  2882.      >
  2883.        <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  2884. </span>
  2885.      </button>
  2886.    </div>
  2887.  </slider-component></media-gallery>
  2888.  
  2889. </div>
  2890.        <div class="product__info-wrapper grid__item">
  2891.          <section
  2892.            id="ProductInfo-template--17173043150926__featured_product_bqCiyd"
  2893.            class="product__info-container"
  2894.            data-section="template--17173043150926__featured_product_bqCiyd"
  2895.            data-url="/products/wearable-breast-pump-my376"
  2896.          ><p
  2897.                    class="product__text inline-richtext caption-with-letter-spacing"
  2898.                    
  2899.                  >MomDaughts</p><h2 class="product__title h2" >MomDaughts Wearable Breast Pump MY-376
  2900. </h2><div id="price-template--17173043150926__featured_product_bqCiyd" role="status" >
  2901. <div
  2902.    class="
  2903.      price price--large price--on-sale price--show-badge"
  2904.  >
  2905.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2906.          <span class="price-item price-item--regular">
  2907.            AED. 149.00
  2908.          </span></div>
  2909.      <div class="price__sale">
  2910.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2911.          <span>
  2912.            <s class="price-item price-item--regular">
  2913.              
  2914.                AED. 229.00
  2915.              
  2916.            </s>
  2917.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2918.        <span class="price-item price-item--sale price-item--last">
  2919.          AED. 149.00
  2920.        </span>
  2921.      </div>
  2922.      <small class="unit-price caption hidden">
  2923.        <span class="visually-hidden">Unit price</span>
  2924.        <span class="price-item price-item--last">
  2925.          <span></span>
  2926.          <span aria-hidden="true">/</span>
  2927.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2928.          <span>
  2929.          </span>
  2930.        </span>
  2931.      </small>
  2932.    </div><span class="badge price__badge-sale color-scheme-3">
  2933.        Sale
  2934.      </span>
  2935.  
  2936.      <span class="badge price__badge-sold-out color-scheme-2">
  2937.        Sold out
  2938.      </span></div>
  2939.  
  2940. </div><div class="product__tax caption rte"><a href="/policies/shipping-policy">Shipping</a> calculated at checkout.
  2941. </div><div ><form method="post" action="/cart/add" id="product_form_7540982448206" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="42149838651470">
  2942.                        
  2943. <input type="hidden" name="product-id" value="7540982448206" /><input type="hidden" name="section-id" value="template--17173043150926__featured_product_bqCiyd" /></form></div>
  2944. <variant-selects
  2945.    id="variant-selects-template--17173043150926__featured_product_bqCiyd"
  2946.    data-section="template--17173043150926__featured_product_bqCiyd"
  2947.    
  2948.  ><fieldset class="js product-form__input product-form__input--pill">
  2949.          <legend class="form__label">Type</legend>
  2950.          
  2951. <input
  2952.      type="radio"
  2953.      id="template--17173043150926__featured_product_bqCiyd-1-0"
  2954.      name="Type-1
  2955. "
  2956.      value="Single"
  2957.      form="product-form-template--17173043150926__featured_product_bqCiyd"
  2958.      
  2959.        checked
  2960.      
  2961.      
  2962.      data-product-url=""
  2963.    data-option-value-id="2815601016910"
  2964.    >
  2965.    <label for="template--17173043150926__featured_product_bqCiyd-1-0">
  2966.      Single<span class="visually-hidden label-unavailable">Variant sold out or unavailable</span>
  2967.    </label><input
  2968.      type="radio"
  2969.      id="template--17173043150926__featured_product_bqCiyd-1-1"
  2970.      name="Type-1
  2971. "
  2972.      value="Double"
  2973.      form="product-form-template--17173043150926__featured_product_bqCiyd"
  2974.      
  2975.      
  2976.      data-product-url=""
  2977.    data-option-value-id="2815601049678"
  2978.    >
  2979.    <label for="template--17173043150926__featured_product_bqCiyd-1-1">
  2980.      Double<span class="visually-hidden label-unavailable">Variant sold out or unavailable</span>
  2981.    </label>
  2982.        </fieldset><script type="application/json" data-selected-variant>
  2983.      {"id":42149838651470,"title":"Single","option1":"Single","option2":null,"option3":null,"sku":"SKU822897621","requires_shipping":true,"taxable":false,"featured_image":null,"available":true,"name":"MomDaughts Wearable Breast Pump MY-376 - Single","public_title":"Single","options":["Single"],"price":14900,"weight":200,"compare_at_price":22900,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[]}
  2984.    </script>
  2985.  </variant-selects>
  2986. <div
  2987.                    id="Quantity-Form-template--17173043150926__featured_product_bqCiyd"
  2988.                    class="product-form__input product-form__quantity product-form__quantity-top"
  2989.                    
  2990.                  >
  2991.                    
  2992.                    
  2993.  
  2994.                    <label class="quantity__label form__label" for="Quantity-template--17173043150926__featured_product_bqCiyd">
  2995.                      Quantity
  2996.                      <span class="quantity__rules-cart hidden">
  2997.  
  2998. <div class="loading__spinner hidden">
  2999.  <svg xmlns="http://www.w3.org/2000/svg" class="spinner" viewBox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>
  3000.  
  3001. </div>
  3002. <span
  3003.                          >(<span class="quantity-cart">0</span> in cart)</span
  3004.                        >
  3005.                      </span>
  3006.                    </label>
  3007.                    <div class="price-per-item__container">
  3008.                      <quantity-input class="quantity">
  3009.                        <button class="quantity__button" name="minus" type="button">
  3010.                          <span class="visually-hidden">Decrease quantity for MomDaughts Wearable Breast Pump MY-376</span>
  3011.                          <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-minus" viewBox="0 0 10 2"><path fill="currentColor" fill-rule="evenodd" d="M.5 1C.5.7.7.5 1 .5h8a.5.5 0 1 1 0 1H1A.5.5 0 0 1 .5 1" clip-rule="evenodd"/></svg>
  3012. </span>
  3013.                        </button>
  3014.                        <input
  3015.                          class="quantity__input"
  3016.                          type="number"
  3017.                          name="quantity"
  3018.                          id="Quantity-template--17173043150926__featured_product_bqCiyd"
  3019.                          data-cart-quantity="0"
  3020.                          data-min="1"
  3021.                          min="1"
  3022.                          
  3023.                          step="1"
  3024.                          value="1"
  3025.                          form="product-form-template--17173043150926__featured_product_bqCiyd"
  3026.                        >
  3027.                        <button class="quantity__button" name="plus" type="button">
  3028.                          <span class="visually-hidden">Increase quantity for MomDaughts Wearable Breast Pump MY-376</span>
  3029.                          <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-plus" viewBox="0 0 10 10"><path fill="currentColor" fill-rule="evenodd" d="M1 4.51a.5.5 0 0 0 0 1h3.5l.01 3.5a.5.5 0 0 0 1-.01V5.5l3.5-.01a.5.5 0 0 0-.01-1H5.5L5.49.99a.5.5 0 0 0-1 .01v3.5l-3.5.01z" clip-rule="evenodd"/></svg>
  3030. </span>
  3031.                        </button>
  3032.                      </quantity-input></div>
  3033.                    <div class="quantity__rules caption" id="Quantity-Rules-template--17173043150926__featured_product_bqCiyd"></div></div>
  3034. <div ><product-form
  3035.      class="product-form"
  3036.      data-hide-errors="false"
  3037.      data-section-id="template--17173043150926__featured_product_bqCiyd"
  3038.    >
  3039.      <div class="product-form__error-message-wrapper" role="alert" hidden>
  3040.        <span class="svg-wrapper"><svg class="icon icon-error" viewBox="0 0 13 13"><circle cx="6.5" cy="6.5" r="5.5" stroke="#fff" stroke-width="2"/><circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width=".7"/><path fill="#fff" d="m5.874 3.528.1 4.044h1.053l.1-4.044zm.627 6.133c.38 0 .68-.288.68-.656s-.3-.656-.68-.656-.681.288-.681.656.3.656.68.656"/><path fill="#fff" stroke="#EB001B" stroke-width=".7" d="M5.874 3.178h-.359l.01.359.1 4.044.008.341h1.736l.008-.341.1-4.044.01-.359H5.873Zm.627 6.833c.56 0 1.03-.432 1.03-1.006s-.47-1.006-1.03-1.006-1.031.432-1.031 1.006.47 1.006 1.03 1.006Z"/></svg>
  3041. </span>
  3042.        <span class="product-form__error-message"></span>
  3043.      </div><form method="post" action="/cart/add" id="product-form-template--17173043150926__featured_product_bqCiyd" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input
  3044.          type="hidden"
  3045.          name="id"
  3046.          value="42149838651470"
  3047.          
  3048.          class="product-variant-id"
  3049.        ><div class="product-form__buttons"><button
  3050.            id="ProductSubmitButton-template--17173043150926__featured_product_bqCiyd"
  3051.            type="submit"
  3052.            name="add"
  3053.            class="product-form__submit button button--full-width button--secondary"
  3054.            
  3055.          >
  3056.            <span>Add to cart
  3057. </span>
  3058.  
  3059. <div class="loading__spinner hidden">
  3060.  <svg xmlns="http://www.w3.org/2000/svg" class="spinner" viewBox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>
  3061.  
  3062. </div>
  3063. </button><div data-shopify="payment-button" class="shopify-payment-button"> <shopify-accelerated-checkout recommended="null" fallback="{&quot;name&quot;:&quot;buy_it_now&quot;,&quot;wallet_params&quot;:{}}" access-token="02bcab1467273ab10d7b7a53136c2629" buyer-country="AE" buyer-locale="en" buyer-currency="AED" variant-params="[{&quot;id&quot;:42149838651470,&quot;requiresShipping&quot;:true},{&quot;id&quot;:42149838684238,&quot;requiresShipping&quot;:true}]" shop-id="64606339150" > <div class="shopify-payment-button__button" role="button" disabled aria-hidden="true" style="background-color: transparent; border: none"> <div class="shopify-payment-button__skeleton">&nbsp;</div> </div> </shopify-accelerated-checkout> <small id="shopify-buyer-consent" class="hidden" aria-hidden="true"> This item is a recurring or deferred purchase. By continuing, I agree to the <span id="shopify-subscription-policy-button">cancellation policy</span> and authorize you to charge my payment method at the prices, frequency and dates listed on this page until my order is fulfilled or I cancel, if permitted. </small> </div>
  3064. </div><input type="hidden" name="product-id" value="7540982448206" /><input type="hidden" name="section-id" value="template--17173043150926__featured_product_bqCiyd" /></form></product-form></div>
  3065.  
  3066. <script src="//momdaughts.ae/cdn/shop/t/4/assets/share.js?v=13024540447964430191736691108" defer="defer"></script>
  3067.  
  3068. <share-button id="Share-template--17173043150926__featured_product_bqCiyd" class="share-button quick-add-hidden" >
  3069.  <button class="share-button__button hidden">
  3070.    <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-share" viewBox="0 0 13 12"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M1.625 8.125v2.167a1.083 1.083 0 0 0 1.083 1.083h7.584a1.083 1.083 0 0 0 1.083-1.083V8.125"/><path fill="currentColor" fill-rule="evenodd" d="M6.148 1.271a.5.5 0 0 1 .707 0L9.563 3.98a.5.5 0 0 1-.707.707L6.501 2.332 4.147 4.687a.5.5 0 1 1-.708-.707z" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M6.5 1.125a.5.5 0 0 1 .5.5v6.5a.5.5 0 0 1-1 0v-6.5a.5.5 0 0 1 .5-.5" clip-rule="evenodd"/></svg>
  3071. </span>
  3072.    Share
  3073.  </button>
  3074.  <details id="Details-share_w44jBg-template--17173043150926__featured_product_bqCiyd">
  3075.    <summary class="share-button__button">
  3076.      <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-share" viewBox="0 0 13 12"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M1.625 8.125v2.167a1.083 1.083 0 0 0 1.083 1.083h7.584a1.083 1.083 0 0 0 1.083-1.083V8.125"/><path fill="currentColor" fill-rule="evenodd" d="M6.148 1.271a.5.5 0 0 1 .707 0L9.563 3.98a.5.5 0 0 1-.707.707L6.501 2.332 4.147 4.687a.5.5 0 1 1-.708-.707z" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M6.5 1.125a.5.5 0 0 1 .5.5v6.5a.5.5 0 0 1-1 0v-6.5a.5.5 0 0 1 .5-.5" clip-rule="evenodd"/></svg>
  3077. </span>
  3078.      Share
  3079.    </summary>
  3080.    <div class="share-button__fallback motion-reduce">
  3081.      <div class="field">
  3082.        <span id="ShareMessage-template--17173043150926__featured_product_bqCiyd" class="share-button__message hidden" role="status"> </span>
  3083.        <input
  3084.          type="text"
  3085.          class="field__input"
  3086.          id="ShareUrl-template--17173043150926__featured_product_bqCiyd"
  3087.          value="https://momdaughts.ae/products/wearable-breast-pump-my376"
  3088.          placeholder="Link"
  3089.          onclick="this.select();"
  3090.          readonly
  3091.        >
  3092.        <label class="field__label" for="ShareUrl-template--17173043150926__featured_product_bqCiyd">Link</label>
  3093.      </div>
  3094.      <button class="share-button__close hidden">
  3095.        <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  3096. </span>
  3097.        <span class="visually-hidden">Close share</span>
  3098.      </button>
  3099.      <button class="share-button__copy">
  3100.        <span class="svg-wrapper"><svg
  3101.  class="icon icon-clipboard"
  3102.  width="11"
  3103.  height="13"
  3104.  fill="none"
  3105.  xmlns="http://www.w3.org/2000/svg"
  3106.  aria-hidden="true"
  3107.  focusable="false"
  3108.  viewBox="0 0 11 13"
  3109. >
  3110.  <path fill-rule="evenodd" clip-rule="evenodd" d="M2 1a1 1 0 011-1h7a1 1 0 011 1v9a1 1 0 01-1 1V1H2zM1 2a1 1 0 00-1 1v9a1 1 0 001 1h7a1 1 0 001-1V3a1 1 0 00-1-1H1zm0 10V3h7v9H1z" fill="currentColor"/>
  3111. </svg>
  3112. </span>
  3113.        <span class="visually-hidden">Copy link</span>
  3114.      </button>
  3115.    </div>
  3116.  </details>
  3117. </share-button>
  3118.  
  3119. <a
  3120.              
  3121.                href="/products/wearable-breast-pump-my376"
  3122.              
  3123.              class="link product__view-details animate-arrow"
  3124.            >
  3125.              View full details
  3126. <svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3127. </a>
  3128.          </section>
  3129.        </div>
  3130.      </div>
  3131.      
  3132.  
  3133. <product-modal id="ProductModal-template--17173043150926__featured_product_bqCiyd" class="product-media-modal media-modal">
  3134.  <div
  3135.    class="product-media-modal__dialog color-scheme-1 gradient"
  3136.    role="dialog"
  3137.    aria-label="Media gallery"
  3138.    aria-modal="true"
  3139.    tabindex="-1"
  3140.  >
  3141.    <button
  3142.      id="ModalClose-template--17173043150926__featured_product_bqCiyd"
  3143.      type="button"
  3144.      class="product-media-modal__toggle"
  3145.      aria-label="Close"
  3146.    >
  3147.      <svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewBox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
  3148.  
  3149.    </button>
  3150.  
  3151.    <div
  3152.      class="product-media-modal__content color-scheme-1 gradient"
  3153.      role="document"
  3154.      aria-label="Media gallery"
  3155.      tabindex="0"
  3156.    >
  3157. <img
  3158.    class="global-media-settings global-media-settings--no-shadow"
  3159.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356 1080w
  3160.    "
  3161.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3162.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=1445"
  3163.    alt="MomDaughts Wearable Breast Pump MY-376."
  3164.    loading="lazy"
  3165.    width="1100"
  3166.    height="1100"
  3167.    data-media-id="25430969876558"
  3168.  >
  3169. <img
  3170.    class="global-media-settings global-media-settings--no-shadow"
  3171.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853 1080w
  3172.    "
  3173.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3174.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=1445"
  3175.    alt="MomDaughts Wearable Breast Pump MY-376."
  3176.    loading="lazy"
  3177.    width="1100"
  3178.    height="1100"
  3179.    data-media-id="25393985323086"
  3180.  >
  3181. <img
  3182.    class="global-media-settings global-media-settings--no-shadow"
  3183.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-969138.png?v=1741444941&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-969138.png?v=1741444941 1080w
  3184.    "
  3185.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3186.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-969138.png?v=1741444941&width=1445"
  3187.    alt="MomDaughts Wearable Breast Pump MY - 376 - MomDaughts UAE"
  3188.    loading="lazy"
  3189.    width="1100"
  3190.    height="1100"
  3191.    data-media-id="25528103469134"
  3192.  >
  3193. <img
  3194.    class="global-media-settings global-media-settings--no-shadow"
  3195.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-226840.jpg?v=1739571233&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-226840.jpg?v=1739571233 1080w
  3196.    "
  3197.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3198.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-226840.jpg?v=1739571233&width=1445"
  3199.    alt="MomDaughts Wearable Breast Pump MY-376."
  3200.    loading="lazy"
  3201.    width="1100"
  3202.    height="1100"
  3203.    data-media-id="25406068162638"
  3204.  >
  3205. <img
  3206.    class="global-media-settings global-media-settings--no-shadow"
  3207.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-420831.webp?v=1739571233&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-420831.webp?v=1739571233 640w
  3208.    "
  3209.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3210.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-420831.webp?v=1739571233&width=1445"
  3211.    alt="MomDaughts Wearable Breast Pump MY-376."
  3212.    loading="lazy"
  3213.    width="1100"
  3214.    height="1100"
  3215.    data-media-id="25383102840910"
  3216.  >
  3217. <img
  3218.    class="global-media-settings global-media-settings--no-shadow"
  3219.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-809378.jpg?v=1739571233&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-809378.jpg?v=1739571233 1080w
  3220.    "
  3221.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3222.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-809378.jpg?v=1739571233&width=1445"
  3223.    alt="MomDaughts Wearable Breast Pump MY-376."
  3224.    loading="lazy"
  3225.    width="1100"
  3226.    height="1100"
  3227.    data-media-id="25406146216014"
  3228.  >
  3229. <img
  3230.    class="global-media-settings global-media-settings--no-shadow"
  3231.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-344200.jpg?v=1739571233&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-344200.jpg?v=1739571233 1000w
  3232.    "
  3233.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3234.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-344200.jpg?v=1739571233&width=1445"
  3235.    alt="MomDaughts Wearable Breast Pump MY-376."
  3236.    loading="lazy"
  3237.    width="1100"
  3238.    height="1100"
  3239.    data-media-id="25406036410446"
  3240.  >
  3241. <img
  3242.    class="global-media-settings global-media-settings--no-shadow"
  3243.    srcset="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-415261.png?v=1739571233&width=550 550w,//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-415261.png?v=1739571233 966w
  3244.    "
  3245.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3246.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-415261.png?v=1739571233&width=1445"
  3247.    alt="MomDaughts Wearable Breast Pump MY-376."
  3248.    loading="lazy"
  3249.    width="1100"
  3250.    height="1099"
  3251.    data-media-id="25383102873678"
  3252.  ></div>
  3253.  </div>
  3254. </product-modal>
  3255.  
  3256.    </div>
  3257.  </section>
  3258.  
  3259.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/product-form.js?v=82553749319723712671736691107" defer="defer"></script>
  3260. <script type="application/ld+json">
  3261.    {"@context":"http:\/\/schema.org\/","@id":"\/products\/wearable-breast-pump-my376#product","@type":"ProductGroup","brand":{"@type":"Brand","name":"MomDaughts"},"category":"Electric Breast Pumps","description":"Experience the perfect combination of comfort, convenience, and efficiency with this lightweight wearable breast pump. Designed for busy moms, it fits discreetly under clothing, allowing you to pump anytime, anywhere without interruptions.\nWith 9 adjustable suction levels and 3 pumping modes, this pump ensures a personalized and comfortable experience while optimizing milk flow. Compact, portable, and budget-friendly, it’s perfect for multitasking moms who need a reliable and hassle-free solution.\nWhether you’re at work, running errands, or relaxing at home, this hands-free breast pump is your ultimate companion. Elevate your breastfeeding journey with a powerful and innovative design made just for you.","hasVariant":[{"@id":"\/products\/wearable-breast-pump-my376?variant=42149838651470#variant","@type":"Product","image":"https:\/\/momdaughts.ae\/cdn\/shop\/files\/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356\u0026width=1920","name":"MomDaughts Wearable Breast Pump MY-376 - Single","offers":{"@id":"\/products\/wearable-breast-pump-my376?variant=42149838651470#offer","@type":"Offer","availability":"http:\/\/schema.org\/InStock","price":"149.00","priceCurrency":"AED","url":"https:\/\/momdaughts.ae\/products\/wearable-breast-pump-my376?variant=42149838651470"},"sku":"SKU822897621"},{"@id":"\/products\/wearable-breast-pump-my376?variant=42149838684238#variant","@type":"Product","image":"https:\/\/momdaughts.ae\/cdn\/shop\/files\/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356\u0026width=1920","name":"MomDaughts Wearable Breast Pump MY-376 - Double","offers":{"@id":"\/products\/wearable-breast-pump-my376?variant=42149838684238#offer","@type":"Offer","availability":"http:\/\/schema.org\/InStock","price":"269.00","priceCurrency":"AED","url":"https:\/\/momdaughts.ae\/products\/wearable-breast-pump-my376?variant=42149838684238"},"sku":"MY-376-(Double)"}],"name":"MomDaughts Wearable Breast Pump MY-376","productGroupID":"7540982448206","url":"https:\/\/momdaughts.ae\/products\/wearable-breast-pump-my376"}
  3262.  </script>
  3263.  
  3264.  
  3265.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/product-modal.js?v=116616134454508949461736691107" defer="defer"></script>
  3266.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/media-gallery.js?v=53998976194532824491736691107" defer="defer"></script>
  3267.  
  3268. </product-info>
  3269.  
  3270.  
  3271. </section><div id="shopify-section-template--17173043150926__ss_simple_faq_hznGzx" class="shopify-section"><div class="rb-faq-shopify-section">
  3272.    <h1 style="text-align: center; padding: 20px 20px 0px 20px;"> FAQs </h1>
  3273.    <div class="rb-faq-container">
  3274.        
  3275.        <div class="rb-faq-container-item">
  3276.            <input style="display:none!important;" type="checkbox" id="tab1" class="tab-toggle">
  3277.            <label for="tab1" class="rb-faq-question">How long should I breastfeed my baby?</label>
  3278.            <div class="rb-faq-answer"><p><strong>Exclusive breastfeeding</strong> for the first 6 months: No formula, water, or other liquids.</p><p><strong>Continued breastfeeding</strong> for at least 2 years, alongside complementary foods. Breastfeeding can continue as long as both mom and baby desire.</p></div>
  3279.        </div>
  3280.        
  3281.        <div class="rb-faq-container-item">
  3282.            <input style="display:none!important;" type="checkbox" id="tab2" class="tab-toggle">
  3283.            <label for="tab2" class="rb-faq-question">Are your products safe for use during pregnancy and breastfeeding?</label>
  3284.            <div class="rb-faq-answer"><p>All our products are designed with safety in mind and are suitable for use during breastfeeding. However, consult with your healthcare provider before using any breast pump if you have concerns</p></div>
  3285.        </div>
  3286.        
  3287.        <div class="rb-faq-container-item">
  3288.            <input style="display:none!important;" type="checkbox" id="tab3" class="tab-toggle">
  3289.            <label for="tab3" class="rb-faq-question">How can I get more details about the product and its usage?</label>
  3290.            <div class="rb-faq-answer"><p>Each product page contains comprehensive details, and we include a usage guide with every purchase. For additional help, our customer support team is readily available to assist you.</p></div>
  3291.        </div>
  3292.        
  3293.        <div class="rb-faq-container-item">
  3294.            <input style="display:none!important;" type="checkbox" id="tab4" class="tab-toggle">
  3295.            <label for="tab4" class="rb-faq-question">Why is breastfeeding crucial for babies?</label>
  3296.            <div class="rb-faq-answer"><p>Breast milk is the ideal source of nutrition, providing essential nutrients and antibodies that promote healthy growth and development.</p></div>
  3297.        </div>
  3298.        
  3299.        <div class="rb-faq-container-item">
  3300.            <input style="display:none!important;" type="checkbox" id="tab5" class="tab-toggle">
  3301.            <label for="tab5" class="rb-faq-question">Does the pump work for larger breasts?</label>
  3302.            <div class="rb-faq-answer"><p>Yes, our pumps are designed to accommodate all breast sizes and fit comfortably inside any standard bra.</p></div>
  3303.        </div>
  3304.        
  3305.    </div>
  3306.  </div>
  3307.  
  3308.  
  3309.  <style data-shopify>
  3310.  
  3311.    .rb-faq-answer a {
  3312.      color: inherit;
  3313.      text-decoration: inherit;
  3314.    }
  3315.  
  3316.    .rb-faq-shopify-section {
  3317.      padding-right:30px;
  3318.      padding-left:30px;
  3319.      margin-bottom:50px
  3320.    }
  3321.  
  3322.    .rb-faq-container {
  3323.        margin:auto;
  3324.        max-width:1000px;
  3325.        margin-top:20px;
  3326.    }
  3327.  
  3328.    .rb-faq-container-item {
  3329.          border-radius: 8px;
  3330.          margin-bottom:10px;
  3331.          overflow: hidden;
  3332.    }
  3333.  
  3334.    .rb-faq-question::after{
  3335.          color: #ffffff;
  3336.          content: '\276F';
  3337.          transition: all 0.2s ease;
  3338.      }
  3339.  
  3340.    .rb-faq-question {
  3341.        border-radius: 8px;
  3342.        display:flex !important;
  3343.        justify-content: space-between;
  3344.        background-color:#2c2a6b;
  3345.        padding:15px 20px;
  3346.        font-weight: bold;
  3347.        color: #ffffff;
  3348.        font-size: 1.5rem;
  3349.    }
  3350.  
  3351.    .rb-faq-question:hover {
  3352.          color: #ffcfdb;
  3353.      }
  3354.    .rb-faq-answer {
  3355.          padding: 0px 20px;
  3356.          position: relative;
  3357.          width: 100%;
  3358.          height: 0;
  3359.          opacity: 0;
  3360.          overflow: hidden;
  3361.          visibility: hidden;
  3362.          will-change: height;
  3363.          transform: translateY(25px);
  3364.          transition: all .2s ease;
  3365.          -webkit-backface-visibility: hidden;
  3366.          backface-visibility: hidden;
  3367.    }
  3368.    .tab-toggle:checked ~ .rb-faq-answer {
  3369.      transform: translateY(0);
  3370.      padding: 15px 20px;
  3371.      height:auto;
  3372.      opacity: 1;
  3373.      overflow: unset;
  3374.      visibility: visible;
  3375.      transition: all .3s ease,opacity 1s ease,height .3s ease;
  3376.      color: #000000;
  3377.      background-color: #ffffff;
  3378.    }
  3379.    .tab-toggle:checked ~ .rb-faq-question::after {
  3380.          transform: rotate(90deg);
  3381.    }
  3382.    .tab-toggle{
  3383.          display:none;
  3384.    }
  3385.  </style></div><section id="shopify-section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804" class="shopify-section"><link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  3386. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-card.css?v=120341546515895839841736691105" rel="stylesheet" type="text/css" media="all" />
  3387. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-article-card.css?v=47105078945762260691736691105" rel="stylesheet" type="text/css" media="all" />
  3388. <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-featured-blog.css?v=36629982431115873811736691108" rel="stylesheet" type="text/css" media="all" />
  3389. <style data-shopify>.section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-padding {
  3390.    padding-top: 15px;
  3391.    padding-bottom: 15px;
  3392.  }
  3393.  
  3394.  @media screen and (min-width: 750px) {
  3395.    .section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-padding {
  3396.      padding-top: 20px;
  3397.      padding-bottom: 20px;
  3398.    }
  3399.  }</style><div class="blog color-scheme-1 gradient">
  3400.  <div class="page-width-desktop isolate page-width-tablet section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-padding"><div class="title-wrapper-with-link title-wrapper--self-padded-mobile title-wrapper--no-top-margin">
  3401.        <h2
  3402.          id="SectionHeading-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804"
  3403.          class="blog__title inline-richtext h2"
  3404.          
  3405.        >
  3406.          Break the taboo! Read our blogs
  3407.        </h2></div><slider-component class="slider-mobile-gutter">
  3408.      <ul
  3409.        id="Slider-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804"
  3410.        class="blog__posts articles-wrapper contains-card contains-card--article grid grid--peek grid--2-col-tablet grid--2-col-desktop slider slider--mobile"
  3411.        role="list"
  3412.      ><li
  3413.              id="Slide-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-1"
  3414.              class="blog__post grid__item article slider__slide slider__slide--full-width"
  3415.              
  3416.            >
  3417.              
  3418. <div class="article-card-wrapper card-wrapper underline-links-hover">
  3419.    
  3420.    <div
  3421.      class="
  3422.        card article-card
  3423.        card--card
  3424.        
  3425.         card--media
  3426.         color-scheme-2 gradient
  3427.        
  3428.      "
  3429.      style="--ratio-percent: 60.24096385542169%;"
  3430.    >
  3431.      <div
  3432.        class="card__inner  ratio"
  3433.        style="--ratio-percent: 60.24096385542169%;"
  3434.      ><div class="article-card__image-wrapper card__media">
  3435.            <div
  3436.              class="article-card__image media media--hover-effect"
  3437.              
  3438.            >
  3439.              
  3440.              <img
  3441.                srcset="//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=165 165w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=360 360w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=533 533w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=720 720w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=1000 1000w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=1500 1500w,//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376 1920w
  3442.                "
  3443.                src="//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=533"
  3444.                sizes="(min-width: 1200px) 550px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
  3445.                alt="The Affordable Wearable Breast Pump Every Mom Needs - MomDaughts UAE"
  3446.                class="motion-reduce"
  3447.                
  3448.                  loading="lazy"
  3449.                
  3450.                width="1920"
  3451.                height="1080"
  3452.              >
  3453.              
  3454.            </div>
  3455.          </div><div class="card__content">
  3456.          <div class="card__information">
  3457.            <h3 class="card__heading h2">
  3458.              <a href="/blogs/blogs/the-affordable-wearable-breast-pump-every-mom-needs" class="full-unstyled-link">
  3459.                The Affordable Wearable Breast Pump Every Mom N...
  3460.              </a>
  3461.            </h3>
  3462.            <div class="article-card__info caption-with-letter-spacing h5"></div><p class="article-card__excerpt rte-width">Being a mom is a full-time job, and for breastfeeding moms, the journey comes with its own set of challenges. Whether you're juggling work meetings, running errands, or simply enjoying...
  3463. </p><div class="article-card__footer"></div></div></div>
  3464.      </div>
  3465.      <div class="card__content">
  3466.        <div class="card__information">
  3467.          <h3 class="card__heading h2">
  3468.            <a href="/blogs/blogs/the-affordable-wearable-breast-pump-every-mom-needs" class="full-unstyled-link">
  3469.              The Affordable Wearable Breast Pump Every Mom N...
  3470.            </a>
  3471.          </h3>
  3472.          <div class="article-card__info caption-with-letter-spacing h5"></div><p class="article-card__excerpt rte-width">Being a mom is a full-time job, and for breastfeeding moms, the journey comes with its own set of challenges. Whether you're juggling work meetings, running errands, or simply enjoying...
  3473. </p><div class="article-card__footer"></div></div></div>
  3474.    </div>
  3475.  </div>
  3476.            </li><li
  3477.              id="Slide-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-2"
  3478.              class="blog__post grid__item article slider__slide slider__slide--full-width"
  3479.              
  3480.            >
  3481.              
  3482. <div class="article-card-wrapper card-wrapper underline-links-hover">
  3483.    
  3484.    <div
  3485.      class="
  3486.        card article-card
  3487.        card--card
  3488.        
  3489.         card--media
  3490.         color-scheme-2 gradient
  3491.        
  3492.      "
  3493.      style="--ratio-percent: 60.24096385542169%;"
  3494.    >
  3495.      <div
  3496.        class="card__inner  ratio"
  3497.        style="--ratio-percent: 60.24096385542169%;"
  3498.      ><div class="article-card__image-wrapper card__media">
  3499.            <div
  3500.              class="article-card__image media media--hover-effect"
  3501.              
  3502.            >
  3503.              
  3504.              <img
  3505.                srcset="//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=165 165w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=360 360w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=533 533w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=720 720w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=1000 1000w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=1500 1500w,//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374 1920w
  3506.                "
  3507.                src="//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=533"
  3508.                sizes="(min-width: 1200px) 550px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
  3509.                alt="The Ultimate Guide to IPL Laser Hair Removal at Home - MomDaughts UAE"
  3510.                class="motion-reduce"
  3511.                
  3512.                  loading="lazy"
  3513.                
  3514.                width="1920"
  3515.                height="1080"
  3516.              >
  3517.              
  3518.            </div>
  3519.          </div><div class="card__content">
  3520.          <div class="card__information">
  3521.            <h3 class="card__heading h2">
  3522.              <a href="/blogs/blogs/the-ultimate-guide-to-ipl-laser-hair-removal-at-home" class="full-unstyled-link">
  3523.                The Ultimate Guide to IPL Laser Hair Removal at...
  3524.              </a>
  3525.            </h3>
  3526.            <div class="article-card__info caption-with-letter-spacing h5"></div><p class="article-card__excerpt rte-width">Are you tired of the endless cycle of shaving, waxing, and plucking? Let’s face it: traditional hair removal methods are not only time-consuming but also harsh on the skin. That’s...
  3527. </p><div class="article-card__footer"></div></div></div>
  3528.      </div>
  3529.      <div class="card__content">
  3530.        <div class="card__information">
  3531.          <h3 class="card__heading h2">
  3532.            <a href="/blogs/blogs/the-ultimate-guide-to-ipl-laser-hair-removal-at-home" class="full-unstyled-link">
  3533.              The Ultimate Guide to IPL Laser Hair Removal at...
  3534.            </a>
  3535.          </h3>
  3536.          <div class="article-card__info caption-with-letter-spacing h5"></div><p class="article-card__excerpt rte-width">Are you tired of the endless cycle of shaving, waxing, and plucking? Let’s face it: traditional hair removal methods are not only time-consuming but also harsh on the skin. That’s...
  3537. </p><div class="article-card__footer"></div></div></div>
  3538.    </div>
  3539.  </div>
  3540.            </li></ul><div class="slider-buttons medium-hide">
  3541.          <button
  3542.            type="button"
  3543.            class="slider-button slider-button--prev"
  3544.            name="previous"
  3545.            aria-label="Slide left"
  3546.          >
  3547.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  3548. </span>
  3549.          </button>
  3550.          <div class="slider-counter caption">
  3551.            <span class="slider-counter--current">1</span>
  3552.            <span aria-hidden="true"> / </span>
  3553.            <span class="visually-hidden">of</span>
  3554.            <span class="slider-counter--total">2</span>
  3555.          </div>
  3556.          <button
  3557.            type="button"
  3558.            class="slider-button slider-button--next"
  3559.            name="next"
  3560.            aria-label="Slide right"
  3561.          >
  3562.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  3563. </span>
  3564.          </button>
  3565.        </div></slider-component></div>
  3566. </div>
  3567.  
  3568.  
  3569. </section><section id="shopify-section-template--17173043150926__collection-list" class="shopify-section section section-collection-list"><link href="//momdaughts.ae/cdn/shop/t/4/assets/section-collection-list.css?v=70863279319435850561736691107" rel="stylesheet" type="text/css" media="all" />
  3570. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-card.css?v=120341546515895839841736691105" rel="stylesheet" type="text/css" media="all" />
  3571. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  3572. <style data-shopify>.section-template--17173043150926__collection-list-padding {
  3573.    padding-top: 15px;
  3574.    padding-bottom: 15px;
  3575.  }
  3576.  
  3577.  @media screen and (min-width: 750px) {
  3578.    .section-template--17173043150926__collection-list-padding {
  3579.      padding-top: 20px;
  3580.      padding-bottom: 20px;
  3581.    }
  3582.  }</style><div class="color-scheme-1 gradient">
  3583.  <div class="collection-list-wrapper page-width isolate page-width-desktop no-heading section-template--17173043150926__collection-list-padding"><slider-component class="slider-mobile-gutter">
  3584.      <ul
  3585.        class="collection-list contains-card contains-card--collection contains-card--standard grid grid--3-col-desktop grid--1-col-tablet-down slider slider--tablet grid--peek collection-list--3-items"
  3586.        id="Slider-template--17173043150926__collection-list"
  3587.        role="list"
  3588.      ><li
  3589.            id="Slide-template--17173043150926__collection-list-1"
  3590.            class="collection-list__item grid__item slider__slide"
  3591.            
  3592.            
  3593.          >
  3594. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3595.  <div
  3596.    class="
  3597.      card
  3598.      card--card
  3599.       card--media
  3600.       color-scheme-2 gradient
  3601.      
  3602.      
  3603.    "
  3604.    style="--ratio-percent: 100.0%;"
  3605.  >
  3606.    <div
  3607.      class="card__inner  ratio"
  3608.      style="--ratio-percent: 100.0%;"
  3609.    ><div class="card__media">
  3610.          <div class="media media--transparent media--hover-effect">
  3611.            <img
  3612.              srcset="//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=165 165w,//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=330 330w,//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=535 535w,//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=750 750w,//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=1000 1000w,//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353 1080w
  3613.              "
  3614.              src="//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=1500"
  3615.              sizes="
  3616.                (min-width: 1200px) 366px,
  3617.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3618.                calc(100vw - 3rem)
  3619.              "
  3620.              alt="Breast Pumps - MomDaughts UAE"
  3621.              height="1080"
  3622.              width="1080"
  3623.              loading="lazy"
  3624.              class="motion-reduce"
  3625.            >
  3626.          </div>
  3627.        </div><div class="card__content">
  3628.          <div class="card__information">
  3629.            <h3 class="card__heading">
  3630.              <a
  3631.                
  3632.                  href="/collections/breast-pumps"
  3633.                
  3634.                class="full-unstyled-link"
  3635.              >Breast Pumps<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3636. </span>
  3637.              </a>
  3638.            </h3></div>
  3639.        </div></div><div class="card__content">
  3640.        <div class="card__information">
  3641.          <h3 class="card__heading">
  3642.            <a
  3643.              
  3644.                href="/collections/breast-pumps"
  3645.              
  3646.              class="full-unstyled-link"
  3647.            >Breast Pumps<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3648. </span>
  3649.            </a>
  3650.          </h3></div>
  3651.      </div></div>
  3652. </div>
  3653.  
  3654.          </li><li
  3655.            id="Slide-template--17173043150926__collection-list-2"
  3656.            class="collection-list__item grid__item slider__slide"
  3657.            
  3658.            
  3659.          >
  3660. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3661.  <div
  3662.    class="
  3663.      card
  3664.      card--card
  3665.       card--media
  3666.       color-scheme-2 gradient
  3667.      
  3668.      
  3669.    "
  3670.    style="--ratio-percent: 100.0%;"
  3671.  >
  3672.    <div
  3673.      class="card__inner  ratio"
  3674.      style="--ratio-percent: 100.0%;"
  3675.    ><div class="card__media">
  3676.          <div class="media media--transparent media--hover-effect">
  3677.            <img
  3678.              srcset="//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=165 165w,//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=330 330w,//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=535 535w,//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=750 750w,//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=1000 1000w,//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356 1080w
  3679.              "
  3680.              src="//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=1500"
  3681.              sizes="
  3682.                (min-width: 1200px) 366px,
  3683.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3684.                calc(100vw - 3rem)
  3685.              "
  3686.              alt="Personal Care - MomDaughts UAE"
  3687.              height="1080"
  3688.              width="1080"
  3689.              loading="lazy"
  3690.              class="motion-reduce"
  3691.            >
  3692.          </div>
  3693.        </div><div class="card__content">
  3694.          <div class="card__information">
  3695.            <h3 class="card__heading">
  3696.              <a
  3697.                
  3698.                  href="/collections/personal-care"
  3699.                
  3700.                class="full-unstyled-link"
  3701.              >Personal Care<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3702. </span>
  3703.              </a>
  3704.            </h3></div>
  3705.        </div></div><div class="card__content">
  3706.        <div class="card__information">
  3707.          <h3 class="card__heading">
  3708.            <a
  3709.              
  3710.                href="/collections/personal-care"
  3711.              
  3712.              class="full-unstyled-link"
  3713.            >Personal Care<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3714. </span>
  3715.            </a>
  3716.          </h3></div>
  3717.      </div></div>
  3718. </div>
  3719.  
  3720.          </li><li
  3721.            id="Slide-template--17173043150926__collection-list-3"
  3722.            class="collection-list__item grid__item slider__slide"
  3723.            
  3724.            
  3725.          >
  3726. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3727.  <div
  3728.    class="
  3729.      card
  3730.      card--card
  3731.       card--media
  3732.       color-scheme-2 gradient
  3733.      
  3734.      
  3735.    "
  3736.    style="--ratio-percent: 100.0%;"
  3737.  >
  3738.    <div
  3739.      class="card__inner  ratio"
  3740.      style="--ratio-percent: 100.0%;"
  3741.    ><div class="card__media">
  3742.          <div class="media media--transparent media--hover-effect">
  3743.            <img
  3744.              srcset="//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=165 165w,//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=330 330w,//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=535 535w,//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=750 750w,//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=1000 1000w,//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354 1080w
  3745.              "
  3746.              src="//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=1500"
  3747.              sizes="
  3748.                (min-width: 1200px) 366px,
  3749.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3750.                calc(100vw - 3rem)
  3751.              "
  3752.              alt="Menstrual Collection - MomDaughts UAE"
  3753.              height="1080"
  3754.              width="1080"
  3755.              loading="lazy"
  3756.              class="motion-reduce"
  3757.            >
  3758.          </div>
  3759.        </div><div class="card__content">
  3760.          <div class="card__information">
  3761.            <h3 class="card__heading">
  3762.              <a
  3763.                
  3764.                  href="/collections/menstrual-cups"
  3765.                
  3766.                class="full-unstyled-link"
  3767.              >Menstrual Collection<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3768. </span>
  3769.              </a>
  3770.            </h3></div>
  3771.        </div></div><div class="card__content">
  3772.        <div class="card__information">
  3773.          <h3 class="card__heading">
  3774.            <a
  3775.              
  3776.                href="/collections/menstrual-cups"
  3777.              
  3778.              class="full-unstyled-link"
  3779.            >Menstrual Collection<span class="icon-wrap"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3780. </span>
  3781.            </a>
  3782.          </h3></div>
  3783.      </div></div>
  3784. </div>
  3785.  
  3786.          </li></ul><div class="slider-buttons">
  3787.          <button
  3788.            type="button"
  3789.            class="slider-button slider-button--prev"
  3790.            name="previous"
  3791.            aria-label="Slide left"
  3792.          >
  3793.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  3794. </span>
  3795.          </button>
  3796.          <div class="slider-counter caption">
  3797.            <span class="slider-counter--current">1</span>
  3798.            <span aria-hidden="true"> / </span>
  3799.            <span class="visually-hidden">of</span>
  3800.            <span class="slider-counter--total">3</span>
  3801.          </div>
  3802.          <button
  3803.            type="button"
  3804.            class="slider-button slider-button--next"
  3805.            name="next"
  3806.            aria-label="Slide right"
  3807.          >
  3808.            <span class="svg-wrapper"><svg class="icon icon-caret" viewBox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
  3809. </span>
  3810.          </button>
  3811.        </div></slider-component><div
  3812.        class="center collection-list-view-all small-hide medium-hide"
  3813.        
  3814.      >
  3815.        <a
  3816.          href="/collections"
  3817.          class="button"
  3818.          id="ViewAllButton-template--17173043150926__collection-list"
  3819.          aria-labelledby="ViewAllButton-template--17173043150926__collection-list SectionHeading-template--17173043150926__collection-list"
  3820.        >View all</a>
  3821.      </div></div>
  3822. </div>
  3823.  
  3824.  
  3825. </section><section id="shopify-section-template--17173043150926__newsletter" class="shopify-section section"><link href="//momdaughts.ae/cdn/shop/t/4/assets/component-newsletter.css?v=4727253280200485261736691106" rel="stylesheet" type="text/css" media="all" />
  3826. <link href="//momdaughts.ae/cdn/shop/t/4/assets/newsletter-section.css?v=62410470717655853621736691107" rel="stylesheet" type="text/css" media="all" />
  3827. <style data-shopify>.section-template--17173043150926__newsletter-padding {
  3828.    padding-top: 15px;
  3829.    padding-bottom: 21px;
  3830.  }
  3831.  
  3832.  @media screen and (min-width: 750px) {
  3833.    .section-template--17173043150926__newsletter-padding {
  3834.      padding-top: 20px;
  3835.      padding-bottom: 28px;
  3836.    }
  3837.  }</style><div class="newsletter center ">
  3838.  <div class="newsletter__wrapper color-scheme-1 gradient content-container isolate content-container--full-width section-template--17173043150926__newsletter-padding"><h2
  3839.            class="inline-richtext h2"
  3840.            
  3841.            
  3842.          >
  3843.            Get Regular Updates via Email
  3844.          </h2><div
  3845.            class="newsletter__subheading rte"
  3846.            
  3847.            
  3848.          >
  3849.            <p>To get discounts and offers, join MomDaughts' email list now!</p>
  3850.          </div><div >
  3851.            <form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="newsletter-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" />
  3852.              <input type="hidden" name="contact[tags]" value="newsletter">
  3853.              <div
  3854.                class="newsletter-form__field-wrapper"
  3855.                
  3856.              >
  3857.                <div class="field">
  3858.                  <input
  3859.                    id="NewsletterForm--template--17173043150926__newsletter"
  3860.                    type="email"
  3861.                    name="contact[email]"
  3862.                    class="field__input"
  3863.                    value=""
  3864.                    aria-required="true"
  3865.                    autocorrect="off"
  3866.                    autocapitalize="off"
  3867.                    autocomplete="email"
  3868.                    
  3869.                    placeholder="Email"
  3870.                    required
  3871.                  >
  3872.                  <label class="field__label" for="NewsletterForm--template--17173043150926__newsletter">
  3873.                    Email
  3874.                  </label>
  3875.                  <button
  3876.                    type="submit"
  3877.                    class="newsletter-form__button field__button"
  3878.                    name="commit"
  3879.                    id="Subscribe"
  3880.                    aria-label="Subscribe"
  3881.                  >
  3882.                    <span class="svg-wrapper"><svg xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-arrow" viewBox="0 0 14 10"><path fill="currentColor" fill-rule="evenodd" d="M8.537.808a.5.5 0 0 1 .817-.162l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L11.793 5.5H1a.5.5 0 0 1 0-1h10.793L8.646 1.354a.5.5 0 0 1-.109-.546" clip-rule="evenodd"/></svg>
  3883. </span>
  3884.                  </button>
  3885.                </div></div></form>
  3886.          </div></div>
  3887. </div>
  3888.  
  3889.  
  3890. <style> #shopify-section-template--17173043150926__newsletter .newsletter-form__button {width: 48px; height: 48px;} </style></section>
  3891.    </main>
  3892.  
  3893.    <!-- BEGIN sections: footer-group -->
  3894. <div id="shopify-section-sections--17173044527182__footer" class="shopify-section shopify-section-group-footer-group">
  3895. <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-footer.css?v=60318643098753476351736691108" rel="stylesheet" type="text/css" media="all" />
  3896. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-newsletter.css?v=4727253280200485261736691106" rel="stylesheet" type="text/css" media="all" />
  3897. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-menu.css?v=151968516119678728991736691106" rel="stylesheet" type="text/css" media="all" />
  3898. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-payment.css?v=69253961410771838501736691106" rel="stylesheet" type="text/css" media="all" />
  3899. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-social.css?v=35792976012981934991736691106" rel="stylesheet" type="text/css" media="all" />
  3900. <style data-shopify>.footer {
  3901.    margin-top: 0px;
  3902.  }
  3903.  
  3904.  .section-sections--17173044527182__footer-padding {
  3905.    padding-top: 36px;
  3906.    padding-bottom: 36px;
  3907.  }
  3908.  
  3909.  @media screen and (min-width: 750px) {
  3910.    .footer {
  3911.      margin-top: 0px;
  3912.    }
  3913.  
  3914.    .section-sections--17173044527182__footer-padding {
  3915.      padding-top: 48px;
  3916.      padding-bottom: 48px;
  3917.    }
  3918.  }</style><footer class="footer color-scheme-2 gradient section-sections--17173044527182__footer-padding"><div class="footer__content-top page-width"><div
  3919.            class="footer__blocks-wrapper grid grid--1-col grid--2-col grid--4-col-tablet "
  3920.            
  3921.          ><div
  3922.                class="footer-block grid__item footer-block--menu"
  3923.                
  3924.                
  3925.              ><h2 class="footer-block__heading inline-richtext">Menu</h2><ul class="footer-block__details-content list-unstyled"><li>
  3926.                            <a
  3927.                              href="/search"
  3928.                              class="link link--text list-menu__item list-menu__item--link"
  3929.                            >
  3930.                              Search
  3931.                            </a>
  3932.                          </li><li>
  3933.                            <a
  3934.                              href="/pages/terms-of-services"
  3935.                              class="link link--text list-menu__item list-menu__item--link"
  3936.                            >
  3937.                              Terms of services
  3938.                            </a>
  3939.                          </li><li>
  3940.                            <a
  3941.                              href="/pages/return-policy"
  3942.                              class="link link--text list-menu__item list-menu__item--link"
  3943.                            >
  3944.                              Return Policy
  3945.                            </a>
  3946.                          </li><li>
  3947.                            <a
  3948.                              href="/pages/privacy-policy"
  3949.                              class="link link--text list-menu__item list-menu__item--link"
  3950.                            >
  3951.                              Privacy Policy
  3952.                            </a>
  3953.                          </li><li>
  3954.                            <a
  3955.                              href="/pages/customer-service-polic"
  3956.                              class="link link--text list-menu__item list-menu__item--link"
  3957.                            >
  3958.                              Customer Service Policy
  3959.                            </a>
  3960.                          </li><li>
  3961.                            <a
  3962.                              href="/pages/about-us"
  3963.                              class="link link--text list-menu__item list-menu__item--link"
  3964.                            >
  3965.                              About Us
  3966.                            </a>
  3967.                          </li></ul></div><div
  3968.                class="footer-block grid__item"
  3969.                
  3970.                
  3971.              ><h2 class="footer-block__heading inline-richtext">Our store</h2><div class="footer-block__details-content rte">
  3972.                      <p><strong>MomDaughts UAE</strong> empowers your self-care journey with comfort, confidence, and holistic well-being at every step.</p>
  3973.                    </div></div><div
  3974.                class="footer-block grid__item"
  3975.                
  3976.                
  3977.              ><h2 class="footer-block__heading inline-richtext">Contact information</h2><div class="footer-block__details-content rte">
  3978.                      <p><strong>Email: </strong><a>services@momdaughts.com</a></p><p><strong>WhatsApp:</strong> +1 555 707 3608<br/><strong>Location:</strong> Office 702 B, Bilrashid Twin Tower, Damascus Road, Al Qusais Industrial Area 3, Dubai</p>
  3979.                    </div></div></div><div
  3980.          class="footer-block--newsletter"
  3981.          
  3982.        >
  3983.  
  3984. <ul class="list-unstyled list-social footer__list-social" role="list"><li class="list-social__item">
  3985.      <a href="https://www.facebook.com/momdaughts.ae" class="link list-social__link">
  3986.        <span class="svg-wrapper"><svg class="icon icon-facebook" viewBox="0 0 20 20"><path fill="currentColor" d="M18 10.049C18 5.603 14.419 2 10 2s-8 3.603-8 8.049C2 14.067 4.925 17.396 8.75 18v-5.624H6.719v-2.328h2.03V8.275c0-2.017 1.195-3.132 3.023-3.132.874 0 1.79.158 1.79.158v1.98h-1.009c-.994 0-1.303.621-1.303 1.258v1.51h2.219l-.355 2.326H11.25V18c3.825-.604 6.75-3.933 6.75-7.951"/></svg>
  3987. </span>
  3988.        <span class="visually-hidden">Facebook</span>
  3989.      </a>
  3990.    </li><li class="list-social__item">
  3991.      <a href="https://www.instagram.com/momdaughts.ae" class="link list-social__link">
  3992.        <span class="svg-wrapper"><svg class="icon icon-instagram" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M13.23 3.492c-.84-.037-1.096-.046-3.23-.046-2.144 0-2.39.01-3.238.055-.776.027-1.195.164-1.487.273a2.4 2.4 0 0 0-.912.593 2.5 2.5 0 0 0-.602.922c-.11.282-.238.702-.274 1.486-.046.84-.046 1.095-.046 3.23s.01 2.39.046 3.229c.004.51.097 1.016.274 1.495.145.365.319.639.602.913.282.282.538.456.92.602.474.176.974.268 1.479.273.848.046 1.103.046 3.238.046s2.39-.01 3.23-.046c.784-.036 1.203-.164 1.486-.273.374-.146.648-.329.921-.602.283-.283.447-.548.602-.922.177-.476.27-.979.274-1.486.037-.84.046-1.095.046-3.23s-.01-2.39-.055-3.229c-.027-.784-.164-1.204-.274-1.495a2.4 2.4 0 0 0-.593-.913 2.6 2.6 0 0 0-.92-.602c-.284-.11-.703-.237-1.488-.273ZM6.697 2.05c.857-.036 1.131-.045 3.302-.045a63 63 0 0 1 3.302.045c.664.014 1.321.14 1.943.374a4 4 0 0 1 1.414.922c.41.397.728.88.93 1.414.23.622.354 1.279.365 1.942C18 7.56 18 7.824 18 10.005c0 2.17-.01 2.444-.046 3.292-.036.858-.173 1.442-.374 1.943-.2.53-.474.976-.92 1.423a3.9 3.9 0 0 1-1.415.922c-.51.191-1.095.337-1.943.374-.857.036-1.122.045-3.302.045-2.171 0-2.445-.009-3.302-.055-.849-.027-1.432-.164-1.943-.364a4.15 4.15 0 0 1-1.414-.922 4.1 4.1 0 0 1-.93-1.423c-.183-.51-.329-1.085-.365-1.943C2.009 12.45 2 12.167 2 10.004c0-2.161 0-2.435.055-3.302.027-.848.164-1.432.365-1.942a4.4 4.4 0 0 1 .92-1.414 4.2 4.2 0 0 1 1.415-.93c.51-.183 1.094-.33 1.943-.366Zm.427 4.806a4.105 4.105 0 1 1 5.805 5.805 4.105 4.105 0 0 1-5.805-5.805m1.882 5.371a2.668 2.668 0 1 0 2.042-4.93 2.668 2.668 0 0 0-2.042 4.93m5.922-5.942a.958.958 0 1 1-1.355-1.355.958.958 0 0 1 1.355 1.355" clip-rule="evenodd"/></svg>
  3993. </span>
  3994.        <span class="visually-hidden">Instagram</span>
  3995.      </a>
  3996.    </li><li class="list-social__item">
  3997.      <a href="https://twitter.com/momdaughts" class="link list-social__link">
  3998.        <span class="svg-wrapper"><svg class="icon icon-twitter" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M7.273 2.8 10.8 7.822 15.218 2.8h1.768l-5.4 6.139 5.799 8.254h-4.658l-3.73-5.31-4.671 5.31H2.558l5.654-6.427L2.615 2.8zm6.242 13.125L5.07 4.109h1.405l8.446 11.816z" clip-rule="evenodd"/></svg>
  3999. </span>
  4000.        <span class="visually-hidden">X (Twitter)</span>
  4001.      </a>
  4002.    </li></ul>
  4003. </div>
  4004.      </div><div
  4005.    class="footer__content-bottom"
  4006.    
  4007.  >
  4008.    <div class="footer__content-bottom-wrapper page-width">
  4009.      <div class="footer__column footer__localization isolate"></div>
  4010.      <div class="footer__column footer__column--info"></div>
  4011.    </div>
  4012.    <div class="footer__content-bottom-wrapper page-width footer__content-bottom-wrapper--center">
  4013.      <div class="footer__copyright caption">
  4014.        <small class="copyright__content"
  4015.          >&copy; 2025, <a href="/" title="">MomDaughts UAE</a></small>
  4016.        <small class="copyright__content"><a target="_blank" rel="nofollow" href="https://www.shopify.com?utm_campaign=poweredby&amp;utm_medium=shopify&amp;utm_source=onlinestore">Powered by Shopify</a></small></div>
  4017.    </div>
  4018.  </div>
  4019. </footer>
  4020.  
  4021.  
  4022. </div>
  4023. <!-- END sections: footer-group -->
  4024.  
  4025.    <ul hidden>
  4026.      <li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
  4027.      <li id="a11y-new-window-message">Opens in a new window.</li>
  4028.    </ul>
  4029.  
  4030.    <script>
  4031.      window.shopUrl = 'https://momdaughts.ae';
  4032.      window.routes = {
  4033.        cart_add_url: '/cart/add',
  4034.        cart_change_url: '/cart/change',
  4035.        cart_update_url: '/cart/update',
  4036.        cart_url: '/cart',
  4037.        predictive_search_url: '/search/suggest',
  4038.      };
  4039.  
  4040.      window.cartStrings = {
  4041.        error: `There was an error while updating your cart. Please try again.`,
  4042.        quantityError: `You can only add [quantity] of this item to your cart.`,
  4043.      };
  4044.  
  4045.      window.variantStrings = {
  4046.        addToCart: `Add to cart`,
  4047.        soldOut: `Sold out`,
  4048.        unavailable: `Unavailable`,
  4049.        unavailable_with_option: `[value] - Unavailable`,
  4050.      };
  4051.  
  4052.      window.quickOrderListStrings = {
  4053.        itemsAdded: `[quantity] items added`,
  4054.        itemAdded: `[quantity] item added`,
  4055.        itemsRemoved: `[quantity] items removed`,
  4056.        itemRemoved: `[quantity] item removed`,
  4057.        viewCart: `View cart`,
  4058.        each: `[money]/ea`,
  4059.        min_error: `This item has a minimum of [min]`,
  4060.        max_error: `This item has a maximum of [max]`,
  4061.        step_error: `You can only add this item in increments of [step]`,
  4062.      };
  4063.  
  4064.      window.accessibilityStrings = {
  4065.        imageAvailable: `Image [index] is now available in gallery view`,
  4066.        shareSuccess: `Link copied to clipboard`,
  4067.        pauseSlideshow: `Pause slideshow`,
  4068.        playSlideshow: `Play slideshow`,
  4069.        recipientFormExpanded: `Gift card recipient form expanded`,
  4070.        recipientFormCollapsed: `Gift card recipient form collapsed`,
  4071.        countrySelectorSearchCount: `[count] countries/regions found`,
  4072.      };
  4073.    </script><script src="//momdaughts.ae/cdn/shop/t/4/assets/predictive-search.js?v=57209189334897115771736691107" defer="defer"></script><!-- BEAE-FOOTER -->
  4074.  
  4075.  
  4076. <!-- START BEAE POPUP BUILDER -->
  4077. <!-- END BEAE POPUP BUILDER -->
  4078. <!-- END BEAE-FOOTER -->
  4079. <!-- BEAE-ANALYTICS --><!-- This snippet render by Beae - Landing page builder to use function of Google Analytic 4 -->
  4080. <!-- To use this function, go to settings in app and enable analytic [link docs] -->
  4081.  
  4082.  
  4083.  <script>
  4084.    window.addEventListener('load', () => {
  4085.      // fallback for gtag when not initialized
  4086.      if (typeof window.gtag !== 'function') {
  4087.        window.gtag = (str1, str2, obj) => {
  4088.        }
  4089.      }
  4090.    })
  4091.  </script>
  4092.  
  4093.  <!-- End snippet of Google Analytic 4 --><!-- END BEAE-ANALYTICS -->  
  4094.  
  4095.  <!-- Failed to render app block "15599951759576395258": app block path "shopify://apps/mida-replay-heatmaps/blocks/mida_recorder/e4c350c5-eabf-426d-8014-47ef50412bd0" does not exist --><div id="shopify-block-AeGVhTnZTZ3g4c0xJR__643381569867433295" class="shopify-block shopify-app-block"><script>
  4096.  var collectionProducts = [];
  4097.  var cartItems = [];
  4098.  var cartPrice = 0;
  4099.  var tikTokCart = [];
  4100.  var productId = "";
  4101.  var productTitle = "";
  4102.  var productType = "";
  4103.  var value = "";
  4104.  var productMainId = "";
  4105. </script>
  4106.  
  4107.  
  4108.  
  4109.  <script>
  4110.    var infinitefbtiktokMetafield = {"0":[],"1":[],"2":{"id":28613,"name":"nxncvn-hf.myshopify.com","email":"shop@nxncvn-hf.myshopify.com","email_verified_at":null,"domain":"momdaughts.ae","country":"AE","currency":"AED","language":"en","store_name":"MomDaughts UAE","store_email":"nakson.pk@gmail.com","store_phone":"03173855499","country_name":"United Arab Emirates","note":null,"plan_display_name":"Basic","created_at":"2025-03-07T10:12:33.000000Z","updated_at":"2025-03-13T07:12:29.000000Z","shopify_grandfathered":0,"shopify_namespace":null,"shopify_freemium":0,"plan_id":2,"customBill":0,"FbTrigger":0,"GA4Trigger":0,"purchaseNumber":1,"tikTokPurchaseNumber":18,"snapchatPurchaseNumber":1,"OnBoard":0,"pixelInfo":0,"GDPRComplice":"no","deleted_at":null,"metaField_id":"30883893444686","password_updated_at":"2025-03-07","theme_support_level":1,"EmailSend":null},"3":[],"4":[],"fbPixel":false,"tiktokPixel":false,"snapPixel":false,"pintPixel":false};
  4111.    if(infinitefbtiktokMetafield){
  4112.      if (!sessionStorage.getItem('infiniteFbBrowserPixel') ) {
  4113.        sessionStorage.setItem('fbPixel', infinitefbtiktokMetafield.fbPixel == true ? "Yes" : "No");
  4114.        sessionStorage.setItem('tiktokPixel', infinitefbtiktokMetafield.tiktokPixel == true ? "Yes" : "No");
  4115.        sessionStorage.setItem('snapPixel', infinitefbtiktokMetafield.snapPixel == true ? "Yes" : "No");
  4116.        sessionStorage.setItem('pintPixel', infinitefbtiktokMetafield.pintPixel == true ? "Yes" : "No");
  4117.        sessionStorage.setItem('tweetPixel', infinitefbtiktokMetafield.tweetPixel == true ? "Yes" : "No");
  4118.        sessionStorage.setItem('infiniteFbBrowserPixel', JSON.stringify([infinitefbtiktokMetafield[0], infinitefbtiktokMetafield[1], infinitefbtiktokMetafield[2], infinitefbtiktokMetafield[3], infinitefbtiktokMetafield[4], infinitefbtiktokMetafield[5]]));
  4119.      }
  4120.    }
  4121.  </script>
  4122.  
  4123.  
  4124.  
  4125.  
  4126. <script>
  4127.  
  4128. </script>
  4129.  
  4130. <script>
  4131.  
  4132.  // if(sessionStorage.getItem('addToCartValue')){
  4133.  //   value = sessionStorage.getItem('addToCartValue');
  4134.  // }
  4135.  // if(sessionStorage.getItem('addToCartMainId')){
  4136.  //   productMainId = sessionStorage.getItem('addToCartMainId');
  4137.  // }
  4138.  // if(sessionStorage.getItem('addToCartId')){
  4139.  //   productId = sessionStorage.getItem('addToCartId');
  4140.  // }
  4141.  // if(sessionStorage.getItem('addToCartTitle')){
  4142.  //   productTitle = sessionStorage.getItem('addToCartTitle');
  4143.  // }
  4144.  // if(sessionStorage.getItem('addToCartType')){
  4145.  //   productType = sessionStorage.getItem('addToCartType')
  4146.  // }
  4147. </script>
  4148.  
  4149.  
  4150. </div><div id="shopify-block-Aam1JWnJKckJGTVU1M__9680287006772215557" class="shopify-block shopify-app-block"><!--  sb-local-seo.liquid  -->
  4151.  
  4152.  
  4153.  
  4154.  
  4155.  
  4156.  
  4157.  
  4158. <div class="sb-local-snipp"  id="sb-google-review-preview-1" onmouseover="showSBGoogleBig()"
  4159.     class="google-review-preview " style="
  4160. display: none;
  4161.        z-index: 5997;
  4162.        line-height: 1.5em,
  4163.  
  4164.         position: fixed; right: 40px; bottom: 2px; background: white; padding: 0px 20px; border-top-right-radius: 10px; border-top-left-radius: 10px
  4165. ">
  4166.    <svg class="sb-svg-close" onclick="closeSb()" width="3" height="3" viewBox="0 0 3 3" fill="none"
  4167.         xmlns="http://www.w3.org/2000/svg">
  4168.        <path d="M1.9065 1.4473L2.96341 0.385135C3.0122 0.336486 3.0122 0.263514 2.96341 0.214865L2.80081 0.0445946C2.75203 -0.00405402 2.67886 -0.00405402 2.63008 0.0445946L1.56504 1.10676C1.53252 1.13919 1.48374 1.13919 1.45122 1.10676L0.386179 0.0364865C0.337398 -0.0121622 0.264228 -0.0121622 0.215447 0.0364865L0.0447155 0.206757C-0.00406501 0.255405 -0.00406501 0.328378 0.0447155 0.377027L1.10976 1.43919C1.14228 1.47162 1.14228 1.52027 1.10976 1.5527L0.0365854 2.62297C-0.0121951 2.67162 -0.0121951 2.74459 0.0365854 2.79324L0.207317 2.96351C0.256098 3.01216 0.329268 3.01216 0.378049 2.96351L1.44309 1.90135C1.47561 1.86892 1.52439 1.86892 1.55691 1.90135L2.62195 2.96351C2.67073 3.01216 2.7439 3.01216 2.79268 2.96351L2.96341 2.79324C3.0122 2.74459 3.0122 2.67162 2.96341 2.62297L1.9065 1.56081C1.87398 1.52838 1.87398 1.47973 1.9065 1.4473Z"
  4169.              fill="#C3C9D4"></path>
  4170.    </svg>
  4171.    <div class="ant-space ant-space-horizontal ant-space-align-center"
  4172.         style="display: none">
  4173.        <div class="ant-space-item" style="margin-right: 5px; margin-bottom: -10px;">
  4174.            <svg class="sb-svg-g" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="18px" height="18px">
  4175.                <path fill="#FFC107"
  4176.                      d="M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12c0-6.627,5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24c0,11.045,8.955,20,20,20c11.045,0,20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z"></path>
  4177.                <path fill="#FF3D00"
  4178.                      d="M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z"></path>
  4179.                <path fill="#4CAF50"
  4180.                      d="M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z"></path>
  4181.                <path fill="#1976D2"
  4182.                      d="M43.611,20.083H42V20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z"></path>
  4183.            </svg>
  4184.        </div>
  4185.        <div class="ant-space-item" style="margin-right: 5px;">
  4186.            <div class="sb-value-rating-point"></div>
  4187.        </div>
  4188.        <div class="ant-space-item">
  4189.            <svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"
  4190.                 class="sb-rating-star-svg">
  4191.                <g clip-path="url(#clip0_3794_742)">
  4192.                    <path d="M3.3015 0.175781C3.24629 0.0683594 3.12962 0 3.0015 0C2.87337 0 2.75775 0.0683594 2.7015 0.175781L2.03171 1.46777L0.535874 1.6748C0.410874 1.69238 0.306708 1.77441 0.268166 1.88672C0.229624 1.99902 0.260874 2.12305 0.350458 2.20605L1.43587 3.21289L1.17962 4.63574C1.15879 4.75293 1.21087 4.87207 1.314 4.94141C1.41712 5.01074 1.55358 5.01953 1.66608 4.96387L3.00254 4.29492L4.339 4.96387C4.4515 5.01953 4.58796 5.01172 4.69108 4.94141C4.79421 4.87109 4.84629 4.75293 4.82546 4.63574L4.56817 3.21289L5.65358 2.20605C5.74317 2.12305 5.77546 1.99902 5.73587 1.88672C5.69629 1.77441 5.59317 1.69238 5.46817 1.6748L3.97129 1.46777L3.3015 0.175781Z"
  4193.                          fill="#FFB721"></path>
  4194.                </g>
  4195.                <defs>
  4196.                    <clipPath id="clip0_3794_742">
  4197.                        <rect width="6" height="5" fill="white"></rect>
  4198.                    </clipPath>
  4199.                </defs>
  4200.            </svg>
  4201.        </div>
  4202.    </div>
  4203.    <div class="rating-sb-snp "
  4204.         style="margin-bottom: -5px; display: block">
  4205.        <input type="radio" id="star5" name="rating" value="5"/>
  4206.        <label class="full" for="star5" title="Awesome - 5 stars" style="color: #FFD700"></label>
  4207.        <!--     <input type="radio" id="star4half" name="rating" value="4 and a half" /><label class="half" for="star4half" title="Pretty good - 4.5 stars"></label> -->
  4208.        <input type="radio" id="star4" name="rating" value="4"/>
  4209.        <label class="full" for="star4" title="Pretty good - 4 stars" style="color: #FFD700"></label>
  4210.        <!--     <input type="radio" id="star3half" name="rating" value="3 and a half"  /><label class="half" for="star3half" title="Meh - 3.5 stars"></label> -->
  4211.        <input type="radio" id="star3" name="rating" value="3"/>
  4212.        <label class="full" for="star3" title="Meh - 3 stars" style="color: #FFD700"></label>
  4213.        <!--     <input type="radio" id="star2half" name="rating" value="2 and a half" /><label class="half" for="star2half" title="Kinda bad - 2.5 stars"></label> -->
  4214.        <input type="radio" id="star2" name="rating" value="2"/>
  4215.        <label class="full" for="star2" title="Kinda bad - 2 stars" style="color: #FFD700"></label>
  4216.        <!--     <input type="radio" id="star1half" name="rating" value="1 and a half" /><label class="half" for="star1half" title="Meh - 1.5 stars"></label> -->
  4217.        <input type="radio" id="star1" name="rating" value="1"/>
  4218.        <label class="full" for="star1" title="Sucks big time - 1 star" style="color: #FFD700"></label>
  4219.        <!--     <input type="radio" id="starhalf" name="rating" value="half" /><label class="half" for="starhalf" title="Sucks big time - 0.5 stars"></label> -->
  4220.    </div>
  4221.    <div class="sb-value-rating-count"> reviews</div>
  4222. </div>
  4223. <div class="sb-local-snipp"  onmouseleave="showSBGoogleSmall()" id="sb-google-review-preview-2"
  4224.     class="google-review-preview " style="
  4225.        display: none;
  4226.        z-index: 59977;
  4227.  
  4228.         position: fixed; right: 40px; bottom: 2px; background: white; padding: 0px 20px; border-top-right-radius: 10px; border-top-left-radius: 10px
  4229. " slide-in-from="bottom">
  4230.    <svg class="sb-svg-close" onclick="closeSb()" width="3" height="3" viewBox="0 0 3 3" fill="none"
  4231.         xmlns="http://www.w3.org/2000/svg">
  4232.        <path d="M1.9065 1.4473L2.96341 0.385135C3.0122 0.336486 3.0122 0.263514 2.96341 0.214865L2.80081 0.0445946C2.75203 -0.00405402 2.67886 -0.00405402 2.63008 0.0445946L1.56504 1.10676C1.53252 1.13919 1.48374 1.13919 1.45122 1.10676L0.386179 0.0364865C0.337398 -0.0121622 0.264228 -0.0121622 0.215447 0.0364865L0.0447155 0.206757C-0.00406501 0.255405 -0.00406501 0.328378 0.0447155 0.377027L1.10976 1.43919C1.14228 1.47162 1.14228 1.52027 1.10976 1.5527L0.0365854 2.62297C-0.0121951 2.67162 -0.0121951 2.74459 0.0365854 2.79324L0.207317 2.96351C0.256098 3.01216 0.329268 3.01216 0.378049 2.96351L1.44309 1.90135C1.47561 1.86892 1.52439 1.86892 1.55691 1.90135L2.62195 2.96351C2.67073 3.01216 2.7439 3.01216 2.79268 2.96351L2.96341 2.79324C3.0122 2.74459 3.0122 2.67162 2.96341 2.62297L1.9065 1.56081C1.87398 1.52838 1.87398 1.47973 1.9065 1.4473Z"
  4233.              fill="#C3C9D4"></path>
  4234.    </svg>
  4235.    <a class="sb-to-plan sb-value-rating-see-all"
  4236.       href="https://search.google.com/local/reviews?placeid=" target="_blank">See all
  4237.        reviews</a>
  4238.    <div class="ant-space ant-space-horizontal ant-space-align-center">
  4239.        <div class="ant-space-item" style="margin-right: 5px; margin-bottom: -10px;">
  4240.            <svg class="sb-svg-g" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="18px" height="18px">
  4241.                <path fill="#FFC107"
  4242.                      d="M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12c0-6.627,5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24c0,11.045,8.955,20,20,20c11.045,0,20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z"></path>
  4243.                <path fill="#FF3D00"
  4244.                      d="M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z"></path>
  4245.                <path fill="#4CAF50"
  4246.                      d="M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z"></path>
  4247.                <path fill="#1976D2"
  4248.                      d="M43.611,20.083H42V20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z"></path>
  4249.            </svg>
  4250.        </div>
  4251.        <div class="ant-space-item"
  4252.             style="margin-right: 5px; display: none">
  4253.            <div class="sb-value-rating-point"></div>
  4254.        </div>
  4255.        <div class="ant-space-item"
  4256.             style="margin-right: 5px; display: none">
  4257.            <svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"
  4258.                 class="sb-rating-star-svg">
  4259.                <g clip-path="url(#clip0_3794_742)">
  4260.                    <path d="M3.3015 0.175781C3.24629 0.0683594 3.12962 0 3.0015 0C2.87337 0 2.75775 0.0683594 2.7015 0.175781L2.03171 1.46777L0.535874 1.6748C0.410874 1.69238 0.306708 1.77441 0.268166 1.88672C0.229624 1.99902 0.260874 2.12305 0.350458 2.20605L1.43587 3.21289L1.17962 4.63574C1.15879 4.75293 1.21087 4.87207 1.314 4.94141C1.41712 5.01074 1.55358 5.01953 1.66608 4.96387L3.00254 4.29492L4.339 4.96387C4.4515 5.01953 4.58796 5.01172 4.69108 4.94141C4.79421 4.87109 4.84629 4.75293 4.82546 4.63574L4.56817 3.21289L5.65358 2.20605C5.74317 2.12305 5.77546 1.99902 5.73587 1.88672C5.69629 1.77441 5.59317 1.69238 5.46817 1.6748L3.97129 1.46777L3.3015 0.175781Z"
  4261.                          fill="#FFB721"></path>
  4262.                </g>
  4263.                <defs>
  4264.                    <clipPath id="clip0_3794_742">
  4265.                        <rect width="6" height="5" fill="white"></rect>
  4266.                    </clipPath>
  4267.                </defs>
  4268.            </svg>
  4269.        </div>
  4270.        
  4271.    </div>
  4272.  
  4273.  
  4274.    <div class="scroll-sb"
  4275.         style="max-height: 120px; overflow: hidden scroll; padding-bottom: 5px !important;">  </div>
  4276. </div>
  4277. <div>
  4278.    <script>
  4279.        var isCloseSb = 0;
  4280.    </script>
  4281. </div>
  4282.  
  4283.  
  4284. </div></body>
  4285. </html>
  4286.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda