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":"04488258-cef0-44b5-bb7f-795b6373890f-1741753727","pageurl":"momdaughts.ae\/","u":"fe8f88b37396","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/ecomposer-landing-page-builder/blocks/app-embed/a0fc26e1-7741-4773-8b27-39389b4fb4a0 --><link rel="preconnect" href="https://cdn.ecomposer.app" crossorigin />
  738. <link rel="dns-prefetch" href="https://cdn.ecomposer.app" />
  739. <link rel="preload" href="https://cdn.ecomposer.app/vendors/css/ecom-base.css?v=4.0" as="style" />
  740. <link rel="preload" href="https://cdn.ecomposer.app/vendors/css/ecom-swiper@11.css" as="style" />
  741. <link rel="preload" href="https://cdn.ecomposer.app/vendors/js/ecom-swiper@11.0.5.js" as="script" />
  742. <link rel="preload" href="https://cdn.ecomposer.app/vendors/js/ecom_modal.js" as="script" />
  743.    <!--ECOM-EMBED-->
  744.        <style id="ecom-global-css" class="ecom-global-css">
  745.            /**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;}
  746.        </style>
  747.    <!--/ECOM-EMBED-->
  748.  
  749.  
  750.      <style id="ecom-custom-css">
  751.        
  752.      </style>
  753.  
  754.    <script id="ecom-custom-js" async="async">
  755.        
  756.    </script><style type="text/css" class="ecom-theme-helper">
  757.    .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}}
  758. </style>
  759. <script type="text/javascript" id="ecom-theme-helpers" async="async">
  760.    window.EComposer = window.EComposer || {};
  761.    (function(){
  762.        if(!this.configs) this.configs = {};this.configs = {"custom_code":{"custom_css":"","custom_js":""},"instagram":null};this.configs.ajax_cart = {
  763.            enable: false
  764.          };
  765.        
  766.      
  767.       this.customer = false;
  768.      
  769.        this.proxy_path = '/apps/ecomposer-visual-page-builder';
  770.        this.routes = {
  771.            domain: 'https://momdaughts.ae',
  772.            root_url: '/',
  773.            collections_url: '/collections',
  774.            all_products_collection_url: '/collections/all',
  775.            cart_url:'/cart',
  776.            cart_add_url:'/cart/add',
  777.            cart_change_url:'/cart/change',
  778.            cart_clear_url: '/cart/clear',
  779.            cart_update_url: '/cart/update',
  780.            product_recommendations_url: '/recommendations/products'
  781.        };
  782.        this.queryParams = {};
  783.        if (window.location.search.length) {
  784.            new URLSearchParams(window.location.search).forEach((value,key)=>{
  785.                this.queryParams[key] = value;
  786.            })
  787.        }
  788.        this.money_format = "AED. {{amount}}",
  789.        this.money_with_currency_format = "Dhs. {{amount}} AED",
  790.        this.currencyCodeEnabled = false,
  791.        
  792.        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)};
  793.  
  794.        const urlParams = new URLSearchParams(window.location.search);
  795.        if (urlParams.has('ecom-redirect')) {
  796.            const redirectUrl = decodeURIComponent(urlParams.get('ecom-redirect'));
  797.            window.location.href = redirectUrl;
  798.        }
  799.    }).bind(window.EComposer)();
  800.    if(window.Shopify && window.Shopify.designMode && window.top && window.top.opener){
  801.        window.addEventListener("load", function(){
  802.            window.top.opener.postMessage({
  803.                action: "ecomposer:loaded",
  804.            }, "*");
  805.        });
  806.    }
  807. </script>
  808. <script type="text/javascript" id="ecom-theme-quickview" async="async">
  809.    window.EComposer = window.EComposer || {};
  810.      (function() {
  811.        this.initQuickview = function() {
  812.            var enable_qv = false;
  813.              
  814.            const qv_wrapper_script = document.querySelector('#ecom-quickview-template-html');
  815.            if(!qv_wrapper_script) return;
  816.            const ecom_quickview = document.createElement('div');
  817.            ecom_quickview.classList.add('ecom-quickview');
  818.            ecom_quickview.innerHTML = qv_wrapper_script.innerHTML
  819.            document.body.prepend(ecom_quickview);
  820.            const qv_wrapper = ecom_quickview.querySelector('.ecom-quickview__wrapper');
  821.            
  822.            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){})}}
  823.            if(window.location.search.includes('ecom_template_id'))
  824.            {
  825.                setTimeout(quickViewHandler,1000)
  826.            }
  827.            if(enable_qv) {
  828.              const qv_buttons = document.querySelectorAll('.ecom-product-quickview');
  829.              if(qv_buttons.length > 0) {
  830.                qv_buttons.forEach(function(button, index) {
  831.                    button.addEventListener('click', quickViewHandler)
  832.                })
  833.              }
  834.            }
  835.        }
  836.    }).bind(window.EComposer)();
  837. </script>
  838. <script type="text/template" id="ecom-quickview-template-html">
  839.    <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>
  840. </script>
  841. <style type="text/css" class="ecom-theme-quickview">
  842. .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}
  843. </style>
  844. <script type="text/template" id="ecom-template-html">
  845.    <!-- 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>
  846. <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>
  847. </div><div id="ecom-toast-desc"></div></div><!-- END app snippet -->
  848. </script>
  849. <!-- END app block --><!-- BEGIN app block: shopify://apps/rt-whatsapp-chat-live-chat/blocks/app-embed/9baee9b7-6929-47af-9935-05bcdc376396 --><script>
  850.  window.roarJs = window.roarJs || {};
  851.  roarJs.WhatsAppConfig = {
  852.    metafields: {
  853.      shop: "nxncvn-hf.myshopify.com",
  854.      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"},
  855.      moneyFormat: "AED. {{amount}}"
  856.    }
  857.  }
  858. </script>
  859.  
  860.  
  861. <!-- END app block --><!-- BEGIN app block: shopify://apps/mida-replay-heatmaps/blocks/mida_recorder/e4c350c5-eabf-426d-8014-47ef50412bd0 -->
  862.    <script>
  863.        window.msrPageTitle = "MomDaughts UAE – Shop Menstrual Cups, Breast Pumps &amp; Self-Care";
  864.        
  865.            window.msrQuota = "{&quot;version&quot;:&quot;session&quot;,&quot;date&quot;:&quot;2025-03-07T18:42:19.319Z&quot;}";
  866.            window.sessionStorage.setItem("msrQuota", "{&quot;version&quot;:&quot;session&quot;,&quot;date&quot;:&quot;2025-03-07T18:42:19.319Z&quot;}")
  867.        
  868.        window.msrCart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"AED","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  869.        window.msrCustomer = {
  870.            email: "",
  871.            id: "",
  872.        }
  873.    </script>
  874.    <script src='https://cdn.shopify.com/extensions/21dd2ed3-45e3-4914-a0af-d5f44b2894a6/version_57268162-2025-03-11_10h04m/assets/init.msr.js' defer='defer'></script>
  875.    
  876.    
  877.        <script src='https://cdn.shopify.com/extensions/21dd2ed3-45e3-4914-a0af-d5f44b2894a6/version_57268162-2025-03-11_10h04m/assets/recorder.msr.js' defer='defer'></script>
  878.    
  879.    
  880.  
  881.    
  882.  
  883.    
  884.  
  885.  
  886.    
  887.  
  888. <!-- END app block --><!-- 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 -->
  889.  
  890.  
  891.  
  892. <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!">
  893. <!-- END SearchPie meta tags X --><!-- END app snippet --><!-- BEGIN app snippet: amp -->    
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.    
  912.  
  913. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Instant-Page --><script>
  914.    var timeout = 2000;
  915.    (function (w, d, s) {
  916.        function asyncLoad_isp() {
  917.            setTimeout(function () {
  918.                var head = document.head;
  919.                var r = document.createElement('script');
  920.                r.type = "module";
  921.                r.integrity = "sha384-MWfCL6g1OTGsbSwfuMHc8+8J2u71/LA8dzlIN3ycajckxuZZmF+DNjdm7O6H3PSq";
  922.                r.src = "//instant.page/5.1.1";
  923.                r.defer = true;
  924.                head.appendChild(r);
  925.            }, timeout);
  926.        };
  927.        document.addEventListener('DOMContentLoaded', function (event) {
  928.            asyncLoad_isp();
  929.        });
  930.    })(window, document, 'script');
  931. </script>
  932. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Store --><!-- seo-booster-json-ld-store -->
  933.  
  934. <!-- seo-booster-website -->
  935. <script type="application/ld+json">
  936. {
  937.   "@context": "http://schema.org",
  938.   "@type": "WebSite",
  939.  
  940.   "name" : "MomDaughts UAE",
  941.  
  942.   "url": "https://momdaughts.ae/",
  943.   "potentialAction": {
  944.     "@type": "SearchAction",
  945.     "target": {
  946.        "@type": "EntryPoint",
  947.        "urlTemplate": "https://momdaughts.ae/search?q={search_term_string}"
  948.      },
  949.     "query-input": "required name=search_term_string"
  950.   }
  951. }
  952.  
  953.  
  954.  
  955. </script>
  956. <!-- end-seo-booster-website -->
  957.  
  958. <!-- seo-booster-organization -->
  959. <script type="application/ld+json">
  960. {
  961. "@context": "http://schema.org",
  962. "@type": "Organization",
  963.    
  964.    "name" : "MomDaughts UAE",
  965.    
  966. "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": {
  967.      "@type": "PostalAddress",
  968.      "streetAddress": "House # 206, Norani Maholla Block-A, Unit No.10",
  969.      "addressLocality": "Hyderabad",
  970.      "addressCountry":  "AE",
  971.      "addressRegion": "Dubai",
  972.      "postalCode": ""
  973.    }
  974. , "sameAs" : [
  975.  
  976. "https://momdaughts.ae",
  977.    
  978. "https://instagram.com/momdaughts.ae",
  979.    
  980. "https://twitter.com/momdaughts",
  981.    
  982. "https://facebook.com/momdaughts.ae"
  983.    
  984. ]}
  985.  
  986. </script>
  987.  
  988. <!-- End - seo-booster-json-ld-store -->
  989. <!-- END app snippet --><!-- BEGIN app snippet: Secomapp-Breadcrumb --><!-- seo-booster-json-ld-Breadcrumb -->
  990. <script type="application/ld+json">
  991.    {
  992.        "@context": "http://schema.org",
  993.        "@type": "BreadcrumbList",
  994.        "itemListElement": [{
  995.            "@type": "ListItem",
  996.            "position": "1",
  997.            "item": {
  998.                "@type": "Website",
  999.                "@id": "https://momdaughts.ae",
  1000.                "name": "MomDaughts UAE"
  1001.            }
  1002.        }]
  1003.  
  1004. }
  1005.  
  1006. </script>
  1007. <!-- END app snippet -->
  1008.  
  1009.  
  1010.  <meta name="google-site-verification" content="h0V0ITexHplMKY8PBmo_v5U1Qq861KwERCNL41eQ4fg">
  1011.  
  1012.  
  1013. <!-- BEGIN app snippet: sb-detect-broken-link --><script></script><!-- END app snippet -->
  1014. <!-- BEGIN app snippet: internal-link --><script>
  1015. </script><!-- END app snippet -->
  1016. <!-- BEGIN app snippet: social-tags --><!-- SearchPie Social Tags -->
  1017.  
  1018.  
  1019. <!-- END SearchPie Social Tags --><!-- END app snippet -->
  1020. <!-- BEGIN app snippet: sb-nx -->
  1021.  
  1022. <!-- END app snippet -->
  1023. <!-- END SearchPie snippets -->
  1024.  
  1025. <!-- END app block --><!-- BEGIN app block: shopify://apps/judge-me-reviews/blocks/judgeme_core/61ccd3b1-a9f2-4160-9fe9-4fec8413e5d8 --><!-- Start of Judge.me Core -->
  1026.  
  1027.  
  1028.  
  1029.  
  1030.    
  1031.    
  1032.  
  1033.  
  1034.    
  1035.    
  1036.    
  1037.      
  1038.    
  1039.      
  1040.    
  1041.      
  1042.    
  1043.      
  1044.    
  1045.      
  1046.    
  1047.  
  1048.  
  1049.  
  1050. <link rel="dns-prefetch" href="https://cdn.judge.me">
  1051.  
  1052. <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 )}
  1053. </style> <style class='jdgm-settings-style'></style>
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  <style class='jdgm-miracle-styles'>
  1059.  @-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}
  1060.  
  1061. </style>
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069. <script data-cfasync='false' class='jdgm-script'>
  1070. !function(e){window.jdgm=window.jdgm||{},jdgm.CDN_HOST="https://cdn.judge.me/",
  1071. jdgm.docReady=function(d){(e.attachEvent?"complete"===e.readyState:"loading"!==e.readyState)?
  1072. setTimeout(d,0):e.addEventListener("DOMContentLoaded",d)},jdgm.loadCSS=function(d,t,o,a){
  1073. !o&&jdgm.loadCSS.requestedUrls.indexOf(d)>=0||(jdgm.loadCSS.requestedUrls.push(d),
  1074. (a=e.createElement("link")).rel="stylesheet",a.class="jdgm-stylesheet",a.media="nope!",
  1075. a.href=d,a.onload=function(){this.media="all",t&&setTimeout(t)},e.body.appendChild(a))},
  1076. jdgm.loadCSS.requestedUrls=[],jdgm.loadJS=function(e,d){var t=new XMLHttpRequest;
  1077. t.onreadystatechange=function(){4===t.readyState&&(Function(t.response)(),d&&d(t.response))},
  1078. t.open("GET",e),t.send()},jdgm.docReady((function(){(window.jdgmLoadCSS||e.querySelectorAll(
  1079. ".jdgm-widget, .jdgm-all-reviews-page").length>0)&&(jdgmSettings.widget_load_with_code_splitting?
  1080. parseFloat(jdgmSettings.widget_version)>=3?jdgm.loadCSS(jdgm.CDN_HOST+"widget_v3/base.css"):
  1081. jdgm.loadCSS(jdgm.CDN_HOST+"widget/base.css"):jdgm.loadCSS(jdgm.CDN_HOST+"shopify_v2.css"),
  1082. jdgm.loadJS(jdgm.CDN_HOST+"loader.js"))}))}(document);
  1083. </script>
  1084. <noscript><link rel="stylesheet" type="text/css" media="all" href="https://cdn.judge.me/shopify_v2.css"></noscript>
  1085.  
  1086. <!-- BEGIN app snippet: theme_fix_tags --><script>
  1087.  (function() {
  1088.    var jdgmThemeFixes = null;
  1089.    if (!jdgmThemeFixes) return;
  1090.    var thisThemeFix = jdgmThemeFixes[Shopify.theme.id];
  1091.    if (!thisThemeFix) return;
  1092.  
  1093.    if (thisThemeFix.html) {
  1094.      document.addEventListener("DOMContentLoaded", function() {
  1095.        var htmlDiv = document.createElement('div');
  1096.        htmlDiv.classList.add('jdgm-theme-fix-html');
  1097.        htmlDiv.innerHTML = thisThemeFix.html;
  1098.        document.body.append(htmlDiv);
  1099.      });
  1100.    };
  1101.  
  1102.    if (thisThemeFix.css) {
  1103.      var styleTag = document.createElement('style');
  1104.      styleTag.classList.add('jdgm-theme-fix-style');
  1105.      styleTag.innerHTML = thisThemeFix.css;
  1106.      document.head.append(styleTag);
  1107.    };
  1108.  
  1109.    if (thisThemeFix.js) {
  1110.      var scriptTag = document.createElement('script');
  1111.      scriptTag.classList.add('jdgm-theme-fix-script');
  1112.      scriptTag.innerHTML = thisThemeFix.js;
  1113.      document.head.append(scriptTag);
  1114.    };
  1115.  })();
  1116. </script>
  1117. <!-- END app snippet -->
  1118. <!-- End of Judge.me Core -->
  1119.  
  1120.  
  1121.  
  1122.  
  1123. <!-- 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>
  1124. <script src="https://cdn.shopify.com/extensions/7ee0413a-f1ec-4d2b-95fb-a1e6a6721c36/1.0.0/assets/whatsapp.js" type="text/javascript" defer="defer"></script>
  1125. <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">
  1126. <script src="https://cdn.shopify.com/extensions/93d00691-3589-47f8-aa36-0cb5e757c844/searchpie-seo-speed-109/assets/local-seo.js" type="text/javascript" defer="defer"></script>
  1127. <link href="https://cdn.shopify.com/extensions/93d00691-3589-47f8-aa36-0cb5e757c844/searchpie-seo-speed-109/assets/local-seo.css" rel="stylesheet" type="text/css" media="all">
  1128. <script src="https://cdn.shopify.com/extensions/aed6b8e8-55a9-4c3d-849a-a4fa66455195/infinite-fb-tiktok-pixels-271/assets/embede.js" type="text/javascript" defer="defer"></script>
  1129. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1130. <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>
  1131. <script id="web-pixels-manager-setup">(function d(d,e,n,o,r,i){if(!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t,s=function(){var d={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+|)/},e=d.modern,n=d.legacy,o=navigator.userAgent;return e.test(o)?"modern":(n.test(o),"legacy")}(),l=null!=i?i:{modern:"",legacy:""};window.Shopify=window.Shopify||{};var u=window.Shopify;u.analytics=u.analytics||{};var c=u.analytics;c.replayQueue=[],c.publish=function(d,e,n){return c.replayQueue.push([d,e,n]),!0};try{self.performance.mark("wpm:start")}catch(d){}var f=[n,"/wpm","/b",r,s.substring(0,1),".js"].join(""),h=l[s];!function(d){var e=d.src,n=d.async,o=void 0===n||n,r=d.onload,i=d.onerror,a=d.sri,t=document.createElement("script"),s=document.head,l=document.body;t.async=o,t.src=e,a&&(t.integrity=a,t.crossOrigin="anonymous"),r&&t.addEventListener("load",r),i&&t.addEventListener("error",i),s?s.appendChild(t):l?l.appendChild(t):console.error("Did not find a head or body element to append the script")}({src:f,async:!0,onload:function(){if(!function(){var d,e;return Boolean(null===(e=null===(d=window.Shopify)||void 0===d?void 0:d.analytics)||void 0===e?void 0:e.initialized)}()){var n=window.webPixelsManager.init(d)||void 0;if(n){e(n);var o=window.Shopify.analytics;o.replayQueue.forEach((function(d){var e=d[0],o=d[1],r=d[2];n.publishCustomEvent(e,o,r)})),o.replayQueue=[],o.publish=n.publishCustomEvent,o.visitor=n.visitor,o.initialized=!0}}},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),n="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),r=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:o||"latest",bundle_target:s,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(f," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(n,r))return!0}catch(d){}var i=new XMLHttpRequest;try{return i.open("POST",n,!0),i.setRequestHeader("Content-Type","text/plain"),i.send(r),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1},sri:function(d){return"string"==typeof d&&/^sha384-[A-Za-z0-9+/=]+$/.test(d)}(h)?h:""})}})({shopId: 64606339150,storefrontBaseUrl: "https://momdaughts.ae",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: ["6a396365"],webPixelsConfigList: [{"id":"685932622","configuration":"{\"accountID\":\"28613\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"588c2c78d61f1ccd80bc2d0cac7989a9","type":"APP","apiClientId":34503065601,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"634486862","configuration":"{\"domain\":\"nxncvn-hf.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"e097b98d52cc759f45e09ec1a50a1a34","type":"APP","apiClientId":2850947073,"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":"0290","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0290","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","997976c7dbdc852cf772bec24b66a9d5ac2807e4","55ec44bcw9257550bp53d792c9m349925d7",{"modern":"","legacy":""});</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1132. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1133. window.ShopifyAnalytics.meta.currency = 'AED';
  1134. var meta = {"page":{"pageType":"home"}};
  1135. for (var attr in meta) {
  1136.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1137. }</script>
  1138. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1139.  
  1140. };
  1141. </script>
  1142. <script class="analytics">(function () {
  1143.    var customDocumentWrite = function(content) {
  1144.      var jquery = null;
  1145.  
  1146.      if (window.jQuery) {
  1147.        jquery = window.jQuery;
  1148.      } else if (window.Checkout && window.Checkout.$) {
  1149.        jquery = window.Checkout.$;
  1150.      }
  1151.  
  1152.      if (jquery) {
  1153.        jquery('body').append(content);
  1154.      }
  1155.    };
  1156.  
  1157.    var hasLoggedConversion = function(token) {
  1158.      if (token) {
  1159.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1160.      }
  1161.      return false;
  1162.    }
  1163.  
  1164.    var setCookieIfConversion = function(token) {
  1165.      if (token) {
  1166.        var twoMonthsFromNow = new Date(Date.now());
  1167.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1168.  
  1169.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1170.      }
  1171.    }
  1172.  
  1173.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1174.    if (trekkie.integrations) {
  1175.      return;
  1176.    }
  1177.    trekkie.methods = [
  1178.      'identify',
  1179.      'page',
  1180.      'ready',
  1181.      'track',
  1182.      'trackForm',
  1183.      'trackLink'
  1184.    ];
  1185.    trekkie.factory = function(method) {
  1186.      return function() {
  1187.        var args = Array.prototype.slice.call(arguments);
  1188.        args.unshift(method);
  1189.        trekkie.push(args);
  1190.        return trekkie;
  1191.      };
  1192.    };
  1193.    for (var i = 0; i < trekkie.methods.length; i++) {
  1194.      var key = trekkie.methods[i];
  1195.      trekkie[key] = trekkie.factory(key);
  1196.    }
  1197.    trekkie.load = function(config) {
  1198.      trekkie.config = config || {};
  1199.      trekkie.config.initialDocumentCookie = document.cookie;
  1200.      var first = document.getElementsByTagName('script')[0];
  1201.      var script = document.createElement('script');
  1202.      script.type = 'text/javascript';
  1203.      script.onerror = function(e) {
  1204.        var scriptFallback = document.createElement('script');
  1205.        scriptFallback.type = 'text/javascript';
  1206.        scriptFallback.onerror = function(error) {
  1207.                var Monorail = {
  1208.      produce: function produce(monorailDomain, schemaId, payload) {
  1209.        var currentMs = new Date().getTime();
  1210.        var event = {
  1211.          schema_id: schemaId,
  1212.          payload: payload,
  1213.          metadata: {
  1214.            event_created_at_ms: currentMs,
  1215.            event_sent_at_ms: currentMs
  1216.          }
  1217.        };
  1218.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1219.      },
  1220.      sendRequest: function sendRequest(endpointUrl, payload) {
  1221.        // Try the sendBeacon API
  1222.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1223.          var blobData = new window.Blob([payload], {
  1224.            type: 'text/plain'
  1225.          });
  1226.  
  1227.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1228.            return true;
  1229.          } // sendBeacon was not successful
  1230.  
  1231.        } // XHR beacon
  1232.  
  1233.        var xhr = new XMLHttpRequest();
  1234.  
  1235.        try {
  1236.          xhr.open('POST', endpointUrl);
  1237.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1238.          xhr.send(payload);
  1239.        } catch (e) {
  1240.          console.log(e);
  1241.        }
  1242.  
  1243.        return false;
  1244.      },
  1245.      isIos12: function isIos12() {
  1246.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1247.      }
  1248.    };
  1249.    Monorail.produce('monorail-edge.shopifysvc.com',
  1250.      'trekkie_storefront_load_errors/1.1',
  1251.      {shop_id: 64606339150,
  1252.      theme_id: 135963705422,
  1253.      app_name: "storefront",
  1254.      context_url: window.location.href,
  1255.      source_url: "//momdaughts.ae/cdn/s/trekkie.storefront.2472603e9c0c4edaac4d9763a196343b89ad60cd.min.js"});
  1256.  
  1257.        };
  1258.        scriptFallback.async = true;
  1259.        scriptFallback.src = '//momdaughts.ae/cdn/s/trekkie.storefront.2472603e9c0c4edaac4d9763a196343b89ad60cd.min.js';
  1260.        first.parentNode.insertBefore(scriptFallback, first);
  1261.      };
  1262.      script.async = true;
  1263.      script.src = '//momdaughts.ae/cdn/s/trekkie.storefront.2472603e9c0c4edaac4d9763a196343b89ad60cd.min.js';
  1264.      first.parentNode.insertBefore(script, first);
  1265.    };
  1266.    trekkie.load(
  1267.      {"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}}
  1268.    );
  1269.  
  1270.    var loaded = false;
  1271.    trekkie.ready(function() {
  1272.      if (loaded) return;
  1273.      loaded = true;
  1274.  
  1275.      window.ShopifyAnalytics.lib = window.trekkie;
  1276.  
  1277.  
  1278.      var originalDocumentWrite = document.write;
  1279.      document.write = customDocumentWrite;
  1280.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1281.      document.write = originalDocumentWrite;
  1282.  
  1283.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1284.  
  1285.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1286.      var token = match? match[1]: undefined;
  1287.      if (!hasLoggedConversion(token)) {
  1288.        setCookieIfConversion(token);
  1289.        
  1290.      }
  1291.    });
  1292.  
  1293.  
  1294.        var eventsListenerScript = document.createElement('script');
  1295.        eventsListenerScript.async = true;
  1296.        eventsListenerScript.src = "//momdaughts.ae/cdn/shopifycloud/shopify/assets/shop_events_listener-bbbf3223c550be0dd72914a2fa06aaa88eb8943e96f9ea31fb63e7e27e0f97f4.js";
  1297.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1298.  
  1299. })();</script>
  1300. <script
  1301.  defer
  1302.  src="https://momdaughts.ae/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.4.0.min.js"
  1303.  data-application="storefront-renderer"
  1304.  data-shop-id="64606339150"
  1305.  data-render-region="gcp-us-east1"
  1306.  data-page-type="index"
  1307.  data-theme-instance-id="135963705422"
  1308.  data-monorail-region="shop_domain"
  1309.  data-resource-timing-sampling-rate="10"
  1310. ></script>
  1311. </head>
  1312.  
  1313.  <body class="gradient animate--hover-default">
  1314.    <!-- Google Tag Manager (noscript) -->
  1315. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NQXRXMZ9"
  1316. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  1317. <!-- End Google Tag Manager (noscript) -->
  1318.    <a class="skip-to-content-link button visually-hidden" href="#MainContent">
  1319.      Skip to content
  1320.    </a><!-- BEGIN sections: header-group -->
  1321. <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" />
  1322. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  1323.  
  1324.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-social.css?v=35792976012981934991736691106" rel="stylesheet" type="text/css" media="all" />
  1325.  
  1326.  
  1327. <div
  1328.  class="utility-bar color-scheme-4 gradient utility-bar--bottom-border"
  1329.  
  1330. >
  1331.  <div class="page-width utility-bar__grid"><div
  1332.        class="announcement-bar"
  1333.        role="region"
  1334.        aria-label="Announcement"
  1335.        
  1336.      ><p class="announcement-bar__message h5">
  1337.            <span>Enjoy free shipping on orders over 100 AED!</span></p></div><div class="localization-wrapper">
  1338. </div>
  1339.  </div>
  1340. </div>
  1341.  
  1342.  
  1343. </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'">
  1344. <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-search.css?v=165164710990765432851736691106" media="print" onload="this.media='all'">
  1345. <link rel="stylesheet" href="//momdaughts.ae/cdn/shop/t/4/assets/component-menu-drawer.css?v=147478906057189667651736691106" media="print" onload="this.media='all'">
  1346. <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>
  1347.  header-drawer {
  1348.    justify-self: start;
  1349.    margin-left: -1.2rem;
  1350.  }@media screen and (min-width: 990px) {
  1351.      header-drawer {
  1352.        display: none;
  1353.      }
  1354.    }.menu-drawer-container {
  1355.    display: flex;
  1356.  }
  1357.  
  1358.  .list-menu {
  1359.    list-style: none;
  1360.    padding: 0;
  1361.    margin: 0;
  1362.  }
  1363.  
  1364.  .list-menu--inline {
  1365.    display: inline-flex;
  1366.    flex-wrap: wrap;
  1367.  }
  1368.  
  1369.  summary.list-menu__item {
  1370.    padding-right: 2.7rem;
  1371.  }
  1372.  
  1373.  .list-menu__item {
  1374.    display: flex;
  1375.    align-items: center;
  1376.    line-height: calc(1 + 0.3 / var(--font-body-scale));
  1377.  }
  1378.  
  1379.  .list-menu__item--link {
  1380.    text-decoration: none;
  1381.    padding-bottom: 1rem;
  1382.    padding-top: 1rem;
  1383.    line-height: calc(1 + 0.8 / var(--font-body-scale));
  1384.  }
  1385.  
  1386.  @media screen and (min-width: 750px) {
  1387.    .list-menu__item--link {
  1388.      padding-bottom: 0.5rem;
  1389.      padding-top: 0.5rem;
  1390.    }
  1391.  }
  1392. </style><style data-shopify>.header {
  1393.    padding: 2px 3rem 2px 3rem;
  1394.  }
  1395.  
  1396.  .section-header {
  1397.    position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
  1398.    margin-bottom: 0px;
  1399.  }
  1400.  
  1401.  @media screen and (min-width: 750px) {
  1402.    .section-header {
  1403.      margin-bottom: 0px;
  1404.    }
  1405.  }
  1406.  
  1407.  @media screen and (min-width: 990px) {
  1408.    .header {
  1409.      padding-top: 4px;
  1410.      padding-bottom: 4px;
  1411.    }
  1412.  }</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">
  1413.  
  1414. <header-drawer data-breakpoint="tablet">
  1415.  <details id="Details-menu-drawer-container" class="menu-drawer-container">
  1416.    <summary
  1417.      class="header__icon header__icon--menu header__icon--summary link focus-inset"
  1418.      aria-label="Menu"
  1419.    >
  1420.      <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>
  1421. <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>
  1422. </span>
  1423.    </summary>
  1424.    <div id="menu-drawer" class="gradient menu-drawer motion-reduce color-scheme-1">
  1425.      <div class="menu-drawer__inner-container">
  1426.        <div class="menu-drawer__navigation-container">
  1427.          <nav class="menu-drawer__navigation">
  1428.            <ul class="menu-drawer__menu has-submenu list-menu" role="list"><li><a
  1429.                      id="HeaderDrawer-home"
  1430.                      href="/"
  1431.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset menu-drawer__menu-item--active"
  1432.                      
  1433.                        aria-current="page"
  1434.                      
  1435.                    >
  1436.                      Home
  1437.                    </a></li><li><a
  1438.                      id="HeaderDrawer-catalog"
  1439.                      href="/collections/all"
  1440.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1441.                      
  1442.                    >
  1443.                      Catalog
  1444.                    </a></li><li><details id="Details-menu-drawer-menu-item-3">
  1445.                      <summary
  1446.                        id="HeaderDrawer-mother-baby"
  1447.                        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1448.                      >
  1449.                        Mother &amp; Baby
  1450.                        <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>
  1451. </span>
  1452.                        <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>
  1453. </span>
  1454.                      </summary>
  1455.                      <div
  1456.                        id="link-mother-baby"
  1457.                        class="menu-drawer__submenu has-submenu gradient motion-reduce"
  1458.                        tabindex="-1"
  1459.                      >
  1460.                        <div class="menu-drawer__inner-submenu">
  1461.                          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
  1462.                            <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>
  1463. </span>
  1464.                            Mother &amp; Baby
  1465.                          </button>
  1466.                          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
  1467.                                    id="HeaderDrawer-mother-baby-breast-pumps"
  1468.                                    href="/collections/breast-pumps"
  1469.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1470.                                    
  1471.                                  >
  1472.                                    Breast Pumps
  1473.                                  </a></li><li><a
  1474.                                    id="HeaderDrawer-mother-baby-mother-care"
  1475.                                    href="/collections/mother-care"
  1476.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1477.                                    
  1478.                                  >
  1479.                                    Mother Care
  1480.                                  </a></li></ul>
  1481.                        </div>
  1482.                      </div>
  1483.                    </details></li><li><details id="Details-menu-drawer-menu-item-4">
  1484.                      <summary
  1485.                        id="HeaderDrawer-personal-care"
  1486.                        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1487.                      >
  1488.                        Personal Care
  1489.                        <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>
  1490. </span>
  1491.                        <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>
  1492. </span>
  1493.                      </summary>
  1494.                      <div
  1495.                        id="link-personal-care"
  1496.                        class="menu-drawer__submenu has-submenu gradient motion-reduce"
  1497.                        tabindex="-1"
  1498.                      >
  1499.                        <div class="menu-drawer__inner-submenu">
  1500.                          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
  1501.                            <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>
  1502. </span>
  1503.                            Personal Care
  1504.                          </button>
  1505.                          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
  1506.                                    id="HeaderDrawer-personal-care-menstrual-collection"
  1507.                                    href="/collections/menstrual-cups"
  1508.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1509.                                    
  1510.                                  >
  1511.                                    Menstrual Collection
  1512.                                  </a></li><li><a
  1513.                                    id="HeaderDrawer-personal-care-hair-care"
  1514.                                    href="/collections/hair-care"
  1515.                                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
  1516.                                    
  1517.                                  >
  1518.                                    Hair Care
  1519.                                  </a></li></ul>
  1520.                        </div>
  1521.                      </div>
  1522.                    </details></li><li><a
  1523.                      id="HeaderDrawer-about-us"
  1524.                      href="/pages/about-us"
  1525.                      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
  1526.                      
  1527.                    >
  1528.                      About Us
  1529.                    </a></li></ul>
  1530.          </nav>
  1531.          <div class="menu-drawer__utility-links"><a
  1532.                href="https://shopify.com/64606339150/account?locale=en&region_country=AE"
  1533.                class="menu-drawer__account link focus-inset h5 medium-hide large-up-hide"
  1534.              ><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>
  1535. </span></account-icon>Log in</a><div class="menu-drawer__localization header-localization">
  1536. </div><ul class="list list-social list-unstyled" role="list"><li class="list-social__item">
  1537.                  <a href="https://twitter.com/momdaughts" class="list-social__link link">
  1538.                    <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>
  1539. </span>
  1540.                    <span class="visually-hidden">X (Twitter)</span>
  1541.                  </a>
  1542.                </li><li class="list-social__item">
  1543.                  <a href="https://www.facebook.com/momdaughts.ae" class="list-social__link link">
  1544.                    <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>
  1545. </span>
  1546.                    <span class="visually-hidden">Facebook</span>
  1547.                  </a>
  1548.                </li><li class="list-social__item">
  1549.                  <a href="https://www.instagram.com/momdaughts.ae" class="list-social__link link">
  1550.                    <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>
  1551. </span>
  1552.                    <span class="visually-hidden">Instagram</span>
  1553.                  </a>
  1554.                </li></ul>
  1555.          </div>
  1556.        </div>
  1557.      </div>
  1558.    </div>
  1559.  </details>
  1560. </header-drawer>
  1561. <h1 class="header__heading"><a href="/" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper">
  1562.                
  1563.                <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">
  1564.              </div></a></h1>
  1565.  
  1566. <nav class="header__inline-menu">
  1567.  <ul class="list-menu list-menu--inline" role="list"><li><a
  1568.            id="HeaderMenu-home"
  1569.            href="/"
  1570.            class="header__menu-item list-menu__item link link--text focus-inset"
  1571.            
  1572.              aria-current="page"
  1573.            
  1574.          >
  1575.            <span
  1576.                class="header__active-menu-item"
  1577.              
  1578.            >Home</span>
  1579.          </a></li><li><a
  1580.            id="HeaderMenu-catalog"
  1581.            href="/collections/all"
  1582.            class="header__menu-item list-menu__item link link--text focus-inset"
  1583.            
  1584.          >
  1585.            <span
  1586.            >Catalog</span>
  1587.          </a></li><li><header-menu>
  1588.            <details id="Details-HeaderMenu-3" class="mega-menu">
  1589.              <summary
  1590.                id="HeaderMenu-mother-baby"
  1591.                class="header__menu-item list-menu__item link focus-inset"
  1592.              >
  1593.                <span
  1594.                >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>
  1595. </summary>
  1596.              <div
  1597.                id="MegaMenu-Content-3"
  1598.                class="mega-menu__content color-scheme-1 gradient motion-reduce global-settings-popup"
  1599.                tabindex="-1"
  1600.              >
  1601.                <ul
  1602.                  class="mega-menu__list page-width mega-menu__list--condensed"
  1603.                  role="list"
  1604.                ><li>
  1605.                      <a
  1606.                        id="HeaderMenu-mother-baby-breast-pumps"
  1607.                        href="/collections/breast-pumps"
  1608.                        class="mega-menu__link mega-menu__link--level-2 link"
  1609.                        
  1610.                      >
  1611.                        Breast Pumps
  1612.                      </a></li><li>
  1613.                      <a
  1614.                        id="HeaderMenu-mother-baby-mother-care"
  1615.                        href="/collections/mother-care"
  1616.                        class="mega-menu__link mega-menu__link--level-2 link"
  1617.                        
  1618.                      >
  1619.                        Mother Care
  1620.                      </a></li></ul>
  1621.              </div>
  1622.            </details>
  1623.          </header-menu></li><li><header-menu>
  1624.            <details id="Details-HeaderMenu-4" class="mega-menu">
  1625.              <summary
  1626.                id="HeaderMenu-personal-care"
  1627.                class="header__menu-item list-menu__item link focus-inset"
  1628.              >
  1629.                <span
  1630.                >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>
  1631. </summary>
  1632.              <div
  1633.                id="MegaMenu-Content-4"
  1634.                class="mega-menu__content color-scheme-1 gradient motion-reduce global-settings-popup"
  1635.                tabindex="-1"
  1636.              >
  1637.                <ul
  1638.                  class="mega-menu__list page-width mega-menu__list--condensed"
  1639.                  role="list"
  1640.                ><li>
  1641.                      <a
  1642.                        id="HeaderMenu-personal-care-menstrual-collection"
  1643.                        href="/collections/menstrual-cups"
  1644.                        class="mega-menu__link mega-menu__link--level-2 link"
  1645.                        
  1646.                      >
  1647.                        Menstrual Collection
  1648.                      </a></li><li>
  1649.                      <a
  1650.                        id="HeaderMenu-personal-care-hair-care"
  1651.                        href="/collections/hair-care"
  1652.                        class="mega-menu__link mega-menu__link--level-2 link"
  1653.                        
  1654.                      >
  1655.                        Hair Care
  1656.                      </a></li></ul>
  1657.              </div>
  1658.            </details>
  1659.          </header-menu></li><li><a
  1660.            id="HeaderMenu-about-us"
  1661.            href="/pages/about-us"
  1662.            class="header__menu-item list-menu__item link link--text focus-inset"
  1663.            
  1664.          >
  1665.            <span
  1666.            >About Us</span>
  1667.          </a></li></ul>
  1668. </nav>
  1669.  
  1670. <div class="header__icons">
  1671.      <div class="desktop-localization-wrapper">
  1672. </div>
  1673.      
  1674.  
  1675. <details-modal class="header__search">
  1676.  <details>
  1677.    <summary
  1678.      class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle"
  1679.      aria-haspopup="dialog"
  1680.      aria-label="Search"
  1681.    >
  1682.      <span>
  1683.        <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>
  1684. </span>
  1685.        <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>
  1686. </span>
  1687.      </span>
  1688.    </summary>
  1689.    <div
  1690.      class="search-modal modal__content gradient"
  1691.      role="dialog"
  1692.      aria-modal="true"
  1693.      aria-label="Search"
  1694.    >
  1695.      <div class="modal-overlay"></div>
  1696.      <div
  1697.        class="search-modal__content search-modal__content-top"
  1698.        tabindex="-1"
  1699.      ><predictive-search class="search-modal__form" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="search search-modal__form">
  1700.          <div class="field">
  1701.            <input
  1702.              class="search__input field__input"
  1703.              id="Search-In-Modal"
  1704.              type="search"
  1705.              name="q"
  1706.              value=""
  1707.              placeholder="Search"role="combobox"
  1708.                aria-expanded="false"
  1709.                aria-owns="predictive-search-results"
  1710.                aria-controls="predictive-search-results"
  1711.                aria-haspopup="listbox"
  1712.                aria-autocomplete="list"
  1713.                autocorrect="off"
  1714.                autocomplete="off"
  1715.                autocapitalize="off"
  1716.                spellcheck="false">
  1717.            <label class="field__label" for="Search-In-Modal">Search</label>
  1718.            <input type="hidden" name="options[prefix]" value="last">
  1719.            <button
  1720.              type="reset"
  1721.              class="reset__button field__button hidden"
  1722.              aria-label="Clear search term"
  1723.            >
  1724.              <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>
  1725. </span>
  1726.            </button>
  1727.            <button class="search__button field__button" aria-label="Search">
  1728.              <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>
  1729. </span>
  1730.            </button>
  1731.          </div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
  1732.  
  1733. <div class="predictive-search__loading-state">
  1734.  <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>
  1735.  
  1736. </div>
  1737. </div>
  1738.  
  1739.            <span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button
  1740.          type="button"
  1741.          class="search-modal__close-button modal__close-button link link--text focus-inset"
  1742.          aria-label="Close"
  1743.        >
  1744.          <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>
  1745. </span>
  1746.        </button>
  1747.      </div>
  1748.    </div>
  1749.  </details>
  1750. </details-modal>
  1751.  
  1752. <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>
  1753. </span></account-icon><span class="visually-hidden">Log in</span>
  1754.        </a><a href="/cart" class="header__icon header__icon--cart link focus-inset" id="cart-icon-bubble">
  1755.          
  1756.            <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>
  1757. </span>
  1758.          
  1759.        <span class="visually-hidden">Cart</span></a>
  1760.    </div>
  1761.  </header>
  1762. </sticky-header>
  1763.  
  1764. <cart-notification>
  1765.  <div class="cart-notification-wrapper page-width">
  1766.    <div
  1767.      id="cart-notification"
  1768.      class="cart-notification focus-inset color-scheme-1 gradient"
  1769.      aria-modal="true"
  1770.      aria-label="Item added to your cart"
  1771.      role="dialog"
  1772.      tabindex="-1"
  1773.    >
  1774.      <div class="cart-notification__header">
  1775.        <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>
  1776. Item added to your cart
  1777.        </h2>
  1778.        <button
  1779.          type="button"
  1780.          class="cart-notification__close modal__close-button link link--text focus-inset"
  1781.          aria-label="Close"
  1782.        >
  1783.          <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>
  1784. </span>
  1785.        </button>
  1786.      </div>
  1787.      <div id="cart-notification-product" class="cart-notification-product"></div>
  1788.      <div class="cart-notification__links">
  1789.        <a
  1790.          href="/cart"
  1791.          id="cart-notification-button"
  1792.          class="button button--secondary button--full-width"
  1793.        >View cart</a>
  1794.        <form action="/cart" method="post" id="cart-notification-form">
  1795.          <button class="button button--primary button--full-width" name="checkout">
  1796.            Check out
  1797.          </button>
  1798.        </form>
  1799.        <button type="button" class="link button-label">Continue shopping</button>
  1800.      </div>
  1801.    </div>
  1802.  </div>
  1803. </cart-notification>
  1804. <style data-shopify>
  1805.  .cart-notification {
  1806.    display: none;
  1807.  }
  1808. </style>
  1809.  
  1810.  
  1811. <script type="application/ld+json">
  1812.  {
  1813.    "@context": "http://schema.org",
  1814.    "@type": "Organization",
  1815.    "name": "MomDaughts UAE",
  1816.    
  1817.      "logo": "https:\/\/momdaughts.ae\/cdn\/shop\/files\/Logo_Main_Cropped.png?v=1736422504\u0026width=500",
  1818.    
  1819.    "sameAs": [
  1820.      "https:\/\/twitter.com\/momdaughts",
  1821.      "https:\/\/www.facebook.com\/momdaughts.ae",
  1822.      "",
  1823.      "https:\/\/www.instagram.com\/momdaughts.ae",
  1824.      "",
  1825.      "",
  1826.      "",
  1827.      "",
  1828.      ""
  1829.    ],
  1830.    "url": "https:\/\/momdaughts.ae"
  1831.  }
  1832. </script>
  1833.  <script type="application/ld+json">
  1834.    {
  1835.      "@context": "http://schema.org",
  1836.      "@type": "WebSite",
  1837.      "name": "MomDaughts UAE",
  1838.      "potentialAction": {
  1839.        "@type": "SearchAction",
  1840.        "target": "https:\/\/momdaughts.ae\/search?q={search_term_string}",
  1841.        "query-input": "required name=search_term_string"
  1842.      },
  1843.      "url": "https:\/\/momdaughts.ae"
  1844.    }
  1845.  </script>
  1846. </div>
  1847. <!-- END sections: header-group -->
  1848.  
  1849.    <main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">
  1850.      <div id="shopify-section-template--17173043150926__responsivebanner_B6Ajxz" class="shopify-section"><!-- responsive-banner.liquid -->
  1851. <section class="responsive-banner-section">
  1852.  <div class="banner-container">
  1853.    <!-- Desktop Banner with Link -->
  1854.    <a href="/collections/frontpage" class="banner-link" target="_self">
  1855.      <img class="banner-desktop" src="//momdaughts.ae/cdn/shop/files/new_banner.jpg?v=1740580089" alt="Desktop Banner">
  1856.    </a>
  1857.  
  1858.    <!-- Mobile Banner with Link -->
  1859.    <a href="/collections/frontpage" class="banner-link" target="_self">
  1860.      <img class="banner-mobile" src="//momdaughts.ae/cdn/shop/files/new_banner_mob.jpg?v=1740580090" alt="Mobile Banner">
  1861.    </a>
  1862.  </div>
  1863. </section>
  1864.  
  1865.  
  1866.  
  1867. <style data-shopify>
  1868. .responsive-banner-section {
  1869.  position: relative;
  1870.  width: 100%;
  1871. }
  1872.  
  1873. .banner-container {
  1874.  position: relative;
  1875.  width: 100%;
  1876. }
  1877.  
  1878. .banner-desktop, .banner-mobile {
  1879.  width: 100%;
  1880.  height: auto;
  1881.  display: block;
  1882. }
  1883.  
  1884. .banner-link {
  1885.  display: block;
  1886. }
  1887.  
  1888. /* Hide mobile image on desktop */
  1889. .banner-mobile {
  1890.  display: none;
  1891. }
  1892.  
  1893. /* Show the mobile banner on smaller devices and hide desktop banner */
  1894. @media screen and (max-width: 767px) {
  1895.  .banner-desktop {
  1896.    display: none;
  1897.  }
  1898.  .banner-mobile {
  1899.    display: block;
  1900.  }
  1901. }
  1902. </style>
  1903. </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" />
  1904. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  1905.  
  1906. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  1907. <link href="//momdaughts.ae/cdn/shop/t/4/assets/template-collection.css?v=58558206033505836701736691108" rel="stylesheet" type="text/css" media="all" />
  1908.  
  1909. <style data-shopify>.section-template--17173043150926__featured-collection-padding {
  1910.    padding-top: 18px;
  1911.    padding-bottom: 18px;
  1912.  }
  1913.  
  1914.  @media screen and (min-width: 750px) {
  1915.    .section-template--17173043150926__featured-collection-padding {
  1916.      padding-top: 24px;
  1917.      padding-bottom: 24px;
  1918.    }
  1919.  }</style><div
  1920.  class="color-scheme-1 isolate gradient"
  1921. >
  1922.  <div
  1923.    class="collection section-template--17173043150926__featured-collection-padding"
  1924.    id="collection-template--17173043150926__featured-collection"
  1925.    data-id="template--17173043150926__featured-collection"
  1926.  >
  1927.    <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">
  1928.          Exclusives
  1929.        </h2></div>
  1930.  
  1931.    <slider-component class="slider-mobile-gutter page-width-desktop">
  1932.      <ul
  1933.        id="Slider-template--17173043150926__featured-collection"
  1934.        data-id="template--17173043150926__featured-collection"
  1935.        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"
  1936.        role="list"
  1937.        aria-label="Slider"
  1938.      >
  1939.        
  1940. <li
  1941.            id="Slide-template--17173043150926__featured-collection-1"
  1942.            class="grid__item slider__slide"
  1943.            
  1944.          >
  1945.            
  1946. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-rating.css?v=179577762467860590411736691106" rel="stylesheet" type="text/css" media="all" />
  1947.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-volume-pricing.css?v=111870094811454961941736691106" rel="stylesheet" type="text/css" media="all" />
  1948.  
  1949.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  1950.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/quick-order-list.css?v=129932180309343703061736691107" rel="stylesheet" type="text/css" media="all" />
  1951.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/quantity-popover.css?v=129068967981937647381736691107" rel="stylesheet" type="text/css" media="all" />
  1952. <div class="card-wrapper product-card-wrapper underline-links-hover">
  1953.    <div
  1954.      class="
  1955.        card card--standard
  1956.         card--media
  1957.        
  1958.        
  1959.        
  1960.        
  1961.        
  1962.      "
  1963.      style="--ratio-percent: 100.0%;"
  1964.    >
  1965.      <div
  1966.        class="card__inner color-scheme-3 gradient ratio"
  1967.        style="--ratio-percent: 100.0%;"
  1968.      ><div class="card__media">
  1969.            <div class="media media--transparent media--hover-effect">
  1970.              
  1971.              <img
  1972.                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
  1973.                "
  1974.                src="//momdaughts.ae/cdn/shop/files/powerful-electric-double-breast-pump-efficient-bilateral-753424.png?v=1741444949&width=533"
  1975.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  1976.                alt="Powerful Electric Double Breast Pump – Efficient &amp; Bilateral - MomDaughts UAE"
  1977.                class="motion-reduce"
  1978.                
  1979.                  loading="lazy"
  1980.                
  1981.                width="1080"
  1982.                height="1080"
  1983.              >
  1984.              
  1985. <img
  1986.                  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
  1987.                  "
  1988.                  src="//momdaughts.ae/cdn/shop/files/5.jpg?v=1740563171&width=533"
  1989.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  1990.                  alt=""
  1991.                  class="motion-reduce"
  1992.                  loading="lazy"
  1993.                  width="1080"
  1994.                  height="1080"
  1995.                ></div>
  1996.          </div><div class="card__content">
  1997.          <div class="card__information">
  1998.            <h3
  1999.              class="card__heading"
  2000.              
  2001.            >
  2002.              <a
  2003.                href="/products/electric-double-breast-pump"
  2004.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7571389382734"
  2005.                class="full-unstyled-link"
  2006.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7571389382734 NoMediaStandardBadge-template--17173043150926__featured-collection-7571389382734"
  2007.              >
  2008.                Powerful Electric Double Breast Pump – Efficient &amp; Bilateral
  2009.              </a>
  2010.            </h3>
  2011.          </div>
  2012.          <div class="card__badge bottom left"><span
  2013.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7571389382734"
  2014.                class="badge badge--bottom-left color-scheme-3"
  2015.              >Sale</span></div>
  2016.        </div>
  2017.      </div>
  2018.      <div class="card__content">
  2019.        <div class="card__information">
  2020.          <h3
  2021.            class="card__heading h5"
  2022.            
  2023.              id="title-template--17173043150926__featured-collection-7571389382734"
  2024.            
  2025.          >
  2026.            <a
  2027.              href="/products/electric-double-breast-pump"
  2028.              id="CardLink-template--17173043150926__featured-collection-7571389382734"
  2029.              class="full-unstyled-link"
  2030.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7571389382734 Badge-template--17173043150926__featured-collection-7571389382734"
  2031.            >
  2032.              Powerful Electric Double Breast Pump – Efficient &amp; Bilateral
  2033.            </a>
  2034.          </h3>
  2035.          <div class="card-information"><span class="caption-large light"></span>
  2036.              <div
  2037.                class="rating"
  2038.                role="img"
  2039.                aria-label="4.56 out of 5.0 stars"
  2040.              >
  2041.                <span
  2042.                  aria-hidden="true"
  2043.                  class="rating-star"
  2044.                  style="--rating: 4; --rating-max: 5.0; --rating-decimal: 0.5;"
  2045.                ></span>
  2046.              </div>
  2047.              <p class="rating-text caption">
  2048.                <span aria-hidden="true">4.56 /
  2049.                  5.0</span>
  2050.              </p>
  2051.              <p class="rating-count caption">
  2052.                <span aria-hidden="true">(45)</span>
  2053.                <span class="visually-hidden">45
  2054.                  total reviews</span>
  2055.              </p>
  2056. <div
  2057.    class="
  2058.      price  price--on-sale"
  2059.  >
  2060.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2061.          <span class="price-item price-item--regular">
  2062.            AED. 109.00
  2063.          </span></div>
  2064.      <div class="price__sale">
  2065.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2066.          <span>
  2067.            <s class="price-item price-item--regular">
  2068.              
  2069.                AED. 249.00
  2070.              
  2071.            </s>
  2072.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2073.        <span class="price-item price-item--sale price-item--last">
  2074.          AED. 109.00
  2075.        </span>
  2076.      </div>
  2077.      <small class="unit-price caption hidden">
  2078.        <span class="visually-hidden">Unit price</span>
  2079.        <span class="price-item price-item--last">
  2080.          <span></span>
  2081.          <span aria-hidden="true">/</span>
  2082.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2083.          <span>
  2084.          </span>
  2085.        </span>
  2086.      </small>
  2087.    </div></div>
  2088.  
  2089.  
  2090. </div>
  2091.        </div>
  2092.        
  2093.        
  2094.        <div class="card__badge bottom left"><span
  2095.              id="Badge-template--17173043150926__featured-collection-7571389382734"
  2096.              class="badge badge--bottom-left color-scheme-3"
  2097.            >Sale</span></div>
  2098.      </div>
  2099.    </div>
  2100.  </div>
  2101.          </li><li
  2102.            id="Slide-template--17173043150926__featured-collection-2"
  2103.            class="grid__item slider__slide"
  2104.            
  2105.          >
  2106.            
  2107. <div class="card-wrapper product-card-wrapper underline-links-hover">
  2108.    <div
  2109.      class="
  2110.        card card--standard
  2111.         card--media
  2112.        
  2113.        
  2114.        
  2115.        
  2116.        
  2117.      "
  2118.      style="--ratio-percent: 100.0%;"
  2119.    >
  2120.      <div
  2121.        class="card__inner color-scheme-3 gradient ratio"
  2122.        style="--ratio-percent: 100.0%;"
  2123.      ><div class="card__media">
  2124.            <div class="media media--transparent media--hover-effect">
  2125.              
  2126.              <img
  2127.                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
  2128.                "
  2129.                src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=533"
  2130.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2131.                alt="MomDaughts Wearable Breast Pump MY-376."
  2132.                class="motion-reduce"
  2133.                
  2134.                  loading="lazy"
  2135.                
  2136.                width="1080"
  2137.                height="1080"
  2138.              >
  2139.              
  2140. <img
  2141.                  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
  2142.                  "
  2143.                  src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=533"
  2144.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2145.                  alt=""
  2146.                  class="motion-reduce"
  2147.                  loading="lazy"
  2148.                  width="1080"
  2149.                  height="1080"
  2150.                ></div>
  2151.          </div><div class="card__content">
  2152.          <div class="card__information">
  2153.            <h3
  2154.              class="card__heading"
  2155.              
  2156.            >
  2157.              <a
  2158.                href="/products/wearable-breast-pump-my376"
  2159.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7540982448206"
  2160.                class="full-unstyled-link"
  2161.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7540982448206 NoMediaStandardBadge-template--17173043150926__featured-collection-7540982448206"
  2162.              >
  2163.                MomDaughts Wearable Breast Pump MY-376
  2164.              </a>
  2165.            </h3>
  2166.          </div>
  2167.          <div class="card__badge bottom left"><span
  2168.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7540982448206"
  2169.                class="badge badge--bottom-left color-scheme-3"
  2170.              >Sale</span></div>
  2171.        </div>
  2172.      </div>
  2173.      <div class="card__content">
  2174.        <div class="card__information">
  2175.          <h3
  2176.            class="card__heading h5"
  2177.            
  2178.              id="title-template--17173043150926__featured-collection-7540982448206"
  2179.            
  2180.          >
  2181.            <a
  2182.              href="/products/wearable-breast-pump-my376"
  2183.              id="CardLink-template--17173043150926__featured-collection-7540982448206"
  2184.              class="full-unstyled-link"
  2185.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7540982448206 Badge-template--17173043150926__featured-collection-7540982448206"
  2186.            >
  2187.              MomDaughts Wearable Breast Pump MY-376
  2188.            </a>
  2189.          </h3>
  2190.          <div class="card-information"><span class="caption-large light"></span>
  2191.              <div
  2192.                class="rating"
  2193.                role="img"
  2194.                aria-label="4.75 out of 5.0 stars"
  2195.              >
  2196.                <span
  2197.                  aria-hidden="true"
  2198.                  class="rating-star"
  2199.                  style="--rating: 4; --rating-max: 5.0; --rating-decimal: 1;"
  2200.                ></span>
  2201.              </div>
  2202.              <p class="rating-text caption">
  2203.                <span aria-hidden="true">4.75 /
  2204.                  5.0</span>
  2205.              </p>
  2206.              <p class="rating-count caption">
  2207.                <span aria-hidden="true">(51)</span>
  2208.                <span class="visually-hidden">51
  2209.                  total reviews</span>
  2210.              </p>
  2211. <div
  2212.    class="
  2213.      price  price--on-sale"
  2214.  >
  2215.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2216.          <span class="price-item price-item--regular">
  2217.            From AED. 149.00
  2218.          </span></div>
  2219.      <div class="price__sale">
  2220.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2221.          <span>
  2222.            <s class="price-item price-item--regular">
  2223.              
  2224.                AED. 229.00
  2225.              
  2226.            </s>
  2227.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2228.        <span class="price-item price-item--sale price-item--last">
  2229.          From AED. 149.00
  2230.        </span>
  2231.      </div>
  2232.      <small class="unit-price caption hidden">
  2233.        <span class="visually-hidden">Unit price</span>
  2234.        <span class="price-item price-item--last">
  2235.          <span></span>
  2236.          <span aria-hidden="true">/</span>
  2237.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2238.          <span>
  2239.          </span>
  2240.        </span>
  2241.      </small>
  2242.    </div></div>
  2243.  
  2244.  
  2245. </div>
  2246.        </div>
  2247.        
  2248.        
  2249.        <div class="card__badge bottom left"><span
  2250.              id="Badge-template--17173043150926__featured-collection-7540982448206"
  2251.              class="badge badge--bottom-left color-scheme-3"
  2252.            >Sale</span></div>
  2253.      </div>
  2254.    </div>
  2255.  </div>
  2256.          </li><li
  2257.            id="Slide-template--17173043150926__featured-collection-3"
  2258.            class="grid__item slider__slide"
  2259.            
  2260.          >
  2261.            
  2262. <div class="card-wrapper product-card-wrapper underline-links-hover">
  2263.    <div
  2264.      class="
  2265.        card card--standard
  2266.         card--media
  2267.        
  2268.        
  2269.        
  2270.        
  2271.        
  2272.      "
  2273.      style="--ratio-percent: 100.0%;"
  2274.    >
  2275.      <div
  2276.        class="card__inner color-scheme-3 gradient ratio"
  2277.        style="--ratio-percent: 100.0%;"
  2278.      ><div class="card__media">
  2279.            <div class="media media--transparent media--hover-effect">
  2280.              
  2281.              <img
  2282.                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
  2283.                "
  2284.                src="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-379712.jpg?v=1741444946&width=533"
  2285.                sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2286.                alt="Premium Manual Breast Pump – BPA - Free &amp; Portable - MomDaughts UAE"
  2287.                class="motion-reduce"
  2288.                
  2289.                  loading="lazy"
  2290.                
  2291.                width="1080"
  2292.                height="1080"
  2293.              >
  2294.              
  2295. <img
  2296.                  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
  2297.                  "
  2298.                  src="//momdaughts.ae/cdn/shop/files/premium-manual-breast-pump-bpa-free-portable-441397.jpg?v=1741444945&width=533"
  2299.                  sizes="(min-width: 1200px) 267px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  2300.                  alt=""
  2301.                  class="motion-reduce"
  2302.                  loading="lazy"
  2303.                  width="1080"
  2304.                  height="1080"
  2305.                ></div>
  2306.          </div><div class="card__content">
  2307.          <div class="card__information">
  2308.            <h3
  2309.              class="card__heading"
  2310.              
  2311.            >
  2312.              <a
  2313.                href="/products/modern-manual-pump"
  2314.                id="StandardCardNoMediaLink-template--17173043150926__featured-collection-7560789033038"
  2315.                class="full-unstyled-link"
  2316.                aria-labelledby="StandardCardNoMediaLink-template--17173043150926__featured-collection-7560789033038 NoMediaStandardBadge-template--17173043150926__featured-collection-7560789033038"
  2317.              >
  2318.                Premium Manual Breast Pump – BPA-Free &amp; Portable
  2319.              </a>
  2320.            </h3>
  2321.          </div>
  2322.          <div class="card__badge bottom left"><span
  2323.                id="NoMediaStandardBadge-template--17173043150926__featured-collection-7560789033038"
  2324.                class="badge badge--bottom-left color-scheme-3"
  2325.              >Sale</span></div>
  2326.        </div>
  2327.      </div>
  2328.      <div class="card__content">
  2329.        <div class="card__information">
  2330.          <h3
  2331.            class="card__heading h5"
  2332.            
  2333.              id="title-template--17173043150926__featured-collection-7560789033038"
  2334.            
  2335.          >
  2336.            <a
  2337.              href="/products/modern-manual-pump"
  2338.              id="CardLink-template--17173043150926__featured-collection-7560789033038"
  2339.              class="full-unstyled-link"
  2340.              aria-labelledby="CardLink-template--17173043150926__featured-collection-7560789033038 Badge-template--17173043150926__featured-collection-7560789033038"
  2341.            >
  2342.              Premium Manual Breast Pump – BPA-Free &amp; Portable
  2343.            </a>
  2344.          </h3>
  2345.          <div class="card-information"><span class="caption-large light"></span>
  2346. <div
  2347.    class="
  2348.      price  price--on-sale"
  2349.  >
  2350.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2351.          <span class="price-item price-item--regular">
  2352.            AED. 50.00
  2353.          </span></div>
  2354.      <div class="price__sale">
  2355.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2356.          <span>
  2357.            <s class="price-item price-item--regular">
  2358.              
  2359.                AED. 79.00
  2360.              
  2361.            </s>
  2362.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2363.        <span class="price-item price-item--sale price-item--last">
  2364.          AED. 50.00
  2365.        </span>
  2366.      </div>
  2367.      <small class="unit-price caption hidden">
  2368.        <span class="visually-hidden">Unit price</span>
  2369.        <span class="price-item price-item--last">
  2370.          <span></span>
  2371.          <span aria-hidden="true">/</span>
  2372.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2373.          <span>
  2374.          </span>
  2375.        </span>
  2376.      </small>
  2377.    </div></div>
  2378.  
  2379.  
  2380. </div>
  2381.        </div>
  2382.        
  2383.        
  2384.        <div class="card__badge bottom left"><span
  2385.              id="Badge-template--17173043150926__featured-collection-7560789033038"
  2386.              class="badge badge--bottom-left color-scheme-3"
  2387.            >Sale</span></div>
  2388.      </div>
  2389.    </div>
  2390.  </div>
  2391.          </li></ul><div class="slider-buttons">
  2392.          <button
  2393.            type="button"
  2394.            class="slider-button slider-button--prev"
  2395.            name="previous"
  2396.            aria-label="Slide left"
  2397.            aria-controls="Slider-template--17173043150926__featured-collection"
  2398.          >
  2399.            <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>
  2400. </span>
  2401.          </button>
  2402.          <div class="slider-counter caption">
  2403.            <span class="slider-counter--current">1</span>
  2404.            <span aria-hidden="true"> / </span>
  2405.            <span class="visually-hidden">of</span>
  2406.            <span class="slider-counter--total">3</span>
  2407.          </div>
  2408.          <button
  2409.            type="button"
  2410.            class="slider-button slider-button--next"
  2411.            name="next"
  2412.            aria-label="Slide right"
  2413.            aria-controls="Slider-template--17173043150926__featured-collection"
  2414.          >
  2415.            <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>
  2416. </span>
  2417.          </button>
  2418.        </div></slider-component></div>
  2419. </div>
  2420.  
  2421.  
  2422. </section><section id="shopify-section-template--17173043150926__ss_text_block_z96Pwj" class="shopify-section section"><style data-shopify>.p {
  2423.    margin:0;
  2424.    padding:0;
  2425.  }
  2426.  
  2427.  .section-template--17173043150926__ss_text_block_z96Pwj-padding {
  2428.    max-width: 120rem;
  2429.    margin: 0 auto;
  2430.    padding: 0 1.5rem;
  2431.    padding-top: 27px;
  2432.    padding-bottom: 27px;
  2433.  }
  2434.  
  2435.  @media screen and (min-width: 750px) {
  2436.    .section-template--17173043150926__ss_text_block_z96Pwj-padding {
  2437.      padding: 0 5rem;
  2438.      padding-top: 36px;
  2439.      padding-bottom: 36px;
  2440.    }
  2441.  }
  2442.  
  2443.  .ss-text-wrapper {
  2444.    display:flex;
  2445.    justify-content:center;
  2446.  }
  2447.  
  2448.  .ss-content {
  2449.    text-align:center;
  2450.    width:100%;
  2451.  }
  2452.  
  2453.  .button-wrapper-text-block {
  2454.    
  2455.  }</style><div style="background-color:#ffcfdb;">
  2456.  <div class="page-width section-template--17173043150926__ss_text_block_z96Pwj-padding">
  2457.    <div class="ss-text-wrapper">
  2458.      <div class="ss-content">
  2459.        
  2460.          
  2461.              
  2462.                <style>
  2463.                  .countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR {
  2464.                    font-size: 24px;
  2465.                  }  
  2466.                  @media screen and (min-width: 750px) {
  2467.                    .countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR {
  2468.                      font-size: 28px;
  2469.                    }
  2470.                  }
  2471.                </style>
  2472.                <div
  2473.                  class="countdown-banner-heading-template--17173043150926__ss_text_block_z96Pwj-text_YzJYjR"
  2474.                  style="
  2475.                    color: #2c2a6b;
  2476.                    line-height:1.3;
  2477.                    padding-bottom:10px;
  2478.                  "
  2479.                >
  2480.                  <p><strong>Made with Love for Modern Moms</strong></p>
  2481.                </div>
  2482.              
  2483.              
  2484.            
  2485.        
  2486.          
  2487.              <style>
  2488.                .countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb {
  2489.                  padding: 9px 25px;
  2490.                  text-decoration: none;
  2491.                  font-size: 10px;
  2492.                  margin-top:10px;
  2493.                }
  2494.                @media screen and (min-width: 750px) {
  2495.                  .countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb {
  2496.                    padding: 11px 25px;
  2497.                    font-size: 12px;
  2498.                  }
  2499.                }
  2500.              </style>
  2501.              <div class="button-wrapper-text-block">
  2502.              <a
  2503.                href="/collections/catalog"
  2504.                class="countdown-banner-button-template--17173043150926__ss_text_block_z96Pwj-button_nLhDhb"
  2505.                style="
  2506.                  color: #ffffff;
  2507.                  background-color: #2c2a6b;
  2508.                  border-radius: 50px;
  2509.                  display: inline-block;
  2510.                "
  2511.              >
  2512.                Browse Our Catalog
  2513.              </a></div>
  2514.          
  2515.        
  2516.      </div>
  2517.    </div>
  2518.  </div>
  2519. </div>
  2520.  
  2521.  
  2522.  
  2523.  
  2524.  
  2525. </section><div id="shopify-section-template--17173043150926__ss_waves_HGjQfz" class="shopify-section"><style data-shopify>.section-template--17173043150926__ss_waves_HGjQfz {
  2526.    margin-top: 0px;
  2527.    margin-bottom: -60px;
  2528.    overflow: hidden;
  2529.  }
  2530.  
  2531.  .section-template--17173043150926__ss_waves_HGjQfz-settings {
  2532.    margin: 0 auto;
  2533.    padding-top: 0px;
  2534.    padding-bottom: 0px;
  2535.    padding-left: 0rem;
  2536.    padding-right: 0rem;
  2537.  }
  2538.  
  2539.  .wave-body-template--17173043150926__ss_waves_HGjQfz {
  2540.    height: 200px;
  2541.    width: 100%;
  2542.    position: relative;
  2543.  }
  2544.  
  2545.  .wave-body-template--17173043150926__ss_waves_HGjQfz svg {
  2546.    width: 100%;
  2547.    height: 100%;
  2548.    display: block;
  2549.    object-fit: cover;
  2550.    transform: rotate(180deg);
  2551.  }
  2552.  
  2553.  @media(min-width: 768px) {
  2554.  
  2555.    .section-template--17173043150926__ss_waves_HGjQfz {
  2556.      margin-top: 0px;
  2557.      margin-bottom: -80px;
  2558.    }
  2559.    
  2560.    .section-template--17173043150926__ss_waves_HGjQfz-settings {
  2561.      padding: 0 5rem;
  2562.      padding-top: 0px;
  2563.      padding-bottom: 0px;
  2564.      padding-left: 0rem;
  2565.      padding-right: 0rem;
  2566.    }
  2567.  }</style>
  2568.  
  2569. <div class="section-template--17173043150926__ss_waves_HGjQfz wave-template--17173043150926__ss_waves_HGjQfz" style="background-color:#fdfbf7;">
  2570.    <div class="section-template--17173043150926__ss_waves_HGjQfz-settings">
  2571.      <div class="wave-body-template--17173043150926__ss_waves_HGjQfz">
  2572.        
  2573.        <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">
  2574.          <defs>
  2575.           <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" />
  2576.          
  2577.             <path id="motionpath1" d="M -250 0 0 0" />
  2578.          
  2579.          </defs>
  2580.          <g >
  2581.           <use xlink:href="#wavepath1" y="100" fill="#ffcfdb">
  2582.          
  2583.             <animateMotion
  2584.              dur="5s"
  2585.              repeatCount="indefinite">
  2586.              <mpath xlink:href="#motionpath1" />
  2587.             </animateMotion>
  2588.          
  2589.           </use>
  2590.          </g>
  2591.        </svg>
  2592.        
  2593.      </div>
  2594.    </div>
  2595. </div>
  2596.  
  2597. </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;">
  2598.  <div class='jdgm-carousel-wrapper'>
  2599.      <div class="jdgm-carousel-title-and-link">
  2600.        <h2 class='jdgm-carousel-title'>Let customers speak for us</h2>
  2601.        <span class="jdgm-all-reviews-rating-wrapper" href="javascript:void(0)">
  2602.          <span style="display:block" data-score='4.60' class='jdgm-all-reviews-rating' aria-label='4.60 stars' tabindex='0' role='img'></span>
  2603.          <span style="display: block" class='jdgm-carousel-number-of-reviews' data-number-of-reviews='439'>
  2604.            from 439 reviews
  2605.          </span>
  2606.        </span>
  2607.      </div>
  2608.    <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)}
  2609. </style> <style>  </style> <div class='jdgm-carousel__item-container'> <div class='jdgm-carousel__item-wrapper'><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 class='jdgm-carousel-item ' data-review-id='ffede754-94de-40df-a8d8-f67fa418ff34'> <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'>Amazing Results! ✨</div> <div class='jdgm-carousel-item__review-body'><p>I’ve been using this LED mask for two weeks, and my skin feels smoother and more radiant! Love the glow! 💖</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Aisha R. </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 class='jdgm-carousel-item ' data-review-id='edcb4728-bb9b-45d3-8ce8-253c55b4d886'> <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'>Love the laser technology!</div> <div class='jdgm-carousel-item__review-body'><p>This epilator is so effective! I’ve been using it for a few weeks, and it’s made hair removal so much easier. The laser technology is a game-changer!</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Maryam Al-Suwaidi </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/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> </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>
  2610.  </div>
  2611. </div>
  2612.  
  2613.  
  2614. </div>
  2615. </div>
  2616.  
  2617.  
  2618. </section><div id="shopify-section-template--17173043150926__ss_waves_XRYQrp" class="shopify-section"><style data-shopify>.section-template--17173043150926__ss_waves_XRYQrp {
  2619.    margin-top: -75px;
  2620.    margin-bottom: 0px;
  2621.    overflow: hidden;
  2622.  }
  2623.  
  2624.  .section-template--17173043150926__ss_waves_XRYQrp-settings {
  2625.    margin: 0 auto;
  2626.    padding-top: 0px;
  2627.    padding-bottom: 0px;
  2628.    padding-left: 0rem;
  2629.    padding-right: 0rem;
  2630.  }
  2631.  
  2632.  .wave-body-template--17173043150926__ss_waves_XRYQrp {
  2633.    height: 200px;
  2634.    width: 100%;
  2635.    position: relative;
  2636.  }
  2637.  
  2638.  .wave-body-template--17173043150926__ss_waves_XRYQrp svg {
  2639.    width: 100%;
  2640.    height: 100%;
  2641.    display: block;
  2642.    object-fit: cover;
  2643.    transform: rotate(0deg);
  2644.  }
  2645.  
  2646.  @media(min-width: 768px) {
  2647.  
  2648.    .section-template--17173043150926__ss_waves_XRYQrp {
  2649.      margin-top: -100px;
  2650.      margin-bottom: 0px;
  2651.    }
  2652.    
  2653.    .section-template--17173043150926__ss_waves_XRYQrp-settings {
  2654.      padding: 0 5rem;
  2655.      padding-top: 0px;
  2656.      padding-bottom: 0px;
  2657.      padding-left: 0rem;
  2658.      padding-right: 0rem;
  2659.    }
  2660.  }</style>
  2661.  
  2662. <div class="section-template--17173043150926__ss_waves_XRYQrp wave-template--17173043150926__ss_waves_XRYQrp" style="background-color:#fdfbf7;">
  2663.    <div class="section-template--17173043150926__ss_waves_XRYQrp-settings">
  2664.      <div class="wave-body-template--17173043150926__ss_waves_XRYQrp">
  2665.        
  2666.        <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">
  2667.          <defs>
  2668.           <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" />
  2669.          
  2670.             <path id="motionpath1" d="M -250 0 0 0" />
  2671.          
  2672.          </defs>
  2673.          <g >
  2674.           <use xlink:href="#wavepath1" y="100" fill="#ffcfdb">
  2675.          
  2676.             <animateMotion
  2677.              dur="5s"
  2678.              repeatCount="indefinite">
  2679.              <mpath xlink:href="#motionpath1" />
  2680.             </animateMotion>
  2681.          
  2682.           </use>
  2683.          </g>
  2684.        </svg>
  2685.        
  2686.      </div>
  2687.    </div>
  2688. </div>
  2689.  
  2690. </div><section id="shopify-section-template--17173043150926__ss_text_block_wN6RNT" class="shopify-section section"><style data-shopify>.p {
  2691.    margin:0;
  2692.    padding:0;
  2693.  }
  2694.  
  2695.  .section-template--17173043150926__ss_text_block_wN6RNT-padding {
  2696.    max-width: 120rem;
  2697.    margin: 0 auto;
  2698.    padding: 0 1.5rem;
  2699.    padding-top: 27px;
  2700.    padding-bottom: 27px;
  2701.  }
  2702.  
  2703.  @media screen and (min-width: 750px) {
  2704.    .section-template--17173043150926__ss_text_block_wN6RNT-padding {
  2705.      padding: 0 5rem;
  2706.      padding-top: 36px;
  2707.      padding-bottom: 36px;
  2708.    }
  2709.  }
  2710.  
  2711.  .ss-text-wrapper {
  2712.    display:flex;
  2713.    justify-content:center;
  2714.  }
  2715.  
  2716.  .ss-content {
  2717.    text-align:center;
  2718.    width:100%;
  2719.  }
  2720.  
  2721.  .button-wrapper-text-block {
  2722.    
  2723.  }</style><div style="background-color:#ffcfdb;">
  2724.  <div class="page-width section-template--17173043150926__ss_text_block_wN6RNT-padding">
  2725.    <div class="ss-text-wrapper">
  2726.      <div class="ss-content">
  2727.        
  2728.          
  2729.              
  2730.                <style>
  2731.                  .countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA {
  2732.                    font-size: 24px;
  2733.                  }  
  2734.                  @media screen and (min-width: 750px) {
  2735.                    .countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA {
  2736.                      font-size: 28px;
  2737.                    }
  2738.                  }
  2739.                </style>
  2740.                <div
  2741.                  class="countdown-banner-heading-template--17173043150926__ss_text_block_wN6RNT-text_amJJrA"
  2742.                  style="
  2743.                    color: #2c2a6b;
  2744.                    line-height:1.3;
  2745.                    padding-bottom:10px;
  2746.                  "
  2747.                >
  2748.                  <p><strong>Our Best Selling Breast Pump</strong></p>
  2749.                </div>
  2750.              
  2751.              
  2752.            
  2753.        
  2754.      </div>
  2755.    </div>
  2756.  </div>
  2757. </div>
  2758.  
  2759.  
  2760.  
  2761.  
  2762.  
  2763. </section><section id="shopify-section-template--17173043150926__featured_product_bqCiyd" class="shopify-section section section-featured-product"><product-info
  2764.  data-section="template--17173043150926__featured_product_bqCiyd"
  2765.  data-product-id="7540982448206"
  2766.  data-update-url="false"
  2767.  data-url="/products/wearable-breast-pump-my376"
  2768.  
  2769. >
  2770.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-main-product.css?v=161818056142182136911736691108" rel="stylesheet" type="text/css" media="all" />
  2771.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-featured-product.css?v=92895955984512702041736691108" rel="stylesheet" type="text/css" media="all" />
  2772.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-accordion.css?v=7971072480289620591736691105" rel="stylesheet" type="text/css" media="all" />
  2773.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-price.css?v=70172745017360139101736691106" rel="stylesheet" type="text/css" media="all" />
  2774.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-deferred-media.css?v=14096082462203297471736691105" rel="stylesheet" type="text/css" media="all" />
  2775.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-rating.css?v=179577762467860590411736691106" rel="stylesheet" type="text/css" media="all" />
  2776.  <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-volume-pricing.css?v=111870094811454961941736691106" rel="stylesheet" type="text/css" media="all" />
  2777.  
  2778.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-product-variant-picker.css?v=101198305663325844211736691106" rel="stylesheet" type="text/css" media="all" />
  2779.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-swatch.css?v=6811383713633888781736691106" rel="stylesheet" type="text/css" media="all" />
  2780.    <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-swatch-input.css?v=61683592951238328641736691106" rel="stylesheet" type="text/css" media="all" />
  2781.  
  2782. <style data-shopify>.section-template--17173043150926__featured_product_bqCiyd-padding {
  2783.      padding-top: 0px;
  2784.      padding-bottom: 27px;
  2785.    }
  2786.  
  2787.    @media screen and (min-width: 750px) {
  2788.      .section-template--17173043150926__featured_product_bqCiyd-padding {
  2789.        padding-top: 0px;
  2790.        padding-bottom: 36px;
  2791.      }
  2792.    }</style><script src="//momdaughts.ae/cdn/shop/t/4/assets/product-info.js?v=149160427226008204701736691107" defer="defer"></script>
  2793.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/show-more.js?v=135784227224860024771736691108" defer="defer"></script>
  2794.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/price-per-item.js?v=20223165687617204711736691107" defer="defer"></script>
  2795.  
  2796.  
  2797.  
  2798.  
  2799.  <section class="color-scheme-1 gradient">
  2800.    <div class="page-width section-template--17173043150926__featured_product_bqCiyd-padding">
  2801.      <div class="featured-product product product--medium grid grid--1-col gradient color-scheme-1 product--left isolate grid--2-col-tablet">
  2802.        <div class="grid__item product__media-wrapper">
  2803. <media-gallery
  2804.  id="MediaGallery-template--17173043150926__featured_product_bqCiyd"
  2805.  role="region"
  2806.  
  2807.  aria-label="Gallery Viewer"
  2808.  data-desktop-layout=""
  2809. >
  2810.  <div id="GalleryStatus-template--17173043150926__featured_product_bqCiyd" class="visually-hidden" role="status"></div>
  2811.  <slider-component id="GalleryViewer-template--17173043150926__featured_product_bqCiyd" class="slider-mobile-gutter">
  2812.    <a class="skip-to-content-link button visually-hidden quick-add-hidden" href="#ProductInfo-template--17173043150926__featured_product_bqCiyd">
  2813.      Skip to product information
  2814.    </a>
  2815.    <ul
  2816.      id="Slider-Gallery-template--17173043150926__featured_product_bqCiyd"
  2817.      class="product__media-list contains-media grid grid--peek list-unstyled slider slider--mobile"
  2818.      role="list"
  2819.    >
  2820. <li
  2821.            id="Slide-template--17173043150926__featured_product_bqCiyd-25430969876558"
  2822.            class="product__media-item grid__item slider__slide product__media-item--single is-active"
  2823.            data-media-id="template--17173043150926__featured_product_bqCiyd-25430969876558"
  2824.          >
  2825.  
  2826. <div
  2827.  class="product-media-container media-type-image media-fit-contain global-media-settings gradient constrain-height"
  2828.  style="--ratio: 1.0; --preview-ratio: 1.0;"
  2829. >
  2830.  <modal-opener
  2831.    class="product__modal-opener product__modal-opener--image"
  2832.    data-modal="#ProductModal-template--17173043150926__featured_product_bqCiyd"
  2833.  >
  2834.    <span
  2835.      class="product__media-icon motion-reduce quick-add-hidden product__media-icon--lightbox"
  2836.      aria-hidden="true"
  2837.    >
  2838.      
  2839.          <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>
  2840. </span>
  2841.      
  2842.    </span>
  2843.  
  2844. <div class="loading__spinner hidden">
  2845.  <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>
  2846.  
  2847. </div>
  2848. <div class="product__media media media--transparent">
  2849.      <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)">
  2850.    </div>
  2851.    <button
  2852.      class="product__media-toggle quick-add-hidden product__media-zoom-lightbox"
  2853.      type="button"
  2854.      aria-haspopup="dialog"
  2855.      data-media-id="25430969876558"
  2856.    >
  2857.      <span class="visually-hidden">
  2858.        Open media 1 in modal
  2859.      </span>
  2860.    </button>
  2861.  </modal-opener></div>
  2862.  
  2863.          </li>
  2864.          
  2865.          
  2866.          
  2867.          
  2868.          
  2869.          
  2870.          </ul>
  2871.    <div class="slider-buttons quick-add-hidden small-hide">
  2872.      <button
  2873.        type="button"
  2874.        class="slider-button slider-button--prev"
  2875.        name="previous"
  2876.        aria-label="Slide left"
  2877.      >
  2878.        <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>
  2879. </span>
  2880.      </button>
  2881.      <div class="slider-counter caption">
  2882.        <span class="slider-counter--current">1</span>
  2883.        <span aria-hidden="true"> / </span>
  2884.        <span class="visually-hidden">of</span>
  2885.        <span class="slider-counter--total">8</span>
  2886.      </div>
  2887.      <button
  2888.        type="button"
  2889.        class="slider-button slider-button--next"
  2890.        name="next"
  2891.        aria-label="Slide right"
  2892.      >
  2893.        <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>
  2894. </span>
  2895.      </button>
  2896.    </div>
  2897.  </slider-component></media-gallery>
  2898.  
  2899. </div>
  2900.        <div class="product__info-wrapper grid__item">
  2901.          <section
  2902.            id="ProductInfo-template--17173043150926__featured_product_bqCiyd"
  2903.            class="product__info-container"
  2904.            data-section="template--17173043150926__featured_product_bqCiyd"
  2905.            data-url="/products/wearable-breast-pump-my376"
  2906.          ><p
  2907.                    class="product__text inline-richtext caption-with-letter-spacing"
  2908.                    
  2909.                  >MomDaughts</p><h2 class="product__title h2" >MomDaughts Wearable Breast Pump MY-376
  2910. </h2><div id="price-template--17173043150926__featured_product_bqCiyd" role="status" >
  2911. <div
  2912.    class="
  2913.      price price--large price--on-sale price--show-badge"
  2914.  >
  2915.    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
  2916.          <span class="price-item price-item--regular">
  2917.            AED. 149.00
  2918.          </span></div>
  2919.      <div class="price__sale">
  2920.          <span class="visually-hidden visually-hidden--inline">Regular price</span>
  2921.          <span>
  2922.            <s class="price-item price-item--regular">
  2923.              
  2924.                AED. 229.00
  2925.              
  2926.            </s>
  2927.          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
  2928.        <span class="price-item price-item--sale price-item--last">
  2929.          AED. 149.00
  2930.        </span>
  2931.      </div>
  2932.      <small class="unit-price caption hidden">
  2933.        <span class="visually-hidden">Unit price</span>
  2934.        <span class="price-item price-item--last">
  2935.          <span></span>
  2936.          <span aria-hidden="true">/</span>
  2937.          <span class="visually-hidden">&nbsp;per&nbsp;</span>
  2938.          <span>
  2939.          </span>
  2940.        </span>
  2941.      </small>
  2942.    </div><span class="badge price__badge-sale color-scheme-3">
  2943.        Sale
  2944.      </span>
  2945.  
  2946.      <span class="badge price__badge-sold-out color-scheme-2">
  2947.        Sold out
  2948.      </span></div>
  2949.  
  2950. </div><div class="product__tax caption rte"><a href="/policies/shipping-policy">Shipping</a> calculated at checkout.
  2951. </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">
  2952.                        
  2953. <input type="hidden" name="product-id" value="7540982448206" /><input type="hidden" name="section-id" value="template--17173043150926__featured_product_bqCiyd" /></form></div>
  2954. <variant-selects
  2955.    id="variant-selects-template--17173043150926__featured_product_bqCiyd"
  2956.    data-section="template--17173043150926__featured_product_bqCiyd"
  2957.    
  2958.  ><fieldset class="js product-form__input product-form__input--pill">
  2959.          <legend class="form__label">Type</legend>
  2960.          
  2961. <input
  2962.      type="radio"
  2963.      id="template--17173043150926__featured_product_bqCiyd-1-0"
  2964.      name="Type-1
  2965. "
  2966.      value="Single"
  2967.      form="product-form-template--17173043150926__featured_product_bqCiyd"
  2968.      
  2969.        checked
  2970.      
  2971.      
  2972.      data-product-url=""
  2973.    data-option-value-id="2815601016910"
  2974.    >
  2975.    <label for="template--17173043150926__featured_product_bqCiyd-1-0">
  2976.      Single<span class="visually-hidden label-unavailable">Variant sold out or unavailable</span>
  2977.    </label><input
  2978.      type="radio"
  2979.      id="template--17173043150926__featured_product_bqCiyd-1-1"
  2980.      name="Type-1
  2981. "
  2982.      value="Double"
  2983.      form="product-form-template--17173043150926__featured_product_bqCiyd"
  2984.      
  2985.      
  2986.      data-product-url=""
  2987.    data-option-value-id="2815601049678"
  2988.    >
  2989.    <label for="template--17173043150926__featured_product_bqCiyd-1-1">
  2990.      Double<span class="visually-hidden label-unavailable">Variant sold out or unavailable</span>
  2991.    </label>
  2992.        </fieldset><script type="application/json" data-selected-variant>
  2993.      {"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":[]}
  2994.    </script>
  2995.  </variant-selects>
  2996. <div
  2997.                    id="Quantity-Form-template--17173043150926__featured_product_bqCiyd"
  2998.                    class="product-form__input product-form__quantity product-form__quantity-top"
  2999.                    
  3000.                  >
  3001.                    
  3002.                    
  3003.  
  3004.                    <label class="quantity__label form__label" for="Quantity-template--17173043150926__featured_product_bqCiyd">
  3005.                      Quantity
  3006.                      <span class="quantity__rules-cart hidden">
  3007.  
  3008. <div class="loading__spinner hidden">
  3009.  <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>
  3010.  
  3011. </div>
  3012. <span
  3013.                          >(<span class="quantity-cart">0</span> in cart)</span
  3014.                        >
  3015.                      </span>
  3016.                    </label>
  3017.                    <div class="price-per-item__container">
  3018.                      <quantity-input class="quantity">
  3019.                        <button class="quantity__button" name="minus" type="button">
  3020.                          <span class="visually-hidden">Decrease quantity for MomDaughts Wearable Breast Pump MY-376</span>
  3021.                          <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>
  3022. </span>
  3023.                        </button>
  3024.                        <input
  3025.                          class="quantity__input"
  3026.                          type="number"
  3027.                          name="quantity"
  3028.                          id="Quantity-template--17173043150926__featured_product_bqCiyd"
  3029.                          data-cart-quantity="0"
  3030.                          data-min="1"
  3031.                          min="1"
  3032.                          
  3033.                          step="1"
  3034.                          value="1"
  3035.                          form="product-form-template--17173043150926__featured_product_bqCiyd"
  3036.                        >
  3037.                        <button class="quantity__button" name="plus" type="button">
  3038.                          <span class="visually-hidden">Increase quantity for MomDaughts Wearable Breast Pump MY-376</span>
  3039.                          <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>
  3040. </span>
  3041.                        </button>
  3042.                      </quantity-input></div>
  3043.                    <div class="quantity__rules caption" id="Quantity-Rules-template--17173043150926__featured_product_bqCiyd"></div></div>
  3044. <div ><product-form
  3045.      class="product-form"
  3046.      data-hide-errors="false"
  3047.      data-section-id="template--17173043150926__featured_product_bqCiyd"
  3048.    >
  3049.      <div class="product-form__error-message-wrapper" role="alert" hidden>
  3050.        <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>
  3051. </span>
  3052.        <span class="product-form__error-message"></span>
  3053.      </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
  3054.          type="hidden"
  3055.          name="id"
  3056.          value="42149838651470"
  3057.          
  3058.          class="product-variant-id"
  3059.        ><div class="product-form__buttons"><button
  3060.            id="ProductSubmitButton-template--17173043150926__featured_product_bqCiyd"
  3061.            type="submit"
  3062.            name="add"
  3063.            class="product-form__submit button button--full-width button--secondary"
  3064.            
  3065.          >
  3066.            <span>Add to cart
  3067. </span>
  3068.  
  3069. <div class="loading__spinner hidden">
  3070.  <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>
  3071.  
  3072. </div>
  3073. </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>
  3074. </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>
  3075.  
  3076. <script src="//momdaughts.ae/cdn/shop/t/4/assets/share.js?v=13024540447964430191736691108" defer="defer"></script>
  3077.  
  3078. <share-button id="Share-template--17173043150926__featured_product_bqCiyd" class="share-button quick-add-hidden" >
  3079.  <button class="share-button__button hidden">
  3080.    <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>
  3081. </span>
  3082.    Share
  3083.  </button>
  3084.  <details id="Details-share_w44jBg-template--17173043150926__featured_product_bqCiyd">
  3085.    <summary class="share-button__button">
  3086.      <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>
  3087. </span>
  3088.      Share
  3089.    </summary>
  3090.    <div class="share-button__fallback motion-reduce">
  3091.      <div class="field">
  3092.        <span id="ShareMessage-template--17173043150926__featured_product_bqCiyd" class="share-button__message hidden" role="status"> </span>
  3093.        <input
  3094.          type="text"
  3095.          class="field__input"
  3096.          id="ShareUrl-template--17173043150926__featured_product_bqCiyd"
  3097.          value="https://momdaughts.ae/products/wearable-breast-pump-my376"
  3098.          placeholder="Link"
  3099.          onclick="this.select();"
  3100.          readonly
  3101.        >
  3102.        <label class="field__label" for="ShareUrl-template--17173043150926__featured_product_bqCiyd">Link</label>
  3103.      </div>
  3104.      <button class="share-button__close hidden">
  3105.        <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>
  3106. </span>
  3107.        <span class="visually-hidden">Close share</span>
  3108.      </button>
  3109.      <button class="share-button__copy">
  3110.        <span class="svg-wrapper"><svg
  3111.  class="icon icon-clipboard"
  3112.  width="11"
  3113.  height="13"
  3114.  fill="none"
  3115.  xmlns="http://www.w3.org/2000/svg"
  3116.  aria-hidden="true"
  3117.  focusable="false"
  3118.  viewBox="0 0 11 13"
  3119. >
  3120.  <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"/>
  3121. </svg>
  3122. </span>
  3123.        <span class="visually-hidden">Copy link</span>
  3124.      </button>
  3125.    </div>
  3126.  </details>
  3127. </share-button>
  3128.  
  3129. <a
  3130.              
  3131.                href="/products/wearable-breast-pump-my376"
  3132.              
  3133.              class="link product__view-details animate-arrow"
  3134.            >
  3135.              View full details
  3136. <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>
  3137. </a>
  3138.          </section>
  3139.        </div>
  3140.      </div>
  3141.      
  3142.  
  3143. <product-modal id="ProductModal-template--17173043150926__featured_product_bqCiyd" class="product-media-modal media-modal">
  3144.  <div
  3145.    class="product-media-modal__dialog color-scheme-1 gradient"
  3146.    role="dialog"
  3147.    aria-label="Media gallery"
  3148.    aria-modal="true"
  3149.    tabindex="-1"
  3150.  >
  3151.    <button
  3152.      id="ModalClose-template--17173043150926__featured_product_bqCiyd"
  3153.      type="button"
  3154.      class="product-media-modal__toggle"
  3155.      aria-label="Close"
  3156.    >
  3157.      <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>
  3158.  
  3159.    </button>
  3160.  
  3161.    <div
  3162.      class="product-media-modal__content color-scheme-1 gradient"
  3163.      role="document"
  3164.      aria-label="Media gallery"
  3165.      tabindex="0"
  3166.    >
  3167. <img
  3168.    class="global-media-settings global-media-settings--no-shadow"
  3169.    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
  3170.    "
  3171.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3172.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-581295.jpg?v=1738948356&width=1445"
  3173.    alt="MomDaughts Wearable Breast Pump MY-376."
  3174.    loading="lazy"
  3175.    width="1100"
  3176.    height="1100"
  3177.    data-media-id="25430969876558"
  3178.  >
  3179. <img
  3180.    class="global-media-settings global-media-settings--no-shadow"
  3181.    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
  3182.    "
  3183.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3184.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-664351.jpg?v=1739089853&width=1445"
  3185.    alt="MomDaughts Wearable Breast Pump MY-376."
  3186.    loading="lazy"
  3187.    width="1100"
  3188.    height="1100"
  3189.    data-media-id="25393985323086"
  3190.  >
  3191. <img
  3192.    class="global-media-settings global-media-settings--no-shadow"
  3193.    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
  3194.    "
  3195.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3196.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-969138.png?v=1741444941&width=1445"
  3197.    alt="MomDaughts Wearable Breast Pump MY - 376 - MomDaughts UAE"
  3198.    loading="lazy"
  3199.    width="1100"
  3200.    height="1100"
  3201.    data-media-id="25528103469134"
  3202.  >
  3203. <img
  3204.    class="global-media-settings global-media-settings--no-shadow"
  3205.    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
  3206.    "
  3207.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3208.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-226840.jpg?v=1739571233&width=1445"
  3209.    alt="MomDaughts Wearable Breast Pump MY-376."
  3210.    loading="lazy"
  3211.    width="1100"
  3212.    height="1100"
  3213.    data-media-id="25406068162638"
  3214.  >
  3215. <img
  3216.    class="global-media-settings global-media-settings--no-shadow"
  3217.    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
  3218.    "
  3219.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3220.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-420831.webp?v=1739571233&width=1445"
  3221.    alt="MomDaughts Wearable Breast Pump MY-376."
  3222.    loading="lazy"
  3223.    width="1100"
  3224.    height="1100"
  3225.    data-media-id="25383102840910"
  3226.  >
  3227. <img
  3228.    class="global-media-settings global-media-settings--no-shadow"
  3229.    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
  3230.    "
  3231.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3232.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-809378.jpg?v=1739571233&width=1445"
  3233.    alt="MomDaughts Wearable Breast Pump MY-376."
  3234.    loading="lazy"
  3235.    width="1100"
  3236.    height="1100"
  3237.    data-media-id="25406146216014"
  3238.  >
  3239. <img
  3240.    class="global-media-settings global-media-settings--no-shadow"
  3241.    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
  3242.    "
  3243.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3244.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-344200.jpg?v=1739571233&width=1445"
  3245.    alt="MomDaughts Wearable Breast Pump MY-376."
  3246.    loading="lazy"
  3247.    width="1100"
  3248.    height="1100"
  3249.    data-media-id="25406036410446"
  3250.  >
  3251. <img
  3252.    class="global-media-settings global-media-settings--no-shadow"
  3253.    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
  3254.    "
  3255.    sizes="(min-width: 750px) calc(100vw - 22rem), 1100px"
  3256.    src="//momdaughts.ae/cdn/shop/files/momdaughts-wearable-breast-pump-my-376-415261.png?v=1739571233&width=1445"
  3257.    alt="MomDaughts Wearable Breast Pump MY-376."
  3258.    loading="lazy"
  3259.    width="1100"
  3260.    height="1099"
  3261.    data-media-id="25383102873678"
  3262.  ></div>
  3263.  </div>
  3264. </product-modal>
  3265.  
  3266.    </div>
  3267.  </section>
  3268.  
  3269.  <script src="//momdaughts.ae/cdn/shop/t/4/assets/product-form.js?v=82553749319723712671736691107" defer="defer"></script>
  3270. <script type="application/ld+json">
  3271.    {"@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"}
  3272.  </script>
  3273.  
  3274.  
  3275.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/product-modal.js?v=116616134454508949461736691107" defer="defer"></script>
  3276.    <script src="//momdaughts.ae/cdn/shop/t/4/assets/media-gallery.js?v=53998976194532824491736691107" defer="defer"></script>
  3277.  
  3278. </product-info>
  3279.  
  3280.  
  3281. </section><div id="shopify-section-template--17173043150926__ss_simple_faq_hznGzx" class="shopify-section"><div class="rb-faq-shopify-section">
  3282.    <h1 style="text-align: center; padding: 20px 20px 0px 20px;"> FAQs </h1>
  3283.    <div class="rb-faq-container">
  3284.        
  3285.        <div class="rb-faq-container-item">
  3286.            <input style="display:none!important;" type="checkbox" id="tab1" class="tab-toggle">
  3287.            <label for="tab1" class="rb-faq-question">How long should I breastfeed my baby?</label>
  3288.            <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>
  3289.        </div>
  3290.        
  3291.        <div class="rb-faq-container-item">
  3292.            <input style="display:none!important;" type="checkbox" id="tab2" class="tab-toggle">
  3293.            <label for="tab2" class="rb-faq-question">Are your products safe for use during pregnancy and breastfeeding?</label>
  3294.            <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>
  3295.        </div>
  3296.        
  3297.        <div class="rb-faq-container-item">
  3298.            <input style="display:none!important;" type="checkbox" id="tab3" class="tab-toggle">
  3299.            <label for="tab3" class="rb-faq-question">How can I get more details about the product and its usage?</label>
  3300.            <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>
  3301.        </div>
  3302.        
  3303.        <div class="rb-faq-container-item">
  3304.            <input style="display:none!important;" type="checkbox" id="tab4" class="tab-toggle">
  3305.            <label for="tab4" class="rb-faq-question">Why is breastfeeding crucial for babies?</label>
  3306.            <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>
  3307.        </div>
  3308.        
  3309.        <div class="rb-faq-container-item">
  3310.            <input style="display:none!important;" type="checkbox" id="tab5" class="tab-toggle">
  3311.            <label for="tab5" class="rb-faq-question">Does the pump work for larger breasts?</label>
  3312.            <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>
  3313.        </div>
  3314.        
  3315.    </div>
  3316.  </div>
  3317.  
  3318.  
  3319.  <style data-shopify>
  3320.  
  3321.    .rb-faq-answer a {
  3322.      color: inherit;
  3323.      text-decoration: inherit;
  3324.    }
  3325.  
  3326.    .rb-faq-shopify-section {
  3327.      padding-right:30px;
  3328.      padding-left:30px;
  3329.      margin-bottom:50px
  3330.    }
  3331.  
  3332.    .rb-faq-container {
  3333.        margin:auto;
  3334.        max-width:1000px;
  3335.        margin-top:20px;
  3336.    }
  3337.  
  3338.    .rb-faq-container-item {
  3339.          border-radius: 8px;
  3340.          margin-bottom:10px;
  3341.          overflow: hidden;
  3342.    }
  3343.  
  3344.    .rb-faq-question::after{
  3345.          color: #ffffff;
  3346.          content: '\276F';
  3347.          transition: all 0.2s ease;
  3348.      }
  3349.  
  3350.    .rb-faq-question {
  3351.        border-radius: 8px;
  3352.        display:flex !important;
  3353.        justify-content: space-between;
  3354.        background-color:#2c2a6b;
  3355.        padding:15px 20px;
  3356.        font-weight: bold;
  3357.        color: #ffffff;
  3358.        font-size: 1.5rem;
  3359.    }
  3360.  
  3361.    .rb-faq-question:hover {
  3362.          color: #ffcfdb;
  3363.      }
  3364.    .rb-faq-answer {
  3365.          padding: 0px 20px;
  3366.          position: relative;
  3367.          width: 100%;
  3368.          height: 0;
  3369.          opacity: 0;
  3370.          overflow: hidden;
  3371.          visibility: hidden;
  3372.          will-change: height;
  3373.          transform: translateY(25px);
  3374.          transition: all .2s ease;
  3375.          -webkit-backface-visibility: hidden;
  3376.          backface-visibility: hidden;
  3377.    }
  3378.    .tab-toggle:checked ~ .rb-faq-answer {
  3379.      transform: translateY(0);
  3380.      padding: 15px 20px;
  3381.      height:auto;
  3382.      opacity: 1;
  3383.      overflow: unset;
  3384.      visibility: visible;
  3385.      transition: all .3s ease,opacity 1s ease,height .3s ease;
  3386.      color: #000000;
  3387.      background-color: #ffffff;
  3388.    }
  3389.    .tab-toggle:checked ~ .rb-faq-question::after {
  3390.          transform: rotate(90deg);
  3391.    }
  3392.    .tab-toggle{
  3393.          display:none;
  3394.    }
  3395.  </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" />
  3396. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-card.css?v=120341546515895839841736691105" rel="stylesheet" type="text/css" media="all" />
  3397. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-article-card.css?v=47105078945762260691736691105" rel="stylesheet" type="text/css" media="all" />
  3398. <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-featured-blog.css?v=36629982431115873811736691108" rel="stylesheet" type="text/css" media="all" />
  3399. <style data-shopify>.section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-padding {
  3400.    padding-top: 15px;
  3401.    padding-bottom: 15px;
  3402.  }
  3403.  
  3404.  @media screen and (min-width: 750px) {
  3405.    .section-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-padding {
  3406.      padding-top: 20px;
  3407.      padding-bottom: 20px;
  3408.    }
  3409.  }</style><div class="blog color-scheme-1 gradient">
  3410.  <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">
  3411.        <h2
  3412.          id="SectionHeading-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804"
  3413.          class="blog__title inline-richtext h2"
  3414.          
  3415.        >
  3416.          Break the taboo! Read our blogs
  3417.        </h2></div><slider-component class="slider-mobile-gutter">
  3418.      <ul
  3419.        id="Slider-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804"
  3420.        class="blog__posts articles-wrapper contains-card contains-card--article grid grid--peek grid--2-col-tablet grid--2-col-desktop slider slider--mobile"
  3421.        role="list"
  3422.      ><li
  3423.              id="Slide-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-1"
  3424.              class="blog__post grid__item article slider__slide slider__slide--full-width"
  3425.              
  3426.            >
  3427.              
  3428. <div class="article-card-wrapper card-wrapper underline-links-hover">
  3429.    
  3430.    <div
  3431.      class="
  3432.        card article-card
  3433.        card--card
  3434.        
  3435.         card--media
  3436.         color-scheme-2 gradient
  3437.        
  3438.      "
  3439.      style="--ratio-percent: 60.24096385542169%;"
  3440.    >
  3441.      <div
  3442.        class="card__inner  ratio"
  3443.        style="--ratio-percent: 60.24096385542169%;"
  3444.      ><div class="article-card__image-wrapper card__media">
  3445.            <div
  3446.              class="article-card__image media media--hover-effect"
  3447.              
  3448.            >
  3449.              
  3450.              <img
  3451.                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
  3452.                "
  3453.                src="//momdaughts.ae/cdn/shop/articles/the-affordable-wearable-breast-pump-every-mom-needs-582729.jpg?v=1738948376&width=533"
  3454.                sizes="(min-width: 1200px) 550px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
  3455.                alt="The Affordable Wearable Breast Pump Every Mom Needs - MomDaughts UAE"
  3456.                class="motion-reduce"
  3457.                
  3458.                  loading="lazy"
  3459.                
  3460.                width="1920"
  3461.                height="1080"
  3462.              >
  3463.              
  3464.            </div>
  3465.          </div><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 class="card__content">
  3476.        <div class="card__information">
  3477.          <h3 class="card__heading h2">
  3478.            <a href="/blogs/blogs/the-affordable-wearable-breast-pump-every-mom-needs" class="full-unstyled-link">
  3479.              The Affordable Wearable Breast Pump Every Mom N...
  3480.            </a>
  3481.          </h3>
  3482.          <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...
  3483. </p><div class="article-card__footer"></div></div></div>
  3484.    </div>
  3485.  </div>
  3486.            </li><li
  3487.              id="Slide-template--17173043150926__a75dc9f5-36b2-4307-8fba-bc017b670804-2"
  3488.              class="blog__post grid__item article slider__slide slider__slide--full-width"
  3489.              
  3490.            >
  3491.              
  3492. <div class="article-card-wrapper card-wrapper underline-links-hover">
  3493.    
  3494.    <div
  3495.      class="
  3496.        card article-card
  3497.        card--card
  3498.        
  3499.         card--media
  3500.         color-scheme-2 gradient
  3501.        
  3502.      "
  3503.      style="--ratio-percent: 60.24096385542169%;"
  3504.    >
  3505.      <div
  3506.        class="card__inner  ratio"
  3507.        style="--ratio-percent: 60.24096385542169%;"
  3508.      ><div class="article-card__image-wrapper card__media">
  3509.            <div
  3510.              class="article-card__image media media--hover-effect"
  3511.              
  3512.            >
  3513.              
  3514.              <img
  3515.                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
  3516.                "
  3517.                src="//momdaughts.ae/cdn/shop/articles/the-ultimate-guide-to-ipl-laser-hair-removal-at-home-528584.jpg?v=1738948374&width=533"
  3518.                sizes="(min-width: 1200px) 550px, (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)"
  3519.                alt="The Ultimate Guide to IPL Laser Hair Removal at Home - MomDaughts UAE"
  3520.                class="motion-reduce"
  3521.                
  3522.                  loading="lazy"
  3523.                
  3524.                width="1920"
  3525.                height="1080"
  3526.              >
  3527.              
  3528.            </div>
  3529.          </div><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 class="card__content">
  3540.        <div class="card__information">
  3541.          <h3 class="card__heading h2">
  3542.            <a href="/blogs/blogs/the-ultimate-guide-to-ipl-laser-hair-removal-at-home" class="full-unstyled-link">
  3543.              The Ultimate Guide to IPL Laser Hair Removal at...
  3544.            </a>
  3545.          </h3>
  3546.          <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...
  3547. </p><div class="article-card__footer"></div></div></div>
  3548.    </div>
  3549.  </div>
  3550.            </li></ul><div class="slider-buttons medium-hide">
  3551.          <button
  3552.            type="button"
  3553.            class="slider-button slider-button--prev"
  3554.            name="previous"
  3555.            aria-label="Slide left"
  3556.          >
  3557.            <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>
  3558. </span>
  3559.          </button>
  3560.          <div class="slider-counter caption">
  3561.            <span class="slider-counter--current">1</span>
  3562.            <span aria-hidden="true"> / </span>
  3563.            <span class="visually-hidden">of</span>
  3564.            <span class="slider-counter--total">2</span>
  3565.          </div>
  3566.          <button
  3567.            type="button"
  3568.            class="slider-button slider-button--next"
  3569.            name="next"
  3570.            aria-label="Slide right"
  3571.          >
  3572.            <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>
  3573. </span>
  3574.          </button>
  3575.        </div></slider-component></div>
  3576. </div>
  3577.  
  3578.  
  3579. </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" />
  3580. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-card.css?v=120341546515895839841736691105" rel="stylesheet" type="text/css" media="all" />
  3581. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-slider.css?v=14039311878856620671736691106" rel="stylesheet" type="text/css" media="all" />
  3582. <style data-shopify>.section-template--17173043150926__collection-list-padding {
  3583.    padding-top: 15px;
  3584.    padding-bottom: 15px;
  3585.  }
  3586.  
  3587.  @media screen and (min-width: 750px) {
  3588.    .section-template--17173043150926__collection-list-padding {
  3589.      padding-top: 20px;
  3590.      padding-bottom: 20px;
  3591.    }
  3592.  }</style><div class="color-scheme-1 gradient">
  3593.  <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">
  3594.      <ul
  3595.        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"
  3596.        id="Slider-template--17173043150926__collection-list"
  3597.        role="list"
  3598.      ><li
  3599.            id="Slide-template--17173043150926__collection-list-1"
  3600.            class="collection-list__item grid__item slider__slide"
  3601.            
  3602.            
  3603.          >
  3604. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3605.  <div
  3606.    class="
  3607.      card
  3608.      card--card
  3609.       card--media
  3610.       color-scheme-2 gradient
  3611.      
  3612.      
  3613.    "
  3614.    style="--ratio-percent: 100.0%;"
  3615.  >
  3616.    <div
  3617.      class="card__inner  ratio"
  3618.      style="--ratio-percent: 100.0%;"
  3619.    ><div class="card__media">
  3620.          <div class="media media--transparent media--hover-effect">
  3621.            <img
  3622.              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
  3623.              "
  3624.              src="//momdaughts.ae/cdn/shop/collections/breast-pumps-971699.jpg?v=1738948353&width=1500"
  3625.              sizes="
  3626.                (min-width: 1200px) 366px,
  3627.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3628.                calc(100vw - 3rem)
  3629.              "
  3630.              alt="Breast Pumps - MomDaughts UAE"
  3631.              height="1080"
  3632.              width="1080"
  3633.              loading="lazy"
  3634.              class="motion-reduce"
  3635.            >
  3636.          </div>
  3637.        </div><div class="card__content">
  3638.          <div class="card__information">
  3639.            <h3 class="card__heading">
  3640.              <a
  3641.                
  3642.                  href="/collections/breast-pumps"
  3643.                
  3644.                class="full-unstyled-link"
  3645.              >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>
  3646. </span>
  3647.              </a>
  3648.            </h3></div>
  3649.        </div></div><div class="card__content">
  3650.        <div class="card__information">
  3651.          <h3 class="card__heading">
  3652.            <a
  3653.              
  3654.                href="/collections/breast-pumps"
  3655.              
  3656.              class="full-unstyled-link"
  3657.            >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>
  3658. </span>
  3659.            </a>
  3660.          </h3></div>
  3661.      </div></div>
  3662. </div>
  3663.  
  3664.          </li><li
  3665.            id="Slide-template--17173043150926__collection-list-2"
  3666.            class="collection-list__item grid__item slider__slide"
  3667.            
  3668.            
  3669.          >
  3670. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3671.  <div
  3672.    class="
  3673.      card
  3674.      card--card
  3675.       card--media
  3676.       color-scheme-2 gradient
  3677.      
  3678.      
  3679.    "
  3680.    style="--ratio-percent: 100.0%;"
  3681.  >
  3682.    <div
  3683.      class="card__inner  ratio"
  3684.      style="--ratio-percent: 100.0%;"
  3685.    ><div class="card__media">
  3686.          <div class="media media--transparent media--hover-effect">
  3687.            <img
  3688.              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
  3689.              "
  3690.              src="//momdaughts.ae/cdn/shop/collections/personal-care-774908.jpg?v=1738948356&width=1500"
  3691.              sizes="
  3692.                (min-width: 1200px) 366px,
  3693.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3694.                calc(100vw - 3rem)
  3695.              "
  3696.              alt="Personal Care - MomDaughts UAE"
  3697.              height="1080"
  3698.              width="1080"
  3699.              loading="lazy"
  3700.              class="motion-reduce"
  3701.            >
  3702.          </div>
  3703.        </div><div class="card__content">
  3704.          <div class="card__information">
  3705.            <h3 class="card__heading">
  3706.              <a
  3707.                
  3708.                  href="/collections/personal-care"
  3709.                
  3710.                class="full-unstyled-link"
  3711.              >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>
  3712. </span>
  3713.              </a>
  3714.            </h3></div>
  3715.        </div></div><div class="card__content">
  3716.        <div class="card__information">
  3717.          <h3 class="card__heading">
  3718.            <a
  3719.              
  3720.                href="/collections/personal-care"
  3721.              
  3722.              class="full-unstyled-link"
  3723.            >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>
  3724. </span>
  3725.            </a>
  3726.          </h3></div>
  3727.      </div></div>
  3728. </div>
  3729.  
  3730.          </li><li
  3731.            id="Slide-template--17173043150926__collection-list-3"
  3732.            class="collection-list__item grid__item slider__slide"
  3733.            
  3734.            
  3735.          >
  3736. <div class="card-wrapper animate-arrow collection-card-wrapper">
  3737.  <div
  3738.    class="
  3739.      card
  3740.      card--card
  3741.       card--media
  3742.       color-scheme-2 gradient
  3743.      
  3744.      
  3745.    "
  3746.    style="--ratio-percent: 100.0%;"
  3747.  >
  3748.    <div
  3749.      class="card__inner  ratio"
  3750.      style="--ratio-percent: 100.0%;"
  3751.    ><div class="card__media">
  3752.          <div class="media media--transparent media--hover-effect">
  3753.            <img
  3754.              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
  3755.              "
  3756.              src="//momdaughts.ae/cdn/shop/collections/menstrual-collection-489476.jpg?v=1738948354&width=1500"
  3757.              sizes="
  3758.                (min-width: 1200px) 366px,
  3759.                (min-width: 750px) calc((100vw - 10rem) / 2),
  3760.                calc(100vw - 3rem)
  3761.              "
  3762.              alt="Menstrual Collection - MomDaughts UAE"
  3763.              height="1080"
  3764.              width="1080"
  3765.              loading="lazy"
  3766.              class="motion-reduce"
  3767.            >
  3768.          </div>
  3769.        </div><div class="card__content">
  3770.          <div class="card__information">
  3771.            <h3 class="card__heading">
  3772.              <a
  3773.                
  3774.                  href="/collections/menstrual-cups"
  3775.                
  3776.                class="full-unstyled-link"
  3777.              >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>
  3778. </span>
  3779.              </a>
  3780.            </h3></div>
  3781.        </div></div><div class="card__content">
  3782.        <div class="card__information">
  3783.          <h3 class="card__heading">
  3784.            <a
  3785.              
  3786.                href="/collections/menstrual-cups"
  3787.              
  3788.              class="full-unstyled-link"
  3789.            >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>
  3790. </span>
  3791.            </a>
  3792.          </h3></div>
  3793.      </div></div>
  3794. </div>
  3795.  
  3796.          </li></ul><div class="slider-buttons">
  3797.          <button
  3798.            type="button"
  3799.            class="slider-button slider-button--prev"
  3800.            name="previous"
  3801.            aria-label="Slide left"
  3802.          >
  3803.            <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>
  3804. </span>
  3805.          </button>
  3806.          <div class="slider-counter caption">
  3807.            <span class="slider-counter--current">1</span>
  3808.            <span aria-hidden="true"> / </span>
  3809.            <span class="visually-hidden">of</span>
  3810.            <span class="slider-counter--total">3</span>
  3811.          </div>
  3812.          <button
  3813.            type="button"
  3814.            class="slider-button slider-button--next"
  3815.            name="next"
  3816.            aria-label="Slide right"
  3817.          >
  3818.            <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>
  3819. </span>
  3820.          </button>
  3821.        </div></slider-component><div
  3822.        class="center collection-list-view-all small-hide medium-hide"
  3823.        
  3824.      >
  3825.        <a
  3826.          href="/collections"
  3827.          class="button"
  3828.          id="ViewAllButton-template--17173043150926__collection-list"
  3829.          aria-labelledby="ViewAllButton-template--17173043150926__collection-list SectionHeading-template--17173043150926__collection-list"
  3830.        >View all</a>
  3831.      </div></div>
  3832. </div>
  3833.  
  3834.  
  3835. </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" />
  3836. <link href="//momdaughts.ae/cdn/shop/t/4/assets/newsletter-section.css?v=62410470717655853621736691107" rel="stylesheet" type="text/css" media="all" />
  3837. <style data-shopify>.section-template--17173043150926__newsletter-padding {
  3838.    padding-top: 15px;
  3839.    padding-bottom: 21px;
  3840.  }
  3841.  
  3842.  @media screen and (min-width: 750px) {
  3843.    .section-template--17173043150926__newsletter-padding {
  3844.      padding-top: 20px;
  3845.      padding-bottom: 28px;
  3846.    }
  3847.  }</style><div class="newsletter center ">
  3848.  <div class="newsletter__wrapper color-scheme-1 gradient content-container isolate content-container--full-width section-template--17173043150926__newsletter-padding"><h2
  3849.            class="inline-richtext h2"
  3850.            
  3851.            
  3852.          >
  3853.            Get Regular Updates via Email
  3854.          </h2><div
  3855.            class="newsletter__subheading rte"
  3856.            
  3857.            
  3858.          >
  3859.            <p>To get discounts and offers, join MomDaughts' email list now!</p>
  3860.          </div><div >
  3861.            <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="✓" />
  3862.              <input type="hidden" name="contact[tags]" value="newsletter">
  3863.              <div
  3864.                class="newsletter-form__field-wrapper"
  3865.                
  3866.              >
  3867.                <div class="field">
  3868.                  <input
  3869.                    id="NewsletterForm--template--17173043150926__newsletter"
  3870.                    type="email"
  3871.                    name="contact[email]"
  3872.                    class="field__input"
  3873.                    value=""
  3874.                    aria-required="true"
  3875.                    autocorrect="off"
  3876.                    autocapitalize="off"
  3877.                    autocomplete="email"
  3878.                    
  3879.                    placeholder="Email"
  3880.                    required
  3881.                  >
  3882.                  <label class="field__label" for="NewsletterForm--template--17173043150926__newsletter">
  3883.                    Email
  3884.                  </label>
  3885.                  <button
  3886.                    type="submit"
  3887.                    class="newsletter-form__button field__button"
  3888.                    name="commit"
  3889.                    id="Subscribe"
  3890.                    aria-label="Subscribe"
  3891.                  >
  3892.                    <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>
  3893. </span>
  3894.                  </button>
  3895.                </div></div></form>
  3896.          </div></div>
  3897. </div>
  3898.  
  3899.  
  3900. <style> #shopify-section-template--17173043150926__newsletter .newsletter-form__button {width: 48px; height: 48px;} </style></section>
  3901.    </main>
  3902.  
  3903.    <!-- BEGIN sections: footer-group -->
  3904. <div id="shopify-section-sections--17173044527182__footer" class="shopify-section shopify-section-group-footer-group">
  3905. <link href="//momdaughts.ae/cdn/shop/t/4/assets/section-footer.css?v=60318643098753476351736691108" rel="stylesheet" type="text/css" media="all" />
  3906. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-newsletter.css?v=4727253280200485261736691106" rel="stylesheet" type="text/css" media="all" />
  3907. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-menu.css?v=151968516119678728991736691106" rel="stylesheet" type="text/css" media="all" />
  3908. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-payment.css?v=69253961410771838501736691106" rel="stylesheet" type="text/css" media="all" />
  3909. <link href="//momdaughts.ae/cdn/shop/t/4/assets/component-list-social.css?v=35792976012981934991736691106" rel="stylesheet" type="text/css" media="all" />
  3910. <style data-shopify>.footer {
  3911.    margin-top: 0px;
  3912.  }
  3913.  
  3914.  .section-sections--17173044527182__footer-padding {
  3915.    padding-top: 36px;
  3916.    padding-bottom: 36px;
  3917.  }
  3918.  
  3919.  @media screen and (min-width: 750px) {
  3920.    .footer {
  3921.      margin-top: 0px;
  3922.    }
  3923.  
  3924.    .section-sections--17173044527182__footer-padding {
  3925.      padding-top: 48px;
  3926.      padding-bottom: 48px;
  3927.    }
  3928.  }</style><footer class="footer color-scheme-2 gradient section-sections--17173044527182__footer-padding"><div class="footer__content-top page-width"><div
  3929.            class="footer__blocks-wrapper grid grid--1-col grid--2-col grid--4-col-tablet "
  3930.            
  3931.          ><div
  3932.                class="footer-block grid__item footer-block--menu"
  3933.                
  3934.                
  3935.              ><h2 class="footer-block__heading inline-richtext">Menu</h2><ul class="footer-block__details-content list-unstyled"><li>
  3936.                            <a
  3937.                              href="/search"
  3938.                              class="link link--text list-menu__item list-menu__item--link"
  3939.                            >
  3940.                              Search
  3941.                            </a>
  3942.                          </li><li>
  3943.                            <a
  3944.                              href="/pages/terms-of-services"
  3945.                              class="link link--text list-menu__item list-menu__item--link"
  3946.                            >
  3947.                              Terms of services
  3948.                            </a>
  3949.                          </li><li>
  3950.                            <a
  3951.                              href="/pages/return-policy"
  3952.                              class="link link--text list-menu__item list-menu__item--link"
  3953.                            >
  3954.                              Return Policy
  3955.                            </a>
  3956.                          </li><li>
  3957.                            <a
  3958.                              href="/pages/privacy-policy"
  3959.                              class="link link--text list-menu__item list-menu__item--link"
  3960.                            >
  3961.                              Privacy Policy
  3962.                            </a>
  3963.                          </li><li>
  3964.                            <a
  3965.                              href="/pages/customer-service-polic"
  3966.                              class="link link--text list-menu__item list-menu__item--link"
  3967.                            >
  3968.                              Customer Service Policy
  3969.                            </a>
  3970.                          </li><li>
  3971.                            <a
  3972.                              href="/pages/about-us"
  3973.                              class="link link--text list-menu__item list-menu__item--link"
  3974.                            >
  3975.                              About Us
  3976.                            </a>
  3977.                          </li></ul></div><div
  3978.                class="footer-block grid__item"
  3979.                
  3980.                
  3981.              ><h2 class="footer-block__heading inline-richtext">Our store</h2><div class="footer-block__details-content rte">
  3982.                      <p><strong>MomDaughts UAE</strong> empowers your self-care journey with comfort, confidence, and holistic well-being at every step.</p>
  3983.                    </div></div><div
  3984.                class="footer-block grid__item"
  3985.                
  3986.                
  3987.              ><h2 class="footer-block__heading inline-richtext">Contact information</h2><div class="footer-block__details-content rte">
  3988.                      <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>
  3989.                    </div></div></div><div
  3990.          class="footer-block--newsletter"
  3991.          
  3992.        >
  3993.  
  3994. <ul class="list-unstyled list-social footer__list-social" role="list"><li class="list-social__item">
  3995.      <a href="https://www.facebook.com/momdaughts.ae" class="link list-social__link">
  3996.        <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>
  3997. </span>
  3998.        <span class="visually-hidden">Facebook</span>
  3999.      </a>
  4000.    </li><li class="list-social__item">
  4001.      <a href="https://www.instagram.com/momdaughts.ae" class="link list-social__link">
  4002.        <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>
  4003. </span>
  4004.        <span class="visually-hidden">Instagram</span>
  4005.      </a>
  4006.    </li><li class="list-social__item">
  4007.      <a href="https://twitter.com/momdaughts" class="link list-social__link">
  4008.        <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>
  4009. </span>
  4010.        <span class="visually-hidden">X (Twitter)</span>
  4011.      </a>
  4012.    </li></ul>
  4013. </div>
  4014.      </div><div
  4015.    class="footer__content-bottom"
  4016.    
  4017.  >
  4018.    <div class="footer__content-bottom-wrapper page-width">
  4019.      <div class="footer__column footer__localization isolate"></div>
  4020.      <div class="footer__column footer__column--info"></div>
  4021.    </div>
  4022.    <div class="footer__content-bottom-wrapper page-width footer__content-bottom-wrapper--center">
  4023.      <div class="footer__copyright caption">
  4024.        <small class="copyright__content"
  4025.          >&copy; 2025, <a href="/" title="">MomDaughts UAE</a></small>
  4026.        <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>
  4027.    </div>
  4028.  </div>
  4029. </footer>
  4030.  
  4031.  
  4032. </div>
  4033. <!-- END sections: footer-group -->
  4034.  
  4035.    <ul hidden>
  4036.      <li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
  4037.      <li id="a11y-new-window-message">Opens in a new window.</li>
  4038.    </ul>
  4039.  
  4040.    <script>
  4041.      window.shopUrl = 'https://momdaughts.ae';
  4042.      window.routes = {
  4043.        cart_add_url: '/cart/add',
  4044.        cart_change_url: '/cart/change',
  4045.        cart_update_url: '/cart/update',
  4046.        cart_url: '/cart',
  4047.        predictive_search_url: '/search/suggest',
  4048.      };
  4049.  
  4050.      window.cartStrings = {
  4051.        error: `There was an error while updating your cart. Please try again.`,
  4052.        quantityError: `You can only add [quantity] of this item to your cart.`,
  4053.      };
  4054.  
  4055.      window.variantStrings = {
  4056.        addToCart: `Add to cart`,
  4057.        soldOut: `Sold out`,
  4058.        unavailable: `Unavailable`,
  4059.        unavailable_with_option: `[value] - Unavailable`,
  4060.      };
  4061.  
  4062.      window.quickOrderListStrings = {
  4063.        itemsAdded: `[quantity] items added`,
  4064.        itemAdded: `[quantity] item added`,
  4065.        itemsRemoved: `[quantity] items removed`,
  4066.        itemRemoved: `[quantity] item removed`,
  4067.        viewCart: `View cart`,
  4068.        each: `[money]/ea`,
  4069.        min_error: `This item has a minimum of [min]`,
  4070.        max_error: `This item has a maximum of [max]`,
  4071.        step_error: `You can only add this item in increments of [step]`,
  4072.      };
  4073.  
  4074.      window.accessibilityStrings = {
  4075.        imageAvailable: `Image [index] is now available in gallery view`,
  4076.        shareSuccess: `Link copied to clipboard`,
  4077.        pauseSlideshow: `Pause slideshow`,
  4078.        playSlideshow: `Play slideshow`,
  4079.        recipientFormExpanded: `Gift card recipient form expanded`,
  4080.        recipientFormCollapsed: `Gift card recipient form collapsed`,
  4081.        countrySelectorSearchCount: `[count] countries/regions found`,
  4082.      };
  4083.    </script><script src="//momdaughts.ae/cdn/shop/t/4/assets/predictive-search.js?v=57209189334897115771736691107" defer="defer"></script><!-- BEAE-FOOTER -->
  4084.  
  4085.  
  4086. <!-- START BEAE POPUP BUILDER -->
  4087. <!-- END BEAE POPUP BUILDER -->
  4088. <!-- END BEAE-FOOTER -->
  4089. <!-- BEAE-ANALYTICS --><!-- This snippet render by Beae - Landing page builder to use function of Google Analytic 4 -->
  4090. <!-- To use this function, go to settings in app and enable analytic [link docs] -->
  4091.  
  4092.  
  4093.  <script>
  4094.    window.addEventListener('load', () => {
  4095.      // fallback for gtag when not initialized
  4096.      if (typeof window.gtag !== 'function') {
  4097.        window.gtag = (str1, str2, obj) => {
  4098.        }
  4099.      }
  4100.    })
  4101.  </script>
  4102.  
  4103.  <!-- End snippet of Google Analytic 4 --><!-- END BEAE-ANALYTICS -->  
  4104.  
  4105.  <div id="shopify-block-Aam1JWnJKckJGTVU1M__9680287006772215557" class="shopify-block shopify-app-block"><!--  sb-local-seo.liquid  -->
  4106.  
  4107.  
  4108.  
  4109.  
  4110.  
  4111.  
  4112.  
  4113. <div class="sb-local-snipp"  id="sb-google-review-preview-1" onmouseover="showSBGoogleBig()"
  4114.     class="google-review-preview " style="
  4115. display: none;
  4116.        z-index: 5997;
  4117.        line-height: 1.5em,
  4118.  
  4119.         position: fixed; right: 40px; bottom: 2px; background: white; padding: 0px 20px; border-top-right-radius: 10px; border-top-left-radius: 10px
  4120. ">
  4121.    <svg class="sb-svg-close" onclick="closeSb()" width="3" height="3" viewBox="0 0 3 3" fill="none"
  4122.         xmlns="http://www.w3.org/2000/svg">
  4123.        <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"
  4124.              fill="#C3C9D4"></path>
  4125.    </svg>
  4126.    <div class="ant-space ant-space-horizontal ant-space-align-center"
  4127.         style="display: none">
  4128.        <div class="ant-space-item" style="margin-right: 5px; margin-bottom: -10px;">
  4129.            <svg class="sb-svg-g" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="18px" height="18px">
  4130.                <path fill="#FFC107"
  4131.                      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>
  4132.                <path fill="#FF3D00"
  4133.                      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>
  4134.                <path fill="#4CAF50"
  4135.                      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>
  4136.                <path fill="#1976D2"
  4137.                      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>
  4138.            </svg>
  4139.        </div>
  4140.        <div class="ant-space-item" style="margin-right: 5px;">
  4141.            <div class="sb-value-rating-point"></div>
  4142.        </div>
  4143.        <div class="ant-space-item">
  4144.            <svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"
  4145.                 class="sb-rating-star-svg">
  4146.                <g clip-path="url(#clip0_3794_742)">
  4147.                    <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"
  4148.                          fill="#FFB721"></path>
  4149.                </g>
  4150.                <defs>
  4151.                    <clipPath id="clip0_3794_742">
  4152.                        <rect width="6" height="5" fill="white"></rect>
  4153.                    </clipPath>
  4154.                </defs>
  4155.            </svg>
  4156.        </div>
  4157.    </div>
  4158.    <div class="rating-sb-snp "
  4159.         style="margin-bottom: -5px; display: block">
  4160.        <input type="radio" id="star5" name="rating" value="5"/>
  4161.        <label class="full" for="star5" title="Awesome - 5 stars" style="color: #FFD700"></label>
  4162.        <!--     <input type="radio" id="star4half" name="rating" value="4 and a half" /><label class="half" for="star4half" title="Pretty good - 4.5 stars"></label> -->
  4163.        <input type="radio" id="star4" name="rating" value="4"/>
  4164.        <label class="full" for="star4" title="Pretty good - 4 stars" style="color: #FFD700"></label>
  4165.        <!--     <input type="radio" id="star3half" name="rating" value="3 and a half"  /><label class="half" for="star3half" title="Meh - 3.5 stars"></label> -->
  4166.        <input type="radio" id="star3" name="rating" value="3"/>
  4167.        <label class="full" for="star3" title="Meh - 3 stars" style="color: #FFD700"></label>
  4168.        <!--     <input type="radio" id="star2half" name="rating" value="2 and a half" /><label class="half" for="star2half" title="Kinda bad - 2.5 stars"></label> -->
  4169.        <input type="radio" id="star2" name="rating" value="2"/>
  4170.        <label class="full" for="star2" title="Kinda bad - 2 stars" style="color: #FFD700"></label>
  4171.        <!--     <input type="radio" id="star1half" name="rating" value="1 and a half" /><label class="half" for="star1half" title="Meh - 1.5 stars"></label> -->
  4172.        <input type="radio" id="star1" name="rating" value="1"/>
  4173.        <label class="full" for="star1" title="Sucks big time - 1 star" style="color: #FFD700"></label>
  4174.        <!--     <input type="radio" id="starhalf" name="rating" value="half" /><label class="half" for="starhalf" title="Sucks big time - 0.5 stars"></label> -->
  4175.    </div>
  4176.    <div class="sb-value-rating-count"> reviews</div>
  4177. </div>
  4178. <div class="sb-local-snipp"  onmouseleave="showSBGoogleSmall()" id="sb-google-review-preview-2"
  4179.     class="google-review-preview " style="
  4180.        display: none;
  4181.        z-index: 59977;
  4182.  
  4183.         position: fixed; right: 40px; bottom: 2px; background: white; padding: 0px 20px; border-top-right-radius: 10px; border-top-left-radius: 10px
  4184. " slide-in-from="bottom">
  4185.    <svg class="sb-svg-close" onclick="closeSb()" width="3" height="3" viewBox="0 0 3 3" fill="none"
  4186.         xmlns="http://www.w3.org/2000/svg">
  4187.        <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"
  4188.              fill="#C3C9D4"></path>
  4189.    </svg>
  4190.    <a class="sb-to-plan sb-value-rating-see-all"
  4191.       href="https://search.google.com/local/reviews?placeid=" target="_blank">See all
  4192.        reviews</a>
  4193.    <div class="ant-space ant-space-horizontal ant-space-align-center">
  4194.        <div class="ant-space-item" style="margin-right: 5px; margin-bottom: -10px;">
  4195.            <svg class="sb-svg-g" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="18px" height="18px">
  4196.                <path fill="#FFC107"
  4197.                      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>
  4198.                <path fill="#FF3D00"
  4199.                      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>
  4200.                <path fill="#4CAF50"
  4201.                      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>
  4202.                <path fill="#1976D2"
  4203.                      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>
  4204.            </svg>
  4205.        </div>
  4206.        <div class="ant-space-item"
  4207.             style="margin-right: 5px; display: none">
  4208.            <div class="sb-value-rating-point"></div>
  4209.        </div>
  4210.        <div class="ant-space-item"
  4211.             style="margin-right: 5px; display: none">
  4212.            <svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"
  4213.                 class="sb-rating-star-svg">
  4214.                <g clip-path="url(#clip0_3794_742)">
  4215.                    <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"
  4216.                          fill="#FFB721"></path>
  4217.                </g>
  4218.                <defs>
  4219.                    <clipPath id="clip0_3794_742">
  4220.                        <rect width="6" height="5" fill="white"></rect>
  4221.                    </clipPath>
  4222.                </defs>
  4223.            </svg>
  4224.        </div>
  4225.        
  4226.    </div>
  4227.  
  4228.  
  4229.    <div class="scroll-sb"
  4230.         style="max-height: 120px; overflow: hidden scroll; padding-bottom: 5px !important;">  </div>
  4231. </div>
  4232. <div>
  4233.    <script>
  4234.        var isCloseSb = 0;
  4235.    </script>
  4236. </div>
  4237.  
  4238.  
  4239. </div><div id="shopify-block-AeGVhTnZTZ3g4c0xJR__643381569867433295" class="shopify-block shopify-app-block"><script>
  4240.  var collectionProducts = [];
  4241.  var cartItems = [];
  4242.  var cartPrice = 0;
  4243.  var tikTokCart = [];
  4244.  var productId = "";
  4245.  var productTitle = "";
  4246.  var productType = "";
  4247.  var value = "";
  4248.  var productMainId = "";
  4249. </script>
  4250.  
  4251.  
  4252.  
  4253.  <script>
  4254.    var infinitefbtiktokMetafield = {"0":[],"1":[{"id":8838,"pixel_id":"CUBO5HRC77UE83BTJQT0","pixel_name":"MomDaughts UAE","shop_id":28613,"type":"Entire Store","tag":null,"collection":null,"markets":null,"regions":null,"productIds":null,"access_token":"1259c1ca12c107cd6bdc52f594ab819f7f79345e","test_token":null,"utm_source":"Tiktok","utm_medium":"Paid","utm_campaign":null,"status":1,"created_at":"2025-03-07T10:19:40.000000Z","updated_at":"2025-03-07T11:09:28.000000Z"}],"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-07T10:20:20.000000Z","shopify_grandfathered":0,"shopify_namespace":null,"shopify_freemium":0,"plan_id":2,"customBill":0,"FbTrigger":0,"GA4Trigger":0,"purchaseNumber":1,"tikTokPurchaseNumber":1,"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":true,"snapPixel":false,"pintPixel":false};
  4255.    if(infinitefbtiktokMetafield){
  4256.      if (!sessionStorage.getItem('infiniteFbBrowserPixel') ) {
  4257.        sessionStorage.setItem('fbPixel', infinitefbtiktokMetafield.fbPixel == true ? "Yes" : "No");
  4258.        sessionStorage.setItem('tiktokPixel', infinitefbtiktokMetafield.tiktokPixel == true ? "Yes" : "No");
  4259.        sessionStorage.setItem('snapPixel', infinitefbtiktokMetafield.snapPixel == true ? "Yes" : "No");
  4260.        sessionStorage.setItem('pintPixel', infinitefbtiktokMetafield.pintPixel == true ? "Yes" : "No");
  4261.        sessionStorage.setItem('tweetPixel', infinitefbtiktokMetafield.tweetPixel == true ? "Yes" : "No");
  4262.        sessionStorage.setItem('infiniteFbBrowserPixel', JSON.stringify([infinitefbtiktokMetafield[0], infinitefbtiktokMetafield[1], infinitefbtiktokMetafield[2], infinitefbtiktokMetafield[3], infinitefbtiktokMetafield[4], infinitefbtiktokMetafield[5]]));
  4263.      }
  4264.    }
  4265.  </script>
  4266.  
  4267.  
  4268.  
  4269.  
  4270. <script>
  4271.  
  4272. </script>
  4273.  
  4274. <script>
  4275.  
  4276.  // if(sessionStorage.getItem('addToCartValue')){
  4277.  //   value = sessionStorage.getItem('addToCartValue');
  4278.  // }
  4279.  // if(sessionStorage.getItem('addToCartMainId')){
  4280.  //   productMainId = sessionStorage.getItem('addToCartMainId');
  4281.  // }
  4282.  // if(sessionStorage.getItem('addToCartId')){
  4283.  //   productId = sessionStorage.getItem('addToCartId');
  4284.  // }
  4285.  // if(sessionStorage.getItem('addToCartTitle')){
  4286.  //   productTitle = sessionStorage.getItem('addToCartTitle');
  4287.  // }
  4288.  // if(sessionStorage.getItem('addToCartType')){
  4289.  //   productType = sessionStorage.getItem('addToCartType')
  4290.  // }
  4291. </script>
  4292.  
  4293.  
  4294. </div></body>
  4295. </html>
  4296.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda