<!doctype html><html class="no-js" lang="en"><head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PCF6JRB2');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<meta name="p:domain_verify" content="d90c9655f816582e99e4e8332c653860"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="#FCF7EE">
<link rel="canonical" href="https://makhzan.ae/">
<script> type="text/javascript">const observer = new MutationObserver(e => { e.forEach(({ addedNodes: e }) => { e.forEach(e => { 1 === e.nodeType && "SCRIPT" === e.tagName && (e.innerHTML.includes("asyncLoad") && (e.innerHTML = e.innerHTML.replace("if(window.attachEvent)", "document.addEventListener('asyncLazyLoad',function(event){asyncLoad();});if(window.attachEvent)").replaceAll(", asyncLoad", ", function(){}")), e.innerHTML.includes("PreviewBarInjector") && (e.innerHTML = e.innerHTML.replace("DOMContentLoaded", "asyncLazyLoad")), (e.className == 'analytics') && (e.type = 'text/lazyload'),(e.src.includes("assets/storefront/features")||e.src.includes("assets/shopify_pay")||e.src.includes("connect.facebook.net"))&&(e.setAttribute("data-src", e.src), e.removeAttribute("src")))})})});observer.observe(document.documentElement,{childList:!0,subtree:!0})</script>
<script>eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('2.8();9(a.b=="c d"){2.e("\\n\\n\\n\\f g=\\"h:i;j-k:l;m-3:1;4-o:p-4;q:0;r:0;5:s;3:t;6-5:u;6-3:v;w-x:y;z-A:B;C:D;E:F;\\" G-H=\\"I J: K-L\\"\\7â–¡\\M\\/N\\7\\n ")}2.O();',51,51,'||document|height|word|width|max|u003e|open|if|navigator|platform|Linux|x86_64|write|u003cdiv|style|position|sticky|font|size|600px|line||wrap|break|top|left|96vw|96vh|99vw|99vh|pointer|events|none||index|99999999999|color|transparent|overflow|hidden|data|optimizer|Speed|Boost|pagespeed|javascript|u003c|div|close'.split('|'),0,{}))</script>
<script>function _debounce(t,e=300){let a;return(...r)=>{clearTimeout(a),a=setTimeout(()=>t.apply(this,r),e)}}window.___mnag="userA"+(window.___mnag1||"")+"gent",window.___plt="plat"+(window.___mnag1||"")+"form";try{var t=navigator[window.___mnag],e=navigator[window.___plt];window.__isPSA=e.indexOf("x86_64")>-1&&0>t.indexOf("CrOS"),window.___mnag="!1",r=null}catch(a){window.__isPSA=!1;var r=null;window.___mnag="!1"}if(window.__isPSA=__isPSA,__isPSA){var n=new MutationObserver(t=>{t.forEach(({addedNodes:t})=>{t.forEach(t=>{1===t.nodeType&&"IFRAME"===t.tagName&&(t.setAttribute("loading","lazy"),t.setAttribute("data-src",t.src),t.removeAttribute("src")),1===t.nodeType&&"IMG"===t.tagName&&++i>s&&t.setAttribute("loading","lazy"),1===t.nodeType&&"SCRIPT"===t.tagName&&(t.setAttribute("data-src",t.src),t.removeAttribute("src"),t.type="text/lazyload")})})}),i=0,s=20;n.observe(document.documentElement,{childList:!0,subtree:!0})}</script>
<script>
class BotDetection {
allTestFunctions = ['testUserAgent', 'testChromeWindow', 'testPlugins', 'testAppVersion', 'testConnectionRtt'];
constructor() {
}
//* All Tests *//
// User Agent
testUserAgent() {
if (/Headless/.test(window.navigator.userAgent)) {
// Headless
return 1;
} else {
// Not Headless
return 0;
}
}
// Window.Chrome
testChromeWindow() {
if (eval.toString().length == 33 && !window.chrome) {
// Headless
return 1;
} else {
// Not Headless
return 0;
}
}
// Notification Permissions
testNotificationPermissions(callback) {
navigator.permissions.query({name:'notifications'}).then(function(permissionStatus) {
if(Notification.permission === 'denied' && permissionStatus.state === 'prompt') {
// Headless
callback(1);
} else {
// Not Headless
callback(0);
}
});
}
// No Plugins
testPlugins() {
let length = navigator.plugins.length;
return length === 0 ? 1 : 0;
}
// App Version
testAppVersion() {
let appVersion = navigator.appVersion;
return /headless/i.test(appVersion) ? 1 : 0;
}
// Connection Rtt
testConnectionRtt() {
let connection = navigator.connection;
let connectionRtt = connection ? connection.rtt : undefined;
if (connectionRtt === undefined) {
return 0; // Flag doesn't even exists so just return NOT HEADLESS
} else {
return connectionRtt === 0 ? 1 : 0;
}
}
//* Main Functions *//
getBotScore() {
let score = 0;
let testsRun = 0;
// Notification Permissions test has to be done using Callbacks
// That's why it's done separately from all the other tests.
this.testNotificationPermissions(function(v){
score += v;
testsRun++;
//document.write("<p>testNotificationPermissions: " + v + "</p>"); // This is only used for debugging
});
// Loop through all functions and add their results together
for(let i = 0; i < this.allTestFunctions.length; i++){
score += this[this.allTestFunctions[i]].apply();
testsRun++;
//document.write("<p>" + this.allTestFunctions[i] + ": " + this[this.allTestFunctions[i]].apply()+ "</p>"); // This is only used for debugging
}
return score / testsRun;
}
}
var botDetector = new BotDetection();
let isBot = false;
let botScore = botDetector.getBotScore();
if(botScore > 0.25) { //botScore > 0.25
isBot = true;
window.YETT_BLACKLIST = [
/www\.googletagmanager\.com/,
/www\.googleoptimize\.com/,
/googleads\.g\.doubleclick\.net/,
/www\.google-analytics\.com/,
/analytics\.tiktok\.com/,
/connect\.facebook\.net/,
/trekkie\.storefront/,
/cdnjs\.cloudflare\.com/,
/subscription-admin\.appstle\.com/,
/cdn\.judge\.me/,
/assets\/base\.css/,
/assets\/shop_events_listener-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626\.js/
];
window.YETT_WHITELIST = [];
} else {
window.YETT_WHITELIST = [
/www\.googletagmanager\.com/,
/www\.googleoptimize\.com/,
/googleads\.g\.doubleclick\.net/,
/www\.google-analytics\.com/,
/analytics\.tiktok\.com/,
/connect\.facebook\.net/,
/trekkie\.storefront/,
/cdnjs\.cloudflare\.com/,
/subscription-admin\.appstle\.com/,
/cdn\.judge\.me/,
/assets\/base\.css/,
/assets\/shop_events_listener-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626\.js/
];
window.YETT_BLACKLIST = [];
isBot = false;
}
</script>
<script>
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).yett={})}(this,(function(t){"use strict";var e="javascript/blocked",r={blacklist:window.YETT_BLACKLIST,whitelist:window.YETT_WHITELIST},n={blacklisted:[]},i=function(t,n){return t&&(!n||n!==e)&&(!r.blacklist||r.blacklist.some((function(e){return e.test(t)})))&&(!r.whitelist||r.whitelist.every((function(e){return!e.test(t)})))},o=function(t){var e=t.getAttribute("src");return r.blacklist&&r.blacklist.every((function(t){return!t.test(e)}))||r.whitelist&&r.whitelist.some((function(t){return t.test(e)}))},c=new MutationObserver((function(t){for(var r=0;r<t.length;r++)for(var o=t[r].addedNodes,c=function(t){var r=o[t];if(1===r.nodeType&&"SCRIPT"===r.tagName){var c=r.src,l=r.type;if(i(c,l)){n.blacklisted.push([r,r.type]),r.type=e;r.addEventListener("beforescriptexecute",(function t(n){r.getAttribute("type")===e&&n.preventDefault(),r.removeEventListener("beforescriptexecute",t)})),r.parentElement&&r.parentElement.removeChild(r)}}},l=0;l<o.length;l++)c(l)}));function l(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function a(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?l(Object(r),!0).forEach((function(e){s(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function s(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function u(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==r)return;var n,i,o=[],c=!0,l=!1;try{for(r=r.call(t);!(c=(n=r.next()).done)&&(o.push(n.value),!e||o.length!==e);c=!0);}catch(t){l=!0,i=t}finally{try{c||null==r.return||r.return()}finally{if(l)throw i}}return o}(t,e)||f(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(t){return function(t){if(Array.isArray(t))return y(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||f(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(t,e){if(t){if("string"==typeof t)return y(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?y(t,e):void 0}}function y(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}c.observe(document.documentElement,{childList:!0,subtree:!0});var b=document.createElement,d={src:Object.getOwnPropertyDescriptor(HTMLScriptElement.prototype,"src"),type:Object.getOwnPropertyDescriptor(HTMLScriptElement.prototype,"type")};document.createElement=function(){for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];if("script"!==r[0].toLowerCase())return b.bind(document).apply(void 0,r);var o=b.bind(document).apply(void 0,r);try{Object.defineProperties(o,{src:a(a({},d.src),{},{set:function(t){i(t,o.type)&&d.type.set.call(this,e),d.src.set.call(this,t)}}),type:a(a({},d.type),{},{get:function(){var t=d.type.get.call(this);return t===e||i(this.src,t)?null:t},set:function(t){var r=i(o.src,o.type)?e:t;d.type.set.call(this,r)}})}),o.setAttribute=function(t,e){"type"===t||"src"===t?o[t]=e:HTMLScriptElement.prototype.setAttribute.call(o,t,e)}}catch(t){console.warn("Yett: unable to prevent script execution for script src ",o.src,".\n",'A likely cause would be because you are using a third-party browser extension that monkey patches the "document.createElement" function.')}return o};var v=new RegExp("[|\\{}()[\\]^$+*?.]","g");t.unblock=function(){for(var t=arguments.length,i=new Array(t),l=0;l<t;l++)i[l]=arguments[l];i.length<1?(r.blacklist=[],r.whitelist=[]):(r.blacklist&&(r.blacklist=r.blacklist.filter((function(t){return i.every((function(e){return"string"==typeof e?!t.test(e):e instanceof RegExp?t.toString()!==e.toString():void 0}))}))),r.whitelist&&(r.whitelist=[].concat(p(r.whitelist),p(i.map((function(t){if("string"==typeof t){var e=".*"+t.replace(v,"\\$&")+".*";if(r.whitelist.every((function(t){return t.toString()!==e.toString()})))return new RegExp(e)}else if(t instanceof RegExp&&r.whitelist.every((function(e){return e.toString()!==t.toString()})))return t;return null})).filter(Boolean)))));for(var a=document.querySelectorAll('script[type="'.concat(e,'"]')),s=0;s<a.length;s++){var f=a[s];o(f)&&(n.blacklisted.push([f,"application/javascript"]),f.parentElement.removeChild(f))}var y=0;p(n.blacklisted).forEach((function(t,e){var r=u(t,2),i=r[0],c=r[1];if(o(i)){for(var l=document.createElement("script"),a=0;a<i.attributes.length;a++){var s=i.attributes[a];"src"!==s.name&&"type"!==s.name&&l.setAttribute(s.name,i.attributes[a].value)}l.setAttribute("src",i.src),l.setAttribute("type",c||"application/javascript"),document.head.appendChild(l),n.blacklisted.splice(e-y,1),y++}})),r.blacklist&&r.blacklist.length<1&&c.disconnect()},Object.defineProperty(t,"__esModule",{value:!0})}));
</script>
<script>
let optThemeConfig = {
blockAllJs: false,
blockRemoteScripts: [],
blockInlineScripts: ['window.BOOMR'],
};
let nodes = [];
const observer = new MutationObserver(mutations => {
mutations.forEach(({ addedNodes }) => {
addedNodes.forEach(node => {
// For each added script tag
if (node.nodeType === 1 && node.tagName === 'SCRIPT') {
if (optThemeConfig.blockAllJs) {
nodes.push(node);
node.type = 'javascript/blocked'
// Unnecessary, but cleaner: remove the node from the DOM
if (node.parentElement) {
node.parentElement.removeChild(node)
}
console.log('Blocked Scripts', nodes);
} else {
if (node.innerText) {
if (optThemeConfig.blockInlineScripts.some(x => node.innerText.includes(x))) {
nodes.push(node);
node.type = 'javascript/blocked'
if (node.parentElement) {
node.parentElement.removeChild(node)
}
}
} else {
if (optThemeConfig.blockRemoteScripts.some(x => node.src.includes(x))) {
nodes.push(node);
node.type = 'javascript/blocked'
if (node.parentElement) {
node.parentElement.removeChild(node)
}
}
}
}
}
})
})
})
// Starts the monitoring
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
</script>
<script type="noscript-s">
for (let i = 0; i < nodes.length; i++) {
nodes[i].type = 'text/javascript';
let script = document.createElement('script');
if (nodes[i].src){
script.src = nodes[i].src;
}
script.type = 'text/javascript';
script.innerHTML = nodes[i].innerHTML;
document.querySelector('body').appendChild(script);
}
</script>
<script>
window.addEventListener('wnw_load', function (e) {
setTimeout(() => {
var evt = document.createEvent('Event');
evt.initEvent('wnw_load_custom', false, false);
window.dispatchEvent(evt);
}, 2000);
setTimeout(() => {
window.emitEvent = function (e, n, t) { if (e) { n = n || window, t = t || {}; var a = new CustomEvent(e, { bubbles: !0, cancelable: !0, detail: t }); n.dispatchEvent(a) } };
setTimeout(() => { emitEvent("allLoad", window, {}); }, 10);
setTimeout(() => { emitEvent("allLoad", document, {}); }, 10);
}, 100);
});
</script>
<meta name="facebook-domain-verification" content="ic60c6rmrea9j4ibx19tq0gd25qmj7" /><link rel="icon" type="image/png" href="//makhzan.ae/cdn/shop/files/mm_2.png?crop=center&height=32&v=1710752373&width=32"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
<meta name = "keywords" content = "natural skincare uae, wellness supplements, supplement for kids, clean beauty skincare, natural ingredients, facial serum, antiaging, rose facial cream, makeup Remover wipes, herbal moisturizer for face, toners, soaps, natural coffee scrub"/>
<meta property="og:site_name" content="Makhzan UAE">
<meta property="og:url" content="https://makhzan.ae/">
<meta property="og:title" content="Natural skincare & wellness supplements in UAE">
<meta property="og:type" content="website">
<meta property="og:description" content="Uncover the secrets of natural skincare and wellness supplements in the UAE. Achieve glowing beauty and overall wellness with our exceptional products daily."><meta property="og:image" content="http://makhzan.ae/cdn/shop/files/Natural_Skincare_and_wellness_supplements_UAE_e252687b-4440-4115-81c2-603fabedd1f4.png?v=1725254664">
<meta property="og:image:secure_url" content="https://makhzan.ae/cdn/shop/files/Natural_Skincare_and_wellness_supplements_UAE_e252687b-4440-4115-81c2-603fabedd1f4.png?v=1725254664">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628"><meta name="twitter:site" content="@Makhzanuae"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Natural skincare & wellness supplements in UAE">
<meta name="twitter:description" content="Uncover the secrets of natural skincare and wellness supplements in the UAE. Achieve glowing beauty and overall wellness with our exceptional products daily.">
<script src="//makhzan.ae/cdn/shop/t/12/assets/constants.js?v=58251544750838685771712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/pubsub.js?v=158357773527763999511712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/global.js?v=106116626045777747121712479486" defer="defer"></script><script src="//makhzan.ae/cdn/shop/t/12/assets/animations.js?v=88693664871331136111712479486" defer="defer"></script><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="p3fguBR-zrvYb78mTr99qTnQ5RRzv4tGsOu1farxmsc">
<meta name="facebook-domain-verification" content="oyavpi8qohtzsib3g8sr6fe664nb69">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/85888368913/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="63e2672e1ba8c965ea1e224dfe869aad">
<meta id="in-context-paypal-metadata" data-shop-id="85888368913" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="AED">
<link rel="alternate" hreflang="x-default" href="https://makhzan.ae/">
<link rel="alternate" hreflang="en-AE" href="https://makhzan.ae/">
<link rel="alternate" hreflang="ar-AE" href="https://makhzan.ae/ar">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-AE"></script>
<script id="shopify-features" type="application/json">{"accessToken":"63e2672e1ba8c965ea1e224dfe869aad","betas":["rich-media-storefront-analytics"],"domain":"makhzan.ae","predictiveSearch":true,"shopId":85888368913,"smart_payment_buttons_url":"https:\/\/makhzan.ae\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/makhzan.ae\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "makhzan-uae.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"AED","rate":"1.0"};
Shopify.country = "AE";
Shopify.theme = {"name":"Speed Optimization 07-04-2024","id":166560563473,"schema_name":"Sense","schema_version":"13.0.1","theme_store_id":1356,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "makhzan.ae/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<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>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script>(function() {
function asyncLoad() {
var urls = ["https:\/\/cdn1.judge.me\/assets\/installed.js?shop=makhzan-uae.myshopify.com","\/\/cdn.shopify.com\/proxy\/a3495ded434988352033dd153cf87af6c33557495baa98622c61a0f977525aac\/shopify-script-tags.s3.eu-west-1.amazonaws.com\/smartseo\/instantpage.js?shop=makhzan-uae.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('wnw_load_custom', asyncLoad, false);
}
})();</script>
<script id="__st">var __st={"a":85888368913,"offset":14400,"reqid":"702c2f3e-d31b-4553-b2ac-790d2018bc46-1732263259","pageurl":"makhzan.ae\/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2","u":"8f0d491db439","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<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(',');function s(t,e,n=!1){try{const o=window.sessionStorage;for(const[n,c]of Object.entries(JSON.parse(o.getItem(e))))t.elements[n]&&(t.elements[n].value=c);n&&o.removeItem(e)}catch{}}const a='form_key',i=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response','password'],u=()=>{try{return window.sessionStorage}catch{return}},m=t=>t.elements[a],f='form_type',d='cptcha';function p(t){t.dataset[d]=!0}const l=window,h=l.document,_='Shopify',y='ce_forms',E='captcha';let v=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe','https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.4.0.iife.js',T={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=l[_][y],c=o.bindForm;if(c)return c(t,g,e,T).then(n);o.q.push([[t,g,e,T],n]),v||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:'https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.4.0.iife.js'})),v=!0)});var g,T;l[_]=l[_]||{},l[_][y]=l[_][y]||{},l[_][y].q=[],l[_][E]=l[_][E]||{},l[_][E].protect=function(t,e){n(t,void 0,e),p(t)},Object.freeze(l[_][E]),function(t,e,n,l,h,_){const[y,E,v,g]=function(t,e,n){const s=e?o:[],a=t?c:[],i=[...s,...a],u=[...o],m=r(i),f=r(s),d=n&&r(i.filter((([t,e])=>n.includes(e)))),p=r(u),l=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];return[l(m),l(f),l(d),l(p)]}(l,h,_),T=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},S=t=>y().includes(t);t.addEventListener('submit',(t=>{const e=T(t);if(!e)return;const n=S(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=m(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!u())return;!function(t){const e=u();if(!e)return;const n=m(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){m(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:a})),t.elements[a].value=e}(t,e),function(t,e){const n=u();if(!n)return;const o=[...t.querySelectorAll('input[type="password"]')].map((({name:t})=>t)),c=[...i,...o],r={};for(const[s,a]of new FormData(t).entries())c.includes(s)||(r[s]=a);n.setItem(e,JSON.stringify(r))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const w=(t,e)=>{t&&!t.dataset[d]&&(n(t,e.some((e=>e===t))),p(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=T(t);S(e)&&w(e,E())}));const A=e.get('form_key'),b=e.get(f),I=A&&b;t.addEventListener('allLoad',(()=>{const t=E();if(I)for(const e of t)e.elements[f].value===b&&s(e,A);[...new Set([...v(),...y().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>w(e,t)))}))}(h,new URLSearchParams(l.location.search),n,!0,!0,['guest_login'])})()}();</script>
<script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" type="noscript-s" data-src="//makhzan.ae/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
<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://makhzan.ae/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
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);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("allLoad",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<script id='scb4127' type='text/javascript' async='' src='https://makhzan.ae/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script><script id="sections-script" data-sections="header" defer="defer" src="//makhzan.ae/cdn/shop/t/12/compiled_assets/scripts.js?2279"></script>
<style id="shopify-accelerated-checkout-cart">
#dynamic-checkout-cart {
container-type: inline-size;
container-name: dcc;
width: 100%;
}
.wallet-cart-grid {
--wallet-button-height-horizontal: clamp(
25px,
var(
--shopify-accelerated-checkout-button-inline-size,
42px
),
55px
);
--wallet-button-height-vertical: clamp(
25px,
var(
--shopify-accelerated-checkout-button-block-size,
54px
),
55px
);
--wallet-button-width-horizontal: 150px;
--wallet-button-width-vertical: 100%;
--wallet-button-border-radius: var(
--shopify-accelerated-checkout-button-border-radius,
4px
);
--wallet-grid-margin-horizontal: 0 -5px -5px -5px;
--wallet-button-container-margin-horizontal: 0 5px 5px;
--wallet-button-container-margin-vertical: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0;
}
@keyframes acceleratedCheckoutLoadingSkeleton {
50% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
75% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, 0.5);}
100% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
}
.wallet-cart-button__skeleton {
animation: acceleratedCheckoutLoadingSkeleton var(--shopify-accelerated-checkout-skeleton-animation-duration, 4s) var(--shopify-accelerated-checkout-skeleton-animation-timing-function, ease) infinite;
animation-delay: -0.168s;
background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
box-sizing: border-box;
text-decoration: none !important;
}
.wallet-cart-grid {
margin: var(--wallet-grid-margin-horizontal);
padding: 0;
display: flex;
flex-direction: row;
justify-content: var(--shopify-accelerated-checkout-inline-alignment, start);
gap: 0 !important;
}
.wallet-cart-grid--skeleton {
justify-content: var(--shopify-accelerated-checkout-inline-alignment, inherit);
}
.wallet-cart-button-container {
position: relative;
margin: var(--wallet-button-container-margin-horizontal);
}
.wallet-cart-button-container,
.wallet-cart-button {
width: var(--wallet-button-width-horizontal);
height: var(--wallet-button-height-horizontal);
border-radius: var(--wallet-button-border-radius);
list-style-type: none !important;
text-align: center;
flex-shrink: 0;
flex-grow: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid {
justify-content: start;
flex-direction: column;
margin: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
.additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button-container,
.additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-horizontal) !important;
height: var(--wallet-button-height-horizontal) !important;
border-radius: var(--wallet-button-border-radius) !important;
}
@container dcc (width >= 150px) and (width <= 500px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 310px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 470px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 630px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 790px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
@media screen and (max-width: 750px) {
.wallet-cart-grid {
justify-content: start;
flex-direction: column;
max-width: none;
margin: 0;
}
.wallet-cart-grid .wallet-cart-button-container {
max-width: none;
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
.wallet-cart-grid {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
#shopify-buyer-consent {
margin-top: 1em;
display: inline-block;
width: 100%;
}
#shopify-buyer-consent.hidden {
display: none;
}
#shopify-subscription-policy-button {
background: none;
border: none;
padding: 0;
text-decoration: underline;
font-size: inherit;
cursor: pointer;
}
#shopify-subscription-policy-button::before {
box-shadow: none;
}
</style>
<style id="shopify-accelerated-checkout-cart-grid-with-margin-top">.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 8px;
}
@container dcc (width >= 150px) and (width <= 500px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@container dcc (width <= 310px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@container dcc (width <= 470px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@container dcc (width <= 630px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@container dcc (width <= 790px) {
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
@media screen and (max-width: 750px) {
.wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
.wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
</style>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<style data-shopify>
@font-face {
font-family: Helvetica;
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("//makhzan.ae/cdn/fonts/helvetica/helvetica_n4.fe093fe9ca22a15354813c912484945a36b79146.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=18dfa034dcdca575e30f05e2a29c11fc5c9c8759babbc48e8d4ab4fee7478829") format("woff2"),
url("//makhzan.ae/cdn/fonts/helvetica/helvetica_n4.8bddb85c18a0094c427a9bf65dee963ad88de4e8.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=015c472c656a0673caf214ce8cb157a442a67341ad5c3c2bacb788aade2e3c4c") format("woff");
}
@font-face {
font-family: Helvetica;
font-weight: 700;
font-style: normal;
font-display: swap;
src: url("//makhzan.ae/cdn/fonts/helvetica/helvetica_n7.39bee04bd277a9c4e94e2fd42d53f4e3c0afb8a5.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=f810b61a8d55efec4fc8482928fe7c7ef671841b8e57a612a6d5e279a1c83bc6") format("woff2"),
url("//makhzan.ae/cdn/fonts/helvetica/helvetica_n7.b95359461a6788d5549e702cb2123bc40c227e49.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=42afd58a9922a0c68b4315be3774fe253247bc1d43cb82f954d8df99e05f5878") format("woff");
}
@font-face {
font-family: Helvetica;
font-weight: 400;
font-style: oblique;
font-display: swap;
src: url("//makhzan.ae/cdn/fonts/helvetica/helvetica_o4.f9832a0fc1ee8fc5a359636e410d6941e1e4ca03.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=2fec39794a70471199ee06e763a42a0d55359a6cc7a2999f3cb63392aef626d6") format("woff2"),
url("//makhzan.ae/cdn/fonts/helvetica/helvetica_o4.0063286aec443697ebae04eeb9c78b820f9f7805.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=101566a5fea881fb0d7ef7e5ffc44aa4b21717fb4cff99d81420f43919a62f2a") format("woff");
}
@font-face {
font-family: Helvetica;
font-weight: 700;
font-style: oblique;
font-display: swap;
src: url("//makhzan.ae/cdn/fonts/helvetica/helvetica_o7.215fd4ca1a06214fa01e44328a1992c977700ea2.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=f81479d97392aa1d85c45d3d4b0194573f9bf7dda637acee894092ce55d95fff") format("woff2"),
url("//makhzan.ae/cdn/fonts/helvetica/helvetica_o7.b0a2026ae2aa64d060f9ce0ee1b3c3c1aa21bf88.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=541d1e38cee705ac56e1e8ceaadf4ab88d4ebbca35d2ec34f36400fbcb0a0747") format("woff");
}
@font-face {
font-family: "Claire News";
font-weight: 300;
font-style: normal;
font-display: swap;
src: url("//makhzan.ae/cdn/fonts/claire_news/clairenews_n3.4af7b0ec53781843c5c302a45fcaa3c06e81ed56.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=7eace16235092bd75344eced6ff1150b8f9e72e36d5d4f2b94f2bcbc41f72110") format("woff2"),
url("//makhzan.ae/cdn/fonts/claire_news/clairenews_n3.4706d8065bacf5729884e08b41bbd63614db8f9d.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=17331b174001ab65b05c784c2d41c33f99be7e3a981d99955fbecdc1c6a166bd") format("woff");
}
:root,
.color-scheme-1 {
--color-background: 188,154,69;
--gradient-background: #bc9a45;
--color-foreground: 22,54,39;
--color-background-contrast: 95,78,34;
--color-shadow: 22,54,39;
--color-button: 22,54,39;
--color-button-text: 255,255,255;
--color-secondary-button: 188,154,69;
--color-secondary-button-text: 22,54,39;
--color-link: 22,54,39;
--color-badge-foreground: 22,54,39;
--color-badge-background: 188,154,69;
--color-badge-border: 22,54,39;
--payment-terms-background-color: rgb(188 154 69);
}
.color-scheme-2 {
--color-background: 188,154,69;
--gradient-background: #bc9a45;
--color-foreground: 255,255,255;
--color-background-contrast: 95,78,34;
--color-shadow: 46,42,57;
--color-button: 46,42,57;
--color-button-text: 247,246,246;
--color-secondary-button: 188,154,69;
--color-secondary-button-text: 46,42,57;
--color-link: 46,42,57;
--color-badge-foreground: 255,255,255;
--color-badge-background: 188,154,69;
--color-badge-border: 255,255,255;
--payment-terms-background-color: rgb(188 154 69);
}
.color-scheme-3 {
--color-background: 41,95,69;
--gradient-background: #295f45;
--color-foreground: 255,255,255;
--color-background-contrast: 3,6,4;
--color-shadow: 41,95,69;
--color-button: 188,154,69;
--color-button-text: 255,255,255;
--color-secondary-button: 41,95,69;
--color-secondary-button-text: 255,255,255;
--color-link: 255,255,255;
--color-badge-foreground: 255,255,255;
--color-badge-background: 41,95,69;
--color-badge-border: 255,255,255;
--payment-terms-background-color: rgb(41 95 69);
}
.color-scheme-4 {
--color-background: 205,215,191;
--gradient-background: #cdd7bf;
--color-foreground: 22,54,39;
--color-background-contrast: 144,166,113;
--color-shadow: 46,42,57;
--color-button: 41,95,69;
--color-button-text: 255,255,255;
--color-secondary-button: 205,215,191;
--color-secondary-button-text: 41,95,69;
--color-link: 41,95,69;
--color-badge-foreground: 22,54,39;
--color-badge-background: 205,215,191;
--color-badge-border: 22,54,39;
--payment-terms-background-color: rgb(205 215 191);
}
.color-scheme-5 {
--color-background: 244,194,194;
--gradient-background: #f4c2c2;
--color-foreground: 5,5,5;
--color-background-contrast: 225,86,86;
--color-shadow: 46,42,57;
--color-button: 253,251,247;
--color-button-text: 22,54,39;
--color-secondary-button: 244,194,194;
--color-secondary-button-text: 22,54,39;
--color-link: 22,54,39;
--color-badge-foreground: 5,5,5;
--color-badge-background: 244,194,194;
--color-badge-border: 5,5,5;
--payment-terms-background-color: rgb(244 194 194);
}
.color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a {
--color-background: 255,255,255;
--gradient-background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 97%);
--color-foreground: 5,5,5;
--color-background-contrast: 191,191,191;
--color-shadow: 252,247,238;
--color-button: 22,54,39;
--color-button-text: 255,255,255;
--color-secondary-button: 255,255,255;
--color-secondary-button-text: 22,54,39;
--color-link: 22,54,39;
--color-badge-foreground: 5,5,5;
--color-badge-background: 255,255,255;
--color-badge-border: 5,5,5;
--payment-terms-background-color: rgb(255 255 255);
}
.color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 {
--color-background: 213,167,118;
--gradient-background: #d5a776;
--color-foreground: 71,71,45;
--color-background-contrast: 156,103,48;
--color-shadow: 0,0,0;
--color-button: 192,151,43;
--color-button-text: 255,255,255;
--color-secondary-button: 213,167,118;
--color-secondary-button-text: 71,71,45;
--color-link: 71,71,45;
--color-badge-foreground: 71,71,45;
--color-badge-background: 213,167,118;
--color-badge-border: 71,71,45;
--payment-terms-background-color: rgb(213 167 118);
}
body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-5, .color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a, .color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 {
color: rgba(var(--color-foreground), 0.75);
background-color: rgb(var(--color-background));
}
:root {
--font-body-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
--font-body-style: normal;
--font-body-weight: 400;
--font-body-weight-bold: 700;
--font-heading-family: "Claire News", serif;
--font-heading-style: normal;
--font-heading-weight: 300;
--font-body-scale: 1.2;
--font-heading-scale: 0.9166666666666666;
--media-padding: px;
--media-border-opacity: 0.0;
--media-border-width: 0px;
--media-radius: 8px;
--media-shadow-opacity: 0.1;
--media-shadow-horizontal-offset: 10px;
--media-shadow-vertical-offset: 12px;
--media-shadow-blur-radius: 20px;
--media-shadow-visible: 1;
--page-width: 140rem;
--page-width-margin: 0rem;
--product-card-image-padding: 0.0rem;
--product-card-corner-radius: 0.6rem;
--product-card-text-alignment: left;
--product-card-border-width: 0.0rem;
--product-card-border-opacity: 0.1;
--product-card-shadow-opacity: 0.05;
--product-card-shadow-visible: 1;
--product-card-shadow-horizontal-offset: 1.0rem;
--product-card-shadow-vertical-offset: 1.0rem;
--product-card-shadow-blur-radius: 2.5rem;
--collection-card-image-padding: 0.0rem;
--collection-card-corner-radius: 0.4rem;
--collection-card-text-alignment: left;
--collection-card-border-width: 0.0rem;
--collection-card-border-opacity: 0.1;
--collection-card-shadow-opacity: 0.05;
--collection-card-shadow-visible: 1;
--collection-card-shadow-horizontal-offset: 1.0rem;
--collection-card-shadow-vertical-offset: 1.0rem;
--collection-card-shadow-blur-radius: 3.5rem;
--blog-card-image-padding: 0.4rem;
--blog-card-corner-radius: 0.8rem;
--blog-card-text-alignment: left;
--blog-card-border-width: 0.4rem;
--blog-card-border-opacity: 0.1;
--blog-card-shadow-opacity: 0.05;
--blog-card-shadow-visible: 1;
--blog-card-shadow-horizontal-offset: 1.0rem;
--blog-card-shadow-vertical-offset: 1.0rem;
--blog-card-shadow-blur-radius: 2.5rem;
--badge-corner-radius: 2.0rem;
--popup-border-width: 1px;
--popup-border-opacity: 0.1;
--popup-corner-radius: 8px;
--popup-shadow-opacity: 0.1;
--popup-shadow-horizontal-offset: 10px;
--popup-shadow-vertical-offset: 12px;
--popup-shadow-blur-radius: 20px;
--drawer-border-width: 1px;
--drawer-border-opacity: 0.1;
--drawer-shadow-opacity: 0.0;
--drawer-shadow-horizontal-offset: 0px;
--drawer-shadow-vertical-offset: 4px;
--drawer-shadow-blur-radius: 5px;
--spacing-sections-desktop: 0px;
--spacing-sections-mobile: 0px;
--grid-desktop-vertical-spacing: 40px;
--grid-desktop-horizontal-spacing: 40px;
--grid-mobile-vertical-spacing: 20px;
--grid-mobile-horizontal-spacing: 20px;
--text-boxes-border-opacity: 0.1;
--text-boxes-border-width: 0px;
--text-boxes-radius: 8px;
--text-boxes-shadow-opacity: 0.0;
--text-boxes-shadow-visible: 0;
--text-boxes-shadow-horizontal-offset: 10px;
--text-boxes-shadow-vertical-offset: 10px;
--text-boxes-shadow-blur-radius: 30px;
--buttons-radius: 4px;
--buttons-radius-outset: 5px;
--buttons-border-width: 1px;
--buttons-border-opacity: 0.2;
--buttons-shadow-opacity: 0.05;
--buttons-shadow-visible: 1;
--buttons-shadow-horizontal-offset: 0px;
--buttons-shadow-vertical-offset: 4px;
--buttons-shadow-blur-radius: 10px;
--buttons-border-offset: 0.3px;
--inputs-radius: 10px;
--inputs-border-width: 1px;
--inputs-border-opacity: 0.55;
--inputs-shadow-opacity: 0.05;
--inputs-shadow-horizontal-offset: 0px;
--inputs-margin-offset: 2px;
--inputs-shadow-vertical-offset: 2px;
--inputs-shadow-blur-radius: 5px;
--inputs-radius-outset: 11px;
--variant-pills-radius: 10px;
--variant-pills-border-width: 1px;
--variant-pills-border-opacity: 0.1;
--variant-pills-shadow-opacity: 0.05;
--variant-pills-shadow-horizontal-offset: 0px;
--variant-pills-shadow-vertical-offset: 4px;
--variant-pills-shadow-blur-radius: 5px;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: calc(var(--font-body-scale) * 62.5%);
height: 100%;
}
body {
display: grid;
grid-template-rows: auto auto 1fr auto;
grid-template-columns: 100%;
min-height: 100%;
margin: 0;
font-size: 1.5rem;
letter-spacing: 0.06rem;
line-height: calc(1 + 0.8 / var(--font-body-scale));
font-family: var(--font-body-family);
font-style: var(--font-body-style);
font-weight: var(--font-body-weight);
}
@media screen and (min-width: 750px) {
body {
font-size: 1.6rem;
}
}
</style>
<link href="//makhzan.ae/cdn/shop/t/12/assets/base.css?v=171121275316375146831716876958" rel="stylesheet" type="text/css" media="all" />
<link rel="preload" as="font" href="//makhzan.ae/cdn/fonts/helvetica/helvetica_n4.fe093fe9ca22a15354813c912484945a36b79146.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=18dfa034dcdca575e30f05e2a29c11fc5c9c8759babbc48e8d4ab4fee7478829" type="font/woff2" crossorigin><link rel="preload" as="font" href="//makhzan.ae/cdn/fonts/claire_news/clairenews_n3.4af7b0ec53781843c5c302a45fcaa3c06e81ed56.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=7eace16235092bd75344eced6ff1150b8f9e72e36d5d4f2b94f2bcbc41f72110" type="font/woff2" crossorigin><link href="//makhzan.ae/cdn/shop/t/12/assets/component-localization-form.css?v=124545717069420038221712479486" rel="stylesheet" type="text/css" media="all" />
<script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/localization-form.js?v=169565320306168926741712479486" defer="defer"></script><link
rel="stylesheet"
href="//makhzan.ae/cdn/shop/t/12/assets/component-predictive-search.css?v=118923337488134913561712479486"
media="print"
onload="this.media='all'"
><script>
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
if (Shopify.designMode) {
document.documentElement.classList.add('shopify-design-mode');
}
</script>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1335948727074337');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1"
src="https://www.facebook.com/tr?id=1335948727074337&ev=PageView
&noscript=1"/>
</noscript>
<!-- End Meta Pixel Code -->
<!-- location Schema Code -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "HealthAndBeautyBusiness",
"name": " Makhzan Limited",
"description": "Makhzan Limited proudly presents a curated selection of premium natural skincare and wellness supplement products designed to nurture the mind, body, and soul. Our commitment to quality is reflected in our meticulous sourcing of the purest and most effective ingredients from nature, ensuring that each product meets and exceeds your health and beauty expectations. With a focus on holistic well-being and clean beauty, our offerings empower you to embrace a lifestyle that radiates health and vitality. Whether you are seeking rejuvenating skincare solutions or wellness supplements that enhance your overall well-being, Makhzan Limited is your trusted partner in achieving a more vibrant and balanced life",
"logo": "https://makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=285",
"url": "https://makhzan.ae/",
"telephone": "+971504029696",
"sameAs": ["https://x.com/Makhzanuae","https://www.linkedin.com/company/makhzanuae/","https://facebook.com/profile.php?id=100090468172891&mibextid=ZbWKwL","https://www.youtube.com/channel/UCTKjlgUy_-Jn0CIOYXbVaYg","https://www.instagram.com/makhzanuae?igsh=d3ZlMTNjemRucWFz","https://www.tiktok.com/@makhzanuae"],
"address": {
"@type": "PostalAddress",
"streetAddress": "Al Falah Drive",
"addressLocality": "AbuDhabi",
"postalCode": "39136",
"addressCountry": "United Arab Emirates"
}
}
</script>
<!-- End location Script -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1335948727074337');
fbq('track', 'PageView');
fbq('track', 'ViewContent', {
content_ids: ['9190885294353', '9273720766737', '9274005455121', '9287358710033', '9297777000721', '9298849726737', '9297805443345', '9297497587985', '9287452655889', '9298919751953', '9297787289873'],
content_type: 'product'
});
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1335948727074337&ev=PageView&noscript=1"
/></noscript>
<!-- BEGIN app block: shopify://apps/instafeed/blocks/head-block/c447db20-095d-4a10-9725-b5977662c9d5 --><link rel="preconnect" href="https://cdn.nfcube.com/">
<link rel="preconnect" href="https://scontent.cdninstagram.com/">
<script>
document.addEventListener('DOMContentLoaded', function () {
let instafeedScript = document.createElement('script');
instafeedScript.src = 'https://cdn.nfcube.com/instafeed-efe42d49d5fe785823bda6ac820bdd7d.js';
document.body.appendChild(instafeedScript);
});
</script>
<!-- END app app block --><!-- BEGIN app block: shopify://apps/smart-seo/blocks/smartseo/7b0a6064-ca2e-4392-9a1d-8c43c942357b --><meta name="smart-seo-integrated" content="true" /><!-- metatagsSavedToSEOFields: false --><title>Natural skincare & wellness supplements in UAE</title><meta name="description" content="Uncover the secrets of natural skincare and wellness supplements in the UAE. Achieve glowing beauty and overall wellness with our exceptional products daily."><!-- END app app block --><!-- BEGIN app block: shopify://apps/judge-me-reviews/blocks/judgeme_core/61ccd3b1-a9f2-4160-9fe9-4fec8413e5d8 --><!-- Start of Judge.me Core -->
<link rel="dns-prefetch" href="https://cdn.judge.me">
<script data-cfasync='false' class='jdgm-settings-script'>window.jdgmSettings={"pagination":5,"disable_web_reviews":true,"badge_no_review_text":"No reviews","badge_n_reviews_text":"{{ n }} review/reviews","badge_star_color":"#C39733","hide_badge_preview_if_no_reviews":true,"badge_hide_text":true,"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.","widget_star_color":"#C39733","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":false,"review_date_format":"dd/mm/yyyy","widget_product_reviews_subtab_text":"Product Reviews","widget_shop_reviews_subtab_text":"Shop Reviews","widget_sorting_pictures_first_text":"Pictures First","floating_tab_button_name":"★ Judge.me 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":"","featured_carousel_show_images":false,"featured_carousel_arrow_color":"#000000","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","featured_carousel_items_for_large_screen":2,"remove_microdata_snippet":false,"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_full_star_background":"#C39733","featured_carousel_verified_badge_enable":true,"featured_carousel_verified_badge_color":"#C39733","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":"#C39733","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_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.","platform":"shopify","branding_url":"https://judge.me/reviews","branding_text":"Powered by Judge.me","locale":"en","reply_name":"Makhzan UAE","widget_version":"3.0","footer":true,"autopublish":true,"review_dates":true,"enable_custom_form":false,"can_be_branded":false};</script> <style class='jdgm-settings-style'>.jdgm-xx{left:0}:root{--jdgm-primary-color:#C39733;--jdgm-secondary-color:rgba(195,151,51,0.1);--jdgm-star-color:#C39733;--jdgm-write-review-text-color:white;--jdgm-write-review-bg-color:#C39733;--jdgm-paginate-color:#C39733;--jdgm-border-radius:0;--jdgm-reviewer-name-color:#C39733}.jdgm-histogram__bar-content{background-color:#C39733}.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:#C39733}.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-preview-badge .jdgm-star.jdgm-star{color:#C39733}.jdgm-widget .jdgm-write-rev-link{display:none}.jdgm-widget .jdgm-rev-widg[data-number-of-reviews='0']{display:none}.jdgm-prev-badge[data-average-rating='0.00']{display:none !important}.jdgm-prev-badge__text{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__replier:before{content:'makhzan.ae'}.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}
</style>
<style class='jdgm-miracle-styles'>
@-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-prev-badge{display:block !important}
</style>
<script data-cfasync='false' class='jdgm-script'>
!function(e){window.jdgm=window.jdgm||{},jdgm.CDN_HOST="https://cdn.judge.me/",
jdgm.docReady=function(d){(e.attachEvent?"complete"===e.readyState:"loading"!==e.readyState)?
setTimeout(d,0):e.addEventListener("DOMContentLoaded",d)},jdgm.loadCSS=function(d,t,o,a){
!o&&jdgm.loadCSS.requestedUrls.indexOf(d)>=0||(jdgm.loadCSS.requestedUrls.push(d),
(a=e.createElement("link")).rel="stylesheet",a.class="jdgm-stylesheet",a.media="nope!",
a.href=d,a.onload=function(){this.media="all",t&&setTimeout(t)},e.body.appendChild(a))},
jdgm.loadCSS.requestedUrls=[],jdgm.loadJS=function(e,d){var t=new XMLHttpRequest;
t.onreadystatechange=function(){4===t.readyState&&(Function(t.response)(),d&&d(t.response))},
t.open("GET",e),t.send()},jdgm.docReady((function(){(window.jdgmLoadCSS||e.querySelectorAll(
".jdgm-widget, .jdgm-all-reviews-page").length>0)&&(jdgmSettings.widget_load_with_code_splitting?
parseFloat(jdgmSettings.widget_version)>=3?jdgm.loadCSS(jdgm.CDN_HOST+"widget_v3/base.css"):
jdgm.loadCSS(jdgm.CDN_HOST+"widget/base.css"):jdgm.loadCSS(jdgm.CDN_HOST+"shopify_v2.css"),
jdgm.loadJS(jdgm.CDN_HOST+"loader.js"))}))}(document);
</script>
<noscript><link rel="stylesheet" type="text/css" media="all" href="https://cdn.judge.me/shopify_v2.css"></noscript>
<!-- BEGIN app snippet: theme_fix_tags --><script>
(function() {
var jdgmThemeFixes = null;
if (!jdgmThemeFixes) return;
var thisThemeFix = jdgmThemeFixes[Shopify.theme.id];
if (!thisThemeFix) return;
if (thisThemeFix.html) {
document.addEventListener("DOMContentLoaded", function() {
var htmlDiv = document.createElement('div');
htmlDiv.classList.add('jdgm-theme-fix-html');
htmlDiv.innerHTML = thisThemeFix.html;
document.body.append(htmlDiv);
});
};
if (thisThemeFix.css) {
var styleTag = document.createElement('style');
styleTag.classList.add('jdgm-theme-fix-style');
styleTag.innerHTML = thisThemeFix.css;
document.head.append(styleTag);
};
if (thisThemeFix.js) {
var scriptTag = document.createElement('script');
scriptTag.classList.add('jdgm-theme-fix-script');
scriptTag.innerHTML = thisThemeFix.js;
document.head.append(scriptTag);
};
})();
</script>
<!-- END app snippet -->
<!-- End of Judge.me Core -->
<!-- END app app block --><!-- BEGIN app block: shopify://apps/trust-badge-master/blocks/app-embed/268c65b9-8f6b-465d-9ba7-22a9aa3689e6 --><!-- BEGIN app snippet: hulkcode_trustbadge --><script>
var shop_id = 'makhzan-uae.myshopify.com';
var partner_url = 'https://badgemaster.hulkapps.com';
window.bm_url = "https://makhzan.ae"
</script>
<style>
@font-face{font-family:PaymentFont;src:url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.eot');src:url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.eot') format('embedded-opentype'),url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.woff') format('woff2'),url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.woff') format('woff'),url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.ttf') format('truetype'),url('https://badgemaster.hulkapps.com/assets/paymentfont-webfont.svg') format('svg');font-weight:400;font-style:normal}
.pf{display:inline-block;font:normal normal normal 14px/1 PaymentFont;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pf-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.pf-2x{font-size:2em}.pf-3x{font-size:3em}.pf-4x{font-size:4em}.pf-5x{font-size:5em}.pf-amazon:before{content:'\f000'}.pf-american-express:before{content:'\f001'}.pf-american-express-alt:before{content:'\f002'}.pf-atm:before{content:'\f003'}.pf-bankomat:before{content:'\f004'}.pf-bank-transfer:before{content:'\f005'}.pf-bitcoin:before{content:'\f006'}.pf-bitcoin-sign:before{content:'\f007'}.pf-braintree:before{content:'\f008'}.pf-btc:before{content:'\f009'}.pf-card:before{content:'\f00a'}.pf-carta-si:before{content:'\f00b'}.pf-cash:before{content:'\f00c'}.pf-cash-on-delivery:before{content:'\f00d'}.pf-cb:before{content:'\f00e'}.pf-cirrus:before{content:'\f00f'}.pf-cirrus-alt:before{content:'\f010'}.pf-clickandbuy:before{content:'\f011'}.pf-credit-card:before{content:'\f012'}.pf-diners:before{content:'\f013'}.pf-discover:before{content:'\f014'}.pf-ec:before{content:'\f015'}.pf-eps:before{content:'\f016'}.pf-eur:before{content:'\f017'}.pf-facture:before{content:'\f018'}.pf-fattura:before{content:'\f019'}.pf-flattr:before{content:'\f01a'}.pf-giropay:before{content:'\f01b'}.pf-google-wallet:before{content:'\f01c'}.pf-google-wallet-alt:before{content:'\f01d'}.pf-gpb:before{content:'\f01e'}.pf-gratipay:before{content:'\f01f'}.pf-ideal:before{content:'\f020'}.pf-ils:before{content:'\f021'}.pf-inr:before{content:'\f022'}.pf-invoice:before{content:'\f023'}.pf-invoice-sign:before{content:'\f024'}.pf-invoice-sign-alt:before{content:'\f025'}.pf-invoice-sign-alt-o:before{content:'\f026'}.pf-invoice-sign-o:before{content:'\f027'}.pf-jcb:before{content:'\f028'}.pf-jpy:before{content:'\f029'}.pf-krw:before{content:'\f02a'}.pf-maestro:before{content:'\f02b'}.pf-maestro-alt:before{content:'\f02c'}.pf-mastercard:before{content:'\f02d'}.pf-mastercard-alt:before{content:'\f02e'}.pf-mastercard-securecode:before{content:'\f02f'}.pf-ogone:before{content:'\f030'}.pf-paybox:before{content:'\f031'}.pf-paylife:before{content:'\f032'}.pf-paypal:before{content:'\f033'}.pf-paypal-alt:before{content:'\f034'}.pf-paysafecard:before{content:'\f035'}.pf-postepay:before{content:'\f036'}.pf-quick:before{content:'\f037'}.pf-rechnung:before{content:'\f038'}.pf-ripple:before{content:'\f039'}.pf-rub:before{content:'\f03a'}.pf-skrill:before{content:'\f03b'}.pf-sofort:before{content:'\f03c'}.pf-square:before{content:'\f03d'}.pf-stripe:before{content:'\f03e'}.pf-truste:before{content:'\f03f'}.pf-try:before{content:'\f040'}.pf-unionpay:before{content:'\f041'}.pf-usd:before{content:'\f042'}.pf-verified-by-visa:before{content:'\f043'}.pf-verisign:before{content:'\f044'}
.pf-visa:before{content:'\f045'}
.pf-visa-electron:before{content:'\f046'}
.pf-western-union:before{content:'\f047'}
.pf-western-union-alt:before{content:'\f048'}
.pf-wirecard:before{content:'\f049'}.pf-sepa:before{content:'\f04a'}.pf-sepa-alt:before{content:'\f04b'}.pf-apple-pay:before{content:'\f04c'}.pf-interac:before{content:'\f04d'}.pf-paymill:before{content:'\f04e'}.pf-dankort:before{content:'\f04f'}.pf-bancontact-mister-cash:before{content:'\f050'}.pf-moip:before{content:'\f051'}.pf-pagseguro:before{content:'\f052'}.pf-cash-on-pickup:before{content:'\f053'}.pf-sage:before{content:'\f054'}.pf-elo:before{content:'\f055'}.pf-elo-alt:before{content:'\f056'}.pf-payu:before{content:'\f057'}.pf-mercado-pago:before{content:'\f058'}.pf-mercado-pago-sign:before{content:'\f059'}.pf-payshop:before{content:'\f05a'}.pf-multibanco:before{content:'\f05b'}.pf-gratipay-sign:before{content:'\f05c'}.pf-six:before{content:'\f05d'}.pf-cashcloud:before{content:'\f05e'}.pf-interac-alt:before{content:'\f05f'}.pf-klarna:before{content:'\f060'}.pf-bitpay:before{content:'\f061'}.pf-venmo:before{content:'\f062'}.pf-visa-debit:before{content:'\f063'}.pf-alipay:before{content:'\f064'}.pf-diners-alt:before{content:'\f065'}.pf-hipercard:before{content:'\f066'}.pf-skrill-alt:before{content:'\f067'}.pf-shopify:before{content:'\f068'}.pf-direct-debit:before{content:'\f069'}.pf-sodexo:before{content:'\f06a'}.pf-bpay:before{content:'\f06b'}.pf-contactless:before{content:'\f06c'}.pf-contactless-alt:before{content:'\f06d'}.pf-eth:before{content:'\f06e'}.pf-ltc:before{content:'\f06f'}.pf-visa-pay:before{content:'\f070'}.pf-wechat-pay:before{content:'\f071'}.pf-amazon-pay:before{content:'\f072'}.pf-amazon-pay-alt:before{content:'\f073'}
/*!
* @package IcoFont
* @version 1.0.1
* @author IcoFont https://icofont.com
* @copyright Copyright (c) 2015 - 2018 IcoFont
* @license - https://icofont.com/license/
*/
@font-face
{
font-family: 'IcoFont';
font-weight: normal;
font-style: 'Regular';
src: url('https://badgemaster.hulkapps.com/assets/icofont.woff2') format('woff2');
url('https://badgemaster.hulkapps.com/assets/icofont.woff') format('woff');
}
[class^='icofont-'], [class*=' icofont-']
{
font-family: 'IcoFont' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
font-size: 100px;
text-transform: none;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
.icofont-2checkout-alt:before
{
content: '\ecbc';
}
.icofont-2checkout:before
{
content: '\ecbd';
}
.icofont-amazon-alt:before
{
content: '\ecbe';
}
.icofont-amazon:before
{
content: '\ecbf';
}
.icofont-american-express-alt:before
{
content: '\ecc0';
}
.icofont-american-express:before
{
content: '\ecc1';
}
.icofont-apple-pay-alt:before
{
content: '\ecc2';
}
.icofont-apple-pay:before
{
content: '\ecc3';
}
.icofont-bank-transfer-alt:before
{
content: '\ecc4';
}
.icofont-bank-transfer:before
{
content: '\ecc5';
}
.icofont-braintree-alt:before
{
content: '\ecc6';
}
.icofont-braintree:before
{
content: '\ecc7';
}
.icofont-cash-on-delivery-alt:before
{
content: '\ecc8';
}
.icofont-cash-on-delivery:before
{
content: '\ecc9';
}
.icofont-diners-club-alt-1:before
{
content: '\ecca';
}
.icofont-diners-club-alt-2:before
{
content: '\eccb';
}
.icofont-diners-club-alt-3:before
{
content: '\eccc';
}
.icofont-diners-club:before
{
content: '\eccd';
}
.icofont-discover-alt:before
{
content: '\ecce';
}
.icofont-discover:before
{
content: '\eccf';
}
.icofont-eway-alt:before
{
content: '\ecd0';
}
.icofont-eway:before
{
content: '\ecd1';
}
.icofont-google-wallet-alt-1:before
{
content: '\ecd2';
}
.icofont-google-wallet-alt-2:before
{
content: '\ecd3';
}
.icofont-google-wallet-alt-3:before
{
content: '\ecd4';
}
.icofont-google-wallet:before
{
content: '\ecd5';
}
.icofont-jcb-alt:before
{
content: '\ecd6';
}
.icofont-jcb:before
{
content: '\ecd7';
}
.icofont-maestro-alt:before
{
content: '\ecd8';
}
.icofont-maestro:before
{
content: '\ecd9';
}
.icofont-mastercard-alt:before
{
content: '\ecda';
}
.icofont-mastercard:before
{
content: '\ecdb';
}
.icofont-payoneer-alt:before
{
content: '\ecdc';
}
.icofont-payoneer:before
{
content: '\ecdd';
}
.icofont-paypal-alt:before
{
content: '\ecde';
}
.icofont-paypal:before
{
content: '\ecdf';
}
.icofont-sage-alt:before
{
content: '\ece0';
}
.icofont-sage:before
{
content: '\ece1';
}
.icofont-skrill-alt:before
{
content: '\ece2';
}
.icofont-skrill:before
{
content: '\ece3';
}
.icofont-stripe-alt:before
{
content: '\ece4';
}
.icofont-stripe:before
{
content: '\ece5';
}
.icofont-visa-alt:before
{
content: '\ece6';
}
.icofont-visa-electron:before
{
content: '\ece7';
}
.icofont-visa:before
{
content: '\ece8';
}
.icofont-western-union-alt:before
{
content: '\ece9';
}
.icofont-western-union:before
{
content: '\ecea';
}
.icofont-xs
{
font-size: .5em;
}
.icofont-sm
{
font-size: .75em;
}
.icofont-md
{
font-size: 1.25em;
}
.icofont-lg
{
font-size: 1.5em;
}
.icofont-1x
{
font-size: 1em;
}
.icofont-2x
{
font-size: 2em;
}
.icofont-3x
{
font-size: 3em;
}
.icofont-4x
{
font-size: 4em;
}
.icofont-5x
{
font-size: 5em;
}
.icofont-6x
{
font-size: 6em;
}
.icofont-7x
{
font-size: 7em;
}
.icofont-8x
{
font-size: 8em;
}
.icofont-9x
{
font-size: 9em;
}
.icofont-10x
{
font-size: 10em;
}
.icofont-fw
{
text-align: center;
width: 1.25em;
}
.icofont-ul
{
list-style-type: none;
padding-left: 0;
margin-left: 0;
}
.icofont-ul > li
{
position: relative;
line-height: 2em;
}
.icofont-ul > li .icofont
{
display: inline-block;
vertical-align: middle;
}
.icofont-border
{
border: solid 0.08em #f1f1f1;
border-radius: .1em;
padding: .2em .25em .15em;
}
.icofont-pull-left
{
float: left;
}
.icofont-pull-right
{
float: right;
}
.icofont.icofont-pull-left
{
margin-right: .3em;
}
.icofont.icofont-pull-right
{
margin-left: .3em;
}
.icofont-spin
{
-webkit-animation: icofont-spin 2s infinite linear;
animation: icofont-spin 2s infinite linear;
display: inline-block;
}
.icofont-pulse
{
-webkit-animation: icofont-spin 1s infinite steps(8);
animation: icofont-spin 1s infinite steps(8);
display: inline-block;
}
@-webkit-keyframes icofont-spin
{
0%
{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100%
{
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes icofont-spin
{
0%
{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100%
{
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.icofont-rotate-90
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.icofont-rotate-180
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.icofont-rotate-270
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
.icofont-flip-horizontal
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.icofont-flip-vertical
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
}
.icofont-flip-horizontal.icofont-flip-vertical
{
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
-webkit-transform: scale(-1, -1);
transform: scale(-1, -1);
}
:root .icofont-rotate-90,
:root .icofont-rotate-180,
:root .icofont-rotate-270,
:root .icofont-flip-horizontal,
:root .icofont-flip-vertical
{
-webkit-filter: none;
filter: none;
display: inline-block;
}
.icofont-inverse
{
color: #fff;
}
.sr-only
{
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus
{
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
</style><!-- END app snippet --><script>
window.HulkBadgeMaster = window.HulkBadgeMaster || {};
window.HulkBadgeMaster['hulkapps_badge_master'] = {"badge_heading":"Buy with confidence","trust_payment_heading":"Secured and trusted checkout with:"};
</script>
<!-- END app app block --><script src="https://cdn.shopify.com/extensions/56921d68-8665-4bf1-b39c-7235caeb33d9/trust-badge-master-3/assets/hulkapps_badge_master.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/56756762-920d-4d85-ac46-56a48217225e/cod-king-185/assets/script.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/56756762-920d-4d85-ac46-56a48217225e/cod-king-185/assets/styles.css" rel="stylesheet" type="text/css" media="all">
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<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: 85888368913,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>
<script id="web-pixels-manager-setup">(function d(d,e,r,a,n){var o,i,t,s,l=(i=(o={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:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-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:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-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+|)/}).modern,t=o.legacy,s=navigator.userAgent,i.test(s)?"modern":(t.test(s),"legacy"));window.Shopify=window.Shopify||{};var c=window.Shopify;c.analytics=c.analytics||{};var u=c.analytics;u.replayQueue=[],u.publish=function(d,e,r){return u.replayQueue.push([d,e,r]),!0};try{self.performance.mark("wpm:start")}catch(d){}var h=[r,"/wpm","/b",n,l.substring(0,1),".js"].join("");!function(d){var e=d.src,r=d.async,a=void 0===r||r,n=d.onload,o=d.onerror,i=document.createElement("script"),t=document.head,s=document.body;i.async=a,i.src=e,n&&i.addEventListener("load",n),o&&i.addEventListener("error",o),t?t.appendChild(i):s?s.appendChild(i):console.error("Did not find a head or body element to append the script")}({src:h,async:!0,onload:function(){var r=window.webPixelsManager.init(d);e(r);var a=window.Shopify.analytics;a.replayQueue.forEach((function(d){var e=d[0],a=d[1],n=d[2];r.publishCustomEvent(e,a,n)})),a.replayQueue=[],a.publish=r.publishCustomEvent,a.visitor=r.visitor},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),r="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),n=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:a||"latest",bundle_target:l,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(h," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(r,n))return!0}catch(d){}var o=new XMLHttpRequest;try{return o.open("POST",r,!0),o.setRequestHeader("Content-Type","text/plain"),o.send(n),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1}})})({shopId: 85888368913,storefrontBaseUrl: "https://makhzan.ae",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: [],webPixelsConfigList: [{"id":"761037073","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-GRCJJHD386\\\",\\\"target_country\\\":\\\"AE\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/FX5iCPOlupgZEKbe77I9\\\"]},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/NaADCO-nupgZEKbe77I9\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/nk4FCPClupgZEKbe77I9\\\",\\\"MC-ZEY7LF4JBV\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/tNdeCOqlupgZEKbe77I9\\\",\\\"MC-ZEY7LF4JBV\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/HUviCO2lupgZEKbe77I9\\\",\\\"MC-ZEY7LF4JBV\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/ijZLCPKnupgZEKbe77I9\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-GRCJJHD386\\\",\\\"AW-16481251110\\\/nea0COynupgZEKbe77I9\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"afe7c2de16587d6c6689522527d6c67f","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"690389265","configuration":"{\"pixelCode\":\"CNNB9M3C77U83OQ5D2V0\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"413270289","configuration":"{\"pixel_id\":\"1335948727074337\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"8d894c63179843e74a9691414b5ad83d","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Makhzan UAE","paymentSettings":{"currencyCode":"AED"},"myshopifyDomain":"makhzan-uae.myshopify.com","countryCode":"AE","storefrontUrl":"https:\/\/makhzan.ae"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://makhzan.ae/cdn","1518c2ba4d2b3301a1e3cb6576947ef22edf7bb6","3c762e5aw5b983e43pc2dc4883m545d5a27",);</script> <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'AED';
var meta = {"page":{"pageType":"home"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}</script>
<script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
};
</script>
<script class="analytics">(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 85888368913,
theme_id: 166560563473,
app_name: "storefront",
context_url: window.location.href,
source_url: "//makhzan.ae/cdn/s/trekkie.storefront.20de3b35f21c3bd6ff73e3f1547eb7d54e6e94e4.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//makhzan.ae/cdn/s/trekkie.storefront.20de3b35f21c3bd6ff73e3f1547eb7d54e6e94e4.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//makhzan.ae/cdn/s/trekkie.storefront.20de3b35f21c3bd6ff73e3f1547eb7d54e6e94e4.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":85888368913,"isMerchantRequest":null,"themeId":166560563473,"themeCityHash":"12179158790637046264","contentLanguage":"en","currency":"AED"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(null,{"pageType":"home"});
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//makhzan.ae/cdn/shopifycloud/shopify/assets/shop_events_listener-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script class="boomerang">
(function () {
window.BOOMR = window.BOOMR || {};
window.BOOMR.themeName = "Sense";
window.BOOMR.themeVersion = "13.0.1";
window.BOOMR.shopId = 85888368913;
window.BOOMR.themeId = 166560563473;
})();</script>
<script
defer
src="https://makhzan.ae/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.0.1.min.js"
data-application="storefront-renderer"
data-shop-id="85888368913"
data-render-region="gcp-us-east1"
data-page-type="index"
data-theme-instance-id="166560563473"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
></script>
</head>
<body class="gradient animate--hover-default">
<a class="skip-to-content-link button visually-hidden" href="#MainContent">
Skip to content
</a>
<link href="//makhzan.ae/cdn/shop/t/12/assets/quantity-popover.css?v=153075665213740339621712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-card.css?v=170127402091165654191712479486" rel="stylesheet" type="text/css" media="all" />
<script src="//makhzan.ae/cdn/shop/t/12/assets/cart.js?v=116571066492035312161712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/quantity-popover.js?v=19455713230017000861712479486" defer="defer"></script>
<style>
.drawer {
visibility: hidden;
}
</style>
<cart-drawer class="drawer is-empty">
<div id="CartDrawer" class="cart-drawer">
<div id="CartDrawer-Overlay" class="cart-drawer__overlay"></div>
<div
class="drawer__inner gradient color-scheme-1"
role="dialog"
aria-modal="true"
aria-label="Your cart"
tabindex="-1"><div class="drawer__inner-empty">
<div class="cart-drawer__warnings center">
<div class="cart-drawer__empty-content">
<h2 class="cart__empty-text">Your cart is empty</h2>
<button
class="drawer__close"
type="button"
onclick="this.closest('cart-drawer').close()"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<a href="/collections/all" class="button">
Continue shopping
</a><p class="cart__login-title h3">Have an account?</p>
<p class="cart__login-paragraph">
<a href="https://account.makhzan.ae?locale=en®ion_country=AE" class="link underlined-link">Log in</a> to check out faster.
</p></div>
</div></div><div class="drawer__header">
<h2 class="drawer__heading">Your cart</h2>
<button
class="drawer__close"
type="button"
onclick="this.closest('cart-drawer').close()"
aria-label="Close">
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
</div>
<cart-drawer-items
class=" is-empty"
>
<form
action="/cart"
id="CartDrawer-Form"
class="cart__contents cart-drawer__form"
method="post">
<div id="CartDrawer-CartItems" class="drawer__contents js-contents"><p id="CartDrawer-LiveRegionText" class="visually-hidden" role="status"></p>
<p id="CartDrawer-LineItemStatus" class="visually-hidden" aria-hidden="true" role="status">
Loading...
</p>
</div>
<div id="CartDrawer-CartErrors" role="alert"></div>
</form>
</cart-drawer-items>
<div class="upsell-container">
<div class="title">
You may also like
</div>
<div class="upsell-inner-section">
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper width-divide-card underline-links-hover">
<div
class="
upsell-card-custom card card--standard
card--media
"
style="--ratio-percent: 100%;">
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"><div class="card__media">
<div class="media media--transparent media--hover-effect border-radius">
<img
src="//makhzan.ae/cdn/shop/files/PlantusRadiantSkinAntiBlemishProbioticSerum-50ml_small.jpg?v=1712317867"
data-src="//makhzan.ae/cdn/shop/files/PlantusRadiantSkinAntiBlemishProbioticSerum-50ml.jpg?v=1712317867&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Probiotic Anti-Blemish Alpha Arbutin Serum"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information small-padding">
<h3
class="card__heading"
>
<a
href="/products/radiant-skin-anti-blemish-serum-alpha-arbutin"
id="StandardCardNoMediaLink--9297805443345"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink--9297805443345 NoMediaStandardBadge--9297805443345"
>
Plantus Radiant Skin Anti Blemish Serum - Alpha Arbutin
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge--9297805443345"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content remove-padding">
<div class="card__information small-padding">
<h3
class="card__heading h5"
id="title--9297805443345"
>
<a
href="/products/radiant-skin-anti-blemish-serum-alpha-arbutin"
id="CardLink--9297805443345"
class="full-unstyled-link"
aria-labelledby="CardLink--9297805443345 Badge--9297805443345"
>
Plantus Radiant Skin Anti Blemish Serum - Alpha Arbutin
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 72.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
85.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 72.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
<product-form
class="product-form bundler-product-form"
data-hide-errors=""
data-section-id="">
<div class="product-form__error-message-wrapper" role="alert" hidden>
<svg
aria-hidden="true"
focusable="false"
class="icon icon-error"
viewBox="0 0 13 13">
<circle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/>
<circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width="0.7"/>
<path d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/>
<path d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="#EB001B" stroke-width="0.7">
</svg>
<span class="product-form__error-message"></span>
</div><form method="post" action="/cart/add" 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 type="hidden" name="id" value="48901688361233">
<input type="hidden" name="quantity" value="1">
<div class="product-form__buttons"><button
id="ProductSubmitButton-"
type="submit"
name="add"
class="upsell-addtocart upsell-button product-form__submit button button--full-width button--primary"
>
<span>Add to cart
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</div><input type="hidden" name="product-id" value="9297805443345" /></form></product-form>
</div><div class="card__badge bottom left"><span
id="Badge--9297805443345"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper width-divide-card underline-links-hover">
<div
class="
upsell-card-custom card card--standard
card--media
"
style="--ratio-percent: 100%;">
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"><div class="card__media">
<div class="media media--transparent media--hover-effect border-radius">
<img
src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionSerumforAntiagingCare-50ml_1_small.jpg?v=1710137524"
data-src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionSerumforAntiagingCare-50ml_1.jpg?v=1710137524&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Skin Renewal Serum | Antiwrinkle Serum "
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information small-padding">
<h3
class="card__heading"
>
<a
href="/products/antiaging-serum-for-fine-lines-and-wrinkles"
id="StandardCardNoMediaLink--9287452655889"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink--9287452655889 NoMediaStandardBadge--9287452655889"
>
Plantus Repair Reflection Serum-Antiaging Serum
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge--9287452655889"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content remove-padding">
<div class="card__information small-padding">
<h3
class="card__heading h5"
id="title--9287452655889"
>
<a
href="/products/antiaging-serum-for-fine-lines-and-wrinkles"
id="CardLink--9287452655889"
class="full-unstyled-link"
aria-labelledby="CardLink--9287452655889 Badge--9287452655889"
>
Plantus Repair Reflection Serum-Antiaging Serum
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 80.75 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
95.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 80.75 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
<product-form
class="product-form bundler-product-form"
data-hide-errors=""
data-section-id="">
<div class="product-form__error-message-wrapper" role="alert" hidden>
<svg
aria-hidden="true"
focusable="false"
class="icon icon-error"
viewBox="0 0 13 13">
<circle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/>
<circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width="0.7"/>
<path d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/>
<path d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="#EB001B" stroke-width="0.7">
</svg>
<span class="product-form__error-message"></span>
</div><form method="post" action="/cart/add" 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 type="hidden" name="id" value="48901689639185">
<input type="hidden" name="quantity" value="1">
<div class="product-form__buttons"><button
id="ProductSubmitButton-"
type="submit"
name="add"
class="upsell-addtocart upsell-button product-form__submit button button--full-width button--primary"
>
<span>Add to cart
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</div><input type="hidden" name="product-id" value="9287452655889" /></form></product-form>
</div><div class="card__badge bottom left"><span
id="Badge--9287452655889"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper width-divide-card underline-links-hover">
<div
class="
upsell-card-custom card card--standard
card--media
"
style="--ratio-percent: 100%;">
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"><div class="card__media">
<div class="media media--transparent media--hover-effect border-radius">
<img
src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinPurifyingTonic-150ml_small.jpg?v=1710137530"
data-src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinPurifyingTonic-150ml.jpg?v=1710137530&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Oil Control Facial Tonic | Purifying Facial Toner "
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information small-padding">
<h3
class="card__heading"
>
<a
href="/products/natural-facial-toner-purifying-tonic"
id="StandardCardNoMediaLink--9297787289873"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink--9297787289873 NoMediaStandardBadge--9297787289873"
>
Plantus SmoothSkin Purifying Facial Tonic - Facial Toner
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge--9297787289873"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content remove-padding">
<div class="card__information small-padding">
<h3
class="card__heading h5"
id="title--9297787289873"
>
<a
href="/products/natural-facial-toner-purifying-tonic"
id="CardLink--9297787289873"
class="full-unstyled-link"
aria-labelledby="CardLink--9297787289873 Badge--9297787289873"
>
Plantus SmoothSkin Purifying Facial Tonic - Facial Toner
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 55.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
65.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 55.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
<product-form
class="product-form bundler-product-form"
data-hide-errors=""
data-section-id="">
<div class="product-form__error-message-wrapper" role="alert" hidden>
<svg
aria-hidden="true"
focusable="false"
class="icon icon-error"
viewBox="0 0 13 13">
<circle cx="6.5" cy="6.50049" r="5.5" stroke="white" stroke-width="2"/>
<circle cx="6.5" cy="6.5" r="5.5" fill="#EB001B" stroke="#EB001B" stroke-width="0.7"/>
<path d="M5.87413 3.52832L5.97439 7.57216H7.02713L7.12739 3.52832H5.87413ZM6.50076 9.66091C6.88091 9.66091 7.18169 9.37267 7.18169 9.00504C7.18169 8.63742 6.88091 8.34917 6.50076 8.34917C6.12061 8.34917 5.81982 8.63742 5.81982 9.00504C5.81982 9.37267 6.12061 9.66091 6.50076 9.66091Z" fill="white"/>
<path d="M5.87413 3.17832H5.51535L5.52424 3.537L5.6245 7.58083L5.63296 7.92216H5.97439H7.02713H7.36856L7.37702 7.58083L7.47728 3.537L7.48617 3.17832H7.12739H5.87413ZM6.50076 10.0109C7.06121 10.0109 7.5317 9.57872 7.5317 9.00504C7.5317 8.43137 7.06121 7.99918 6.50076 7.99918C5.94031 7.99918 5.46982 8.43137 5.46982 9.00504C5.46982 9.57872 5.94031 10.0109 6.50076 10.0109Z" fill="white" stroke="#EB001B" stroke-width="0.7">
</svg>
<span class="product-form__error-message"></span>
</div><form method="post" action="/cart/add" 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 type="hidden" name="id" value="48841487221009">
<input type="hidden" name="quantity" value="1">
<div class="product-form__buttons"><button
id="ProductSubmitButton-"
type="submit"
name="add"
class="upsell-addtocart upsell-button product-form__submit button button--full-width button--primary"
>
<span>Add to cart
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</div><input type="hidden" name="product-id" value="9297787289873" /></form></product-form>
</div><div class="card__badge bottom left"><span
id="Badge--9297787289873"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</div>
</div><div class="drawer__footer"><details class="hidding-it" id="Details-CartDrawer">
<summary>
<span class="summary__title">
Order special instructions
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</span>
</summary>
<cart-note class="cart__note field">
<label class="visually-hidden" for="CartDrawer-Note">Order special instructions</label>
<textarea
id="CartDrawer-Note"
class="text-area text-area--resize-vertical field__input"
name="note"
placeholder="Order special instructions"
></textarea>
</cart-note>
</details><!-- Start blocks -->
<!-- Subtotals -->
<div class="cart-drawer__footer" >
<div></div>
<div class="totals" role="status">
<h2 class="totals__total">Estimated total</h2>
<p class="totals__total-value">0.00 AED</p>
</div>
<small class="tax-note caption-large rte">Taxes, Discounts and <a href="/policies/shipping-policy">shipping</a> calculated at checkout
</small>
</div>
<!-- CTAs -->
<div class="cart__ctas" >
<noscript>
<button type="submit" class="cart__update-button button button--secondary" form="CartDrawer-Form">
Update
</button>
</noscript>
<button
type="submit"
id="CartDrawer-Checkout"
class="cart__checkout-button button"
name="checkout"
form="CartDrawer-Form"
disabled
>
Check out
</button>
</div>
</div>
</div>
</div>
</cart-drawer>
<style>
.upsell-container {
overflow-x: scroll;
}
.upsell-inner-section {
width: 1000px;;
height: 80%;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 10px;
margin: 10px;
}
.upsell-card-custom {
display: flex;
flex-direction: row !important;
}
.upsell-card-custom div:first-child {
flex: 1;
}
.upsell-card-custom div:last-child {
flex: 2;
}
.upsell-card-custom div:last-child h3 {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-wrapper.product-card-wrapper.width-divide-card {
width: calc(1000px / 3);
}
.upsell-card-custom a::after {
z-index: -1 !important
}
.remove-padding {
padding: 0px !important;
}
.small-padding {
padding: 0.7rem !important;
}
.upsell-addtocart.upsell-button {
margin-top: 4px !important;
margin-bottom: 0px !important;
padding: 0px !important;
min-height: 40px !important;
}
.upsell-container::-webkit-scrollbar {
height: 3px;
}
.upsell-container::-webkit-scrollbar-thumb {
background-color: rgba(var(--color-foreground), 0.7);
border-radius: 100px;
}
.border-radius {
border-radius: 20px 0px 0px 20px !important;
}
.upsell-container::-webkit-scrollbar-track-piece {
margin-top: 31px;
}
.title{
margin: 10px 0px;
font-weight: bold;
font-size: 16px;
}
.hidding-it{
display: none;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function () {
function isIE() {
const ua = window.navigator.userAgent;
const msie = ua.indexOf('MSIE ');
const trident = ua.indexOf('Trident/');
return msie > 0 || trident > 0;
}
if (!isIE()) return;
const cartSubmitInput = document.createElement('input');
cartSubmitInput.setAttribute('name', 'checkout');
cartSubmitInput.setAttribute('type', 'hidden');
document.querySelector('#cart').appendChild(cartSubmitInput);
document.querySelector('#checkout').addEventListener('click', function (event) {
document.querySelector('#cart').submit();
});
});
</script>
<!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--22342062407953__announcement-bar" class="shopify-section shopify-section-group-header-group announcement-bar-section"><link href="//makhzan.ae/cdn/shop/t/12/assets/component-slideshow.css?v=107725913939919748051712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slider.css?v=142503135496229589681712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-list-social.css?v=35792976012981934991712479486" rel="stylesheet" type="text/css" media="all" />
<div
class="utility-bar color-scheme-2 gradient utility-bar--bottom-border"
>
<div class="page-width utility-bar__grid"><slideshow-component
class="announcement-bar"
role="region"
aria-roledescription="Carousel"
aria-label="Announcement bar"
>
<div class="announcement-bar-slider slider-buttons">
<button
type="button"
class="slider-button slider-button--prev"
name="previous"
aria-label="Previous announcement"
aria-controls="Slider-sections--22342062407953__announcement-bar"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div
class="grid grid--1-col slider slider--everywhere"
id="Slider-sections--22342062407953__announcement-bar"
aria-live="polite"
aria-atomic="true"
data-autoplay="true"
data-speed="5"
><div
class="slideshow__slide slider__slide grid__item grid--1-col"
id="Slide-sections--22342062407953__announcement-bar-1"
role="group"
aria-roledescription="Announcement"
aria-label="1 of 5"
tabindex="-1"
>
<div
class="announcement-bar__announcement"
role="region"
aria-label="Announcement"
><p class="announcement-bar__message h5">
<span>Natural skincare products made with love</span></p></div>
</div><div
class="slideshow__slide slider__slide grid__item grid--1-col"
id="Slide-sections--22342062407953__announcement-bar-2"
role="group"
aria-roledescription="Announcement"
aria-label="2 of 5"
tabindex="-1"
>
<div
class="announcement-bar__announcement"
role="region"
aria-label="Announcement"
><p class="announcement-bar__message h5">
<span>Free delivery in UAE at 100 AED</span></p></div>
</div><div
class="slideshow__slide slider__slide grid__item grid--1-col"
id="Slide-sections--22342062407953__announcement-bar-3"
role="group"
aria-roledescription="Announcement"
aria-label="3 of 5"
tabindex="-1"
>
<div
class="announcement-bar__announcement"
role="region"
aria-label="Announcement"
><p class="announcement-bar__message h5">
<span>Welcome to our store</span></p></div>
</div><div
class="slideshow__slide slider__slide grid__item grid--1-col"
id="Slide-sections--22342062407953__announcement-bar-4"
role="group"
aria-roledescription="Announcement"
aria-label="4 of 5"
tabindex="-1"
>
<div
class="announcement-bar__announcement"
role="region"
aria-label="Announcement"
><p class="announcement-bar__message h5">
<span>Clean , high quality wellness supplements</span></p></div>
</div><div
class="slideshow__slide slider__slide grid__item grid--1-col"
id="Slide-sections--22342062407953__announcement-bar-5"
role="group"
aria-roledescription="Announcement"
aria-label="5 of 5"
tabindex="-1"
>
<div
class="announcement-bar__announcement"
role="region"
aria-label="Announcement"
><p class="announcement-bar__message h5">
<span>Brands and products formulated with natural ingredients</span></p></div>
</div></div>
<button
type="button"
class="slider-button slider-button--next"
name="next"
aria-label="Next announcement"
aria-controls="Slider-sections--22342062407953__announcement-bar"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
</div>
</slideshow-component><div class="localization-wrapper">
</div>
</div>
</div>
</div><div id="shopify-section-sections--22342062407953__header" class="shopify-section shopify-section-group-header-group section-header"><link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-list-menu.css?v=151968516119678728991712479486" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-search.css?v=165164710990765432851712479486" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-menu-drawer.css?v=85170387104997277661712479486" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-cart-notification.css?v=54116361853792938221712479486" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-cart-items.css?v=136978088507021421401712479486" media="print" onload="this.media='all'"><link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-price.css?v=70172745017360139101712479486" media="print" onload="this.media='all'"><link rel="stylesheet" href="//makhzan.ae/cdn/shop/t/12/assets/component-mega-menu.css?v=10110889665867715061712479486" media="print" onload="this.media='all'">
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-mega-menu.css?v=10110889665867715061712479486" rel="stylesheet" type="text/css" media="all" /></noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-cart-drawer.css?v=104658658042789908881712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-cart.css?v=181291337967238571831712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-totals.css?v=15906652033866631521712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-price.css?v=70172745017360139101712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-discounts.css?v=152760482443307489271712479486" rel="stylesheet" type="text/css" media="all" />
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-list-menu.css?v=151968516119678728991712479486" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-search.css?v=165164710990765432851712479486" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-menu-drawer.css?v=85170387104997277661712479486" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-cart-notification.css?v=54116361853792938221712479486" rel="stylesheet" type="text/css" media="all" /></noscript>
<noscript><link href="//makhzan.ae/cdn/shop/t/12/assets/component-cart-items.css?v=136978088507021421401712479486" rel="stylesheet" type="text/css" media="all" /></noscript>
<style>
header-drawer {
justify-self: start;
margin-left: -1.2rem;
}.scrolled-past-header .header__heading-logo-wrapper {
width: 75%;
}@media screen and (min-width: 990px) {
header-drawer {
display: none;
}
}.menu-drawer-container {
display: flex;
}
.list-menu {
list-style: none;
padding: 0;
margin: 0;
}
.list-menu--inline {
display: inline-flex;
flex-wrap: wrap;
}
summary.list-menu__item {
padding-right: 2.7rem;
}
.list-menu__item {
display: flex;
align-items: center;
line-height: calc(1 + 0.3 / var(--font-body-scale));
}
.list-menu__item--link {
text-decoration: none;
padding-bottom: 1rem;
padding-top: 1rem;
line-height: calc(1 + 0.8 / var(--font-body-scale));
}
@media screen and (min-width: 750px) {
.list-menu__item--link {
padding-bottom: 0.5rem;
padding-top: 0.5rem;
}
}
</style><style data-shopify>.header {
padding: 10px 3rem 10px 3rem;
}
.section-header {
position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
margin-bottom: 12px;
}
@media screen and (min-width: 750px) {
.section-header {
margin-bottom: 16px;
}
}
@media screen and (min-width: 990px) {
.header {
padding-top: 20px;
padding-bottom: 20px;
}
}</style><script src="//makhzan.ae/cdn/shop/t/12/assets/details-disclosure.js?v=13653116266235556501712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/details-modal.js?v=25581673532751508451712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/cart-notification.js?v=133508293167896966491712479486" defer="defer"></script>
<script src="//makhzan.ae/cdn/shop/t/12/assets/search-form.js?v=133129549252120666541712479486" defer="defer"></script><script src="//makhzan.ae/cdn/shop/t/12/assets/cart-drawer.js?v=105077087914686398511712479486" defer="defer"></script><svg xmlns="http://www.w3.org/2000/svg" class="hidden">
<symbol id="icon-search" viewbox="0 0 18 19" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.03 11.68A5.784 5.784 0 112.85 3.5a5.784 5.784 0 018.18 8.18zm.26 1.12a6.78 6.78 0 11.72-.7l5.4 5.4a.5.5 0 11-.71.7l-5.41-5.4z" fill="currentColor"/>
</symbol>
<symbol id="icon-reset" class="icon icon-close" fill="none" viewBox="0 0 18 18" stroke="currentColor">
<circle r="8.5" cy="9" cx="9" stroke-opacity="0.2"/>
<path d="M6.82972 6.82915L1.17193 1.17097" stroke-linecap="round" stroke-linejoin="round" transform="translate(5 5)"/>
<path d="M1.22896 6.88502L6.77288 1.11523" stroke-linecap="round" stroke-linejoin="round" transform="translate(5 5)"/>
</symbol>
<symbol id="icon-close" class="icon icon-close" fill="none" viewBox="0 0 18 17">
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</symbol>
</svg><sticky-header data-sticky-type="reduce-logo-size" class="header-wrapper color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a gradient header-wrapper--border-bottom"><header class="header header--top-center header--mobile-center page-width header--has-menu header--has-social header--has-account">
<header-drawer data-breakpoint="tablet">
<details id="Details-menu-drawer-container" class="menu-drawer-container">
<summary
class="header__icon header__icon--menu header__icon--summary link focus-inset"
aria-label="Menu"
>
<span>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-hamburger"
fill="none"
viewBox="0 0 18 16"
>
<path d="M1 .5a.5.5 0 100 1h15.71a.5.5 0 000-1H1zM.5 8a.5.5 0 01.5-.5h15.71a.5.5 0 010 1H1A.5.5 0 01.5 8zm0 7a.5.5 0 01.5-.5h15.71a.5.5 0 010 1H1a.5.5 0 01-.5-.5z" fill="currentColor">
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</span>
</summary>
<div id="menu-drawer" class="gradient menu-drawer motion-reduce color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a">
<div class="menu-drawer__inner-container">
<div class="menu-drawer__navigation-container">
<nav class="menu-drawer__navigation">
<ul class="menu-drawer__menu has-submenu list-menu" role="list"><li><a
id="HeaderDrawer-home"
href="/"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset menu-drawer__menu-item--active"
aria-current="page"
>
Home
</a></li><li><details id="Details-menu-drawer-menu-item-2">
<summary
id="HeaderDrawer-skin-care"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
>
Skin Care
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="link-skin-care"
class="menu-drawer__submenu has-submenu gradient motion-reduce"
tabindex="-1"
>
<div class="menu-drawer__inner-submenu">
<button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
Skin Care
</button>
<ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><details id="Details-menu-drawer-skin-care-facial-care">
<summary
id="HeaderDrawer-skin-care-facial-care"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Facial Care
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="childlink-facial-care"
class="menu-drawer__submenu has-submenu gradient motion-reduce"
>
<button
class="menu-drawer__close-button link link--text focus-inset"
aria-expanded="true"
>
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
Facial Care
</button>
<ul
class="menu-drawer__menu list-menu"
role="list"
tabindex="-1"
><li>
<a
id="HeaderDrawer-skin-care-facial-care-toners"
href="/collections/toners"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Toners
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-facial-care-cream"
href="/collections/creams"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Cream
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-facial-care-serum"
href="/collections/serums"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Serum
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-facial-care-soap"
href="/collections/soaps"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Soap
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-facial-care-make-up-removers"
href="/collections/makeup-removers"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Make Up Removers
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-facial-care-coffee-scrub"
href="/collections/coffee-scrubs"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Coffee Scrub
</a>
</li></ul>
</div>
</details></li><li><details id="Details-menu-drawer-skin-care-body-care">
<summary
id="HeaderDrawer-skin-care-body-care"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Body Care
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="childlink-body-care"
class="menu-drawer__submenu has-submenu gradient motion-reduce"
>
<button
class="menu-drawer__close-button link link--text focus-inset"
aria-expanded="true"
>
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
Body Care
</button>
<ul
class="menu-drawer__menu list-menu"
role="list"
tabindex="-1"
><li>
<a
id="HeaderDrawer-skin-care-body-care-soap"
href="/collections/body-soap"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Soap
</a>
</li><li>
<a
id="HeaderDrawer-skin-care-body-care-coffee-scrubs"
href="/collections/body-scrub"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Coffee Scrubs
</a>
</li></ul>
</div>
</details></li></ul>
</div>
</div>
</details></li><li><details id="Details-menu-drawer-menu-item-3">
<summary
id="HeaderDrawer-wellness-supplements"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
>
Wellness Supplements
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="link-wellness-supplements"
class="menu-drawer__submenu has-submenu gradient motion-reduce"
tabindex="-1"
>
<div class="menu-drawer__inner-submenu">
<button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
Wellness Supplements
</button>
<ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
id="HeaderDrawer-wellness-supplements-supplements-for-adults"
href="/collections/supplements-for-adults"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Supplements for Adults
</a></li><li><a
id="HeaderDrawer-wellness-supplements-supplements-for-kids"
href="/collections/childrens-multivitamin"
class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
>
Supplements for Kids
</a></li></ul>
</div>
</div>
</details></li><li><a
id="HeaderDrawer-about-us"
href="/pages/about-us"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
>
About us
</a></li><li><a
id="HeaderDrawer-contact"
href="/pages/contact"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
>
Contact
</a></li><li><a
id="HeaderDrawer-beauty-blog"
href="/pages/blogs"
class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
>
Beauty Blog
</a></li></ul>
</nav>
<div class="menu-drawer__utility-links"><a
href="https://account.makhzan.ae?locale=en®ion_country=AE"
class="menu-drawer__account link focus-inset h5 medium-hide large-up-hide"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-account"
fill="none"
viewBox="0 0 18 19"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 4.5a3 3 0 116 0 3 3 0 01-6 0zm3-4a4 4 0 100 8 4 4 0 000-8zm5.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.15zM9 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.35z" fill="currentColor">
</svg>
Log in</a><div class="menu-drawer__localization header-localization">
<noscript><form method="post" action="/localization" id="HeaderLanguageMobileFormNoScriptDrawer" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div class="localization-form__select">
<h2 class="visually-hidden" id="HeaderLanguageMobileLabelNoScriptDrawer">
Language
</h2>
<select
class="localization-selector link"
name="locale_code"
aria-labelledby="HeaderLanguageMobileLabelNoScriptDrawer"
><option
value="en"
lang="en"
selected
>
English
</option><option
value="ar"
lang="ar"
>
العربية
</option></select>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</div>
<button class="button button--tertiary">Update language</button></form></noscript>
<localization-form class="no-js-hidden"><form method="post" action="/localization" id="HeaderLanguageMobileForm" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div>
<h2 class="visually-hidden" id="HeaderLanguageMobileLabel">
Language
</h2><div class="disclosure">
<button
type="button"
class="disclosure__button localization-form__select localization-selector link link--text caption-large"
aria-expanded="false"
aria-controls="HeaderLanguageMobileList"
aria-describedby="HeaderLanguageMobileLabel"
>
<span>English</span>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div class="disclosure__list-wrapper" hidden>
<ul id="HeaderLanguageMobileList" role="list" class="disclosure__list list-unstyled"><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="en"
lang="en"
aria-current="true"
data-value="en"
>
<span
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
English
</span>
</a>
</li><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="ar"
lang="ar"
data-value="ar"
>
<span
class="visibility-hidden"
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
العربية
</span>
</a>
</li></ul>
</div>
</div>
<input type="hidden" name="locale_code" value="en">
</div></form></localization-form></div><ul class="list list-social list-unstyled" role="list"><li class="list-social__item">
<a href="https://twitter.com/Makhzanuae" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-twitter" viewBox="0 0 20 20">
<path fill="currentColor" d="M18.608 4.967a7.364 7.364 0 0 1-1.758 1.828c0 .05 0 .13.02.23l.02.232a10.014 10.014 0 0 1-1.697 5.565 11.023 11.023 0 0 1-2.029 2.29 9.13 9.13 0 0 1-2.832 1.607 10.273 10.273 0 0 1-8.94-.985c.342.02.613.04.834.04 1.647 0 3.114-.502 4.4-1.506a3.616 3.616 0 0 1-3.315-2.46c.528.128 1.08.107 1.597-.061a3.485 3.485 0 0 1-2.029-1.216 3.385 3.385 0 0 1-.803-2.23v-.03c.462.242.984.372 1.587.402A3.465 3.465 0 0 1 2.116 5.76c0-.612.14-1.205.452-1.798a9.723 9.723 0 0 0 3.214 2.612A10.044 10.044 0 0 0 9.88 7.649a3.013 3.013 0 0 1-.13-.804c0-.974.34-1.808 1.034-2.49a3.466 3.466 0 0 1 2.561-1.035 3.505 3.505 0 0 1 2.551 1.104 6.812 6.812 0 0 0 2.24-.853 3.415 3.415 0 0 1-1.547 1.948 7.732 7.732 0 0 0 2.02-.542v-.01Z"/>
</svg>
<span class="visually-hidden">Twitter</span>
</a>
</li><li class="list-social__item">
<a href="https://www.facebook.com/profile.php?id=100090468172891&mibextid=ZbWKwL" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-facebook" viewBox="0 0 20 20">
<path fill="currentColor" d="M18 10.049C18 5.603 14.419 2 10 2c-4.419 0-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.951Z"/>
</svg>
<span class="visually-hidden">Facebook</span>
</a>
</li><li class="list-social__item">
<a href="https://www.pinterest.com/MakhzanUAE/" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-pinterest" viewBox="0 0 20 20">
<path fill="currentColor" d="M10 2.01c2.124.01 4.16.855 5.666 2.353a8.087 8.087 0 0 1 1.277 9.68A7.952 7.952 0 0 1 10 18.04a8.164 8.164 0 0 1-2.276-.307c.403-.653.672-1.24.816-1.729l.567-2.2c.134.27.393.5.768.702.384.192.768.297 1.19.297.836 0 1.585-.24 2.248-.72a4.678 4.678 0 0 0 1.537-1.969c.37-.89.554-1.848.537-2.813 0-1.249-.48-2.315-1.43-3.227a5.061 5.061 0 0 0-3.65-1.374c-.893 0-1.729.154-2.478.461a5.023 5.023 0 0 0-3.236 4.552c0 .72.134 1.355.413 1.902.269.538.672.922 1.22 1.152.096.039.182.039.25 0 .066-.028.114-.096.143-.192l.173-.653c.048-.144.02-.288-.105-.432a2.257 2.257 0 0 1-.548-1.565 3.803 3.803 0 0 1 3.976-3.861c1.047 0 1.863.288 2.44.855.585.576.883 1.315.883 2.228 0 .768-.106 1.479-.317 2.122a3.813 3.813 0 0 1-.893 1.556c-.384.384-.836.576-1.345.576-.413 0-.749-.144-1.018-.451-.259-.307-.345-.672-.25-1.085.147-.514.298-1.026.452-1.537l.173-.701c.057-.25.086-.451.086-.624 0-.346-.096-.634-.269-.855-.192-.22-.451-.336-.797-.336-.432 0-.797.192-1.085.595-.288.394-.442.893-.442 1.499.005.374.063.746.173 1.104l.058.144c-.576 2.478-.913 3.938-1.037 4.36-.116.528-.154 1.153-.125 1.863A8.067 8.067 0 0 1 2 10.03c0-2.208.778-4.11 2.343-5.666A7.721 7.721 0 0 1 10 2.001v.01Z"/>
</svg>
<span class="visually-hidden">Pinterest</span>
</a>
</li><li class="list-social__item">
<a href="https://www.instagram.com/makhzanuae?igsh=d3ZlMTNjemRucWFz" class="list-social__link link"><svg aria-hidden="true" focusable="false" 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.43 2.43 0 0 0-.912.593 2.486 2.486 0 0 0-.602.922c-.11.282-.238.702-.274 1.486-.046.84-.046 1.095-.046 3.23 0 2.134.01 2.39.046 3.229.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.046 2.134 0 2.39-.01 3.23-.046.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.23 0-2.134-.01-2.39-.055-3.229-.027-.784-.164-1.204-.274-1.495a2.43 2.43 0 0 0-.593-.913 2.604 2.604 0 0 0-.92-.602c-.284-.11-.703-.237-1.488-.273ZM6.697 2.05c.857-.036 1.131-.045 3.302-.045 1.1-.014 2.202.001 3.302.045.664.014 1.321.14 1.943.374a3.968 3.968 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.896 3.896 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.152 4.152 0 0 1-1.414-.922 4.128 4.128 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.44 4.44 0 0 1 .92-1.414 4.18 4.18 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.805Zm1.882 5.371a2.668 2.668 0 1 0 2.042-4.93 2.668 2.668 0 0 0-2.042 4.93Zm5.922-5.942a.958.958 0 1 1-1.355-1.355.958.958 0 0 1 1.355 1.355Z" clip-rule="evenodd"/>
</svg>
<span class="visually-hidden">Instagram</span>
</a>
</li><li class="list-social__item">
<a href="https://www.tiktok.com/@makhzanuae" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-tiktok" viewBox="0 0 20 20">
<path fill="currentColor" d="M10.511 1.705h2.74s-.157 3.51 3.795 3.768v2.711s-2.114.129-3.796-1.158l.028 5.606A5.073 5.073 0 1 1 8.213 7.56h.708v2.785a2.298 2.298 0 1 0 1.618 2.205L10.51 1.705Z"/>
</svg>
<span class="visually-hidden">TikTok</span>
</a>
</li><li class="list-social__item">
<a href="https://www.youtube.com/channel/UCTKjlgUy_-Jn0CIOYXbVaYg" class="list-social__link link"><svg aria-hidden="true" focusable="false" class="icon icon-youtube" viewBox="0 0 20 20">
<path fill="currentColor" d="M18.16 5.87c.34 1.309.34 4.08.34 4.08s0 2.771-.34 4.08a2.125 2.125 0 0 1-1.53 1.53c-1.309.34-6.63.34-6.63.34s-5.321 0-6.63-.34a2.125 2.125 0 0 1-1.53-1.53c-.34-1.309-.34-4.08-.34-4.08s0-2.771.34-4.08a2.173 2.173 0 0 1 1.53-1.53C4.679 4 10 4 10 4s5.321 0 6.63.34a2.173 2.173 0 0 1 1.53 1.53ZM8.3 12.5l4.42-2.55L8.3 7.4v5.1Z"/>
</svg>
<span class="visually-hidden">YouTube</span>
</a>
</li></ul>
</div>
</div>
</div>
</div>
</details>
</header-drawer>
<details-modal class="header__search">
<details>
<summary
class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle"
aria-haspopup="dialog"
aria-label="Search"
>
<span>
<svg class="modal__toggle-open icon icon-search" aria-hidden="true" focusable="false">
<use href="#icon-search">
</svg>
<svg class="modal__toggle-close icon icon-close" aria-hidden="true" focusable="false">
<use href="#icon-close">
</svg>
</span>
</summary>
<div
class="search-modal modal__content gradient"
role="dialog"
aria-modal="true"
aria-label="Search"
>
<div class="modal-overlay"></div>
<div
class="search-modal__content search-modal__content-bottom"
tabindex="-1"
><predictive-search class="search-modal__form" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="search search-modal__form">
<div class="field">
<input
class="search__input field__input"
id="Search-In-Modal-1"
type="search"
name="q"
value=""
placeholder="Search"role="combobox"
aria-expanded="false"
aria-owns="predictive-search-results"
aria-controls="predictive-search-results"
aria-haspopup="listbox"
aria-autocomplete="list"
autocorrect="off"
autocomplete="off"
autocapitalize="off"
spellcheck="false">
<label class="field__label" for="Search-In-Modal-1">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button
type="reset"
class="reset__button field__button hidden"
aria-label="Clear search term"
>
<svg class="icon icon-close" aria-hidden="true" focusable="false">
<use xlink:href="#icon-reset">
</svg>
</button>
<button class="search__button field__button" aria-label="Search">
<svg class="icon icon-search" aria-hidden="true" focusable="false">
<use href="#icon-search">
</svg>
</button>
</div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="predictive-search__loading-state">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button
type="button"
class="search-modal__close-button modal__close-button link link--text focus-inset"
aria-label="Close"
>
<svg class="icon icon-close" aria-hidden="true" focusable="false">
<use href="#icon-close">
</svg>
</button>
</div>
</div>
</details>
</details-modal>
<h2 class="header__heading"><a href="/" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper">
<img src="//makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=600" alt="Makhzan UAE . For natural and organic products" srcset="//makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=190 190w, //makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=285 285w, //makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=380 380w" width="190" height="54.22374429223744" loading="eager" class="header__heading-logo motion-reduce" sizes="(max-width: 380px) 50vw, 190px">
</div></a></h2>
<nav class="header__inline-menu">
<ul class="list-menu list-menu--inline" role="list"><li><a
id="HeaderMenu-home"
href="/"
class="header__menu-item list-menu__item link link--text focus-inset"
aria-current="page"
>
<span
class="header__active-menu-item"
>Home</span>
</a></li><li><header-menu>
<details id="Details-HeaderMenu-2" class="mega-menu">
<summary
id="HeaderMenu-skin-care"
class="header__menu-item list-menu__item link focus-inset"
>
<span
>Skin Care</span>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="MegaMenu-Content-2"
class="mega-menu__content color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a gradient motion-reduce global-settings-popup"
tabindex="-1"
>
<ul
class="mega-menu__list page-width"
role="list"
><li>
<a
id="HeaderMenu-skin-care-facial-care"
href="/collections/facial-care"
class="mega-menu__link mega-menu__link--level-2 link"
>
Facial Care
</a><ul class="list-unstyled" role="list"><li>
<a
id="HeaderMenu-skin-care-facial-care-toners"
href="/collections/toners"
class="mega-menu__link link"
>
Toners
</a>
</li><li>
<a
id="HeaderMenu-skin-care-facial-care-cream"
href="/collections/creams"
class="mega-menu__link link"
>
Cream
</a>
</li><li>
<a
id="HeaderMenu-skin-care-facial-care-serum"
href="/collections/serums"
class="mega-menu__link link"
>
Serum
</a>
</li><li>
<a
id="HeaderMenu-skin-care-facial-care-soap"
href="/collections/soaps"
class="mega-menu__link link"
>
Soap
</a>
</li><li>
<a
id="HeaderMenu-skin-care-facial-care-make-up-removers"
href="/collections/makeup-removers"
class="mega-menu__link link"
>
Make Up Removers
</a>
</li><li>
<a
id="HeaderMenu-skin-care-facial-care-coffee-scrub"
href="/collections/coffee-scrubs"
class="mega-menu__link link"
>
Coffee Scrub
</a>
</li></ul></li><li>
<a
id="HeaderMenu-skin-care-body-care"
href="/collections/body-care"
class="mega-menu__link mega-menu__link--level-2 link"
>
Body Care
</a><ul class="list-unstyled" role="list"><li>
<a
id="HeaderMenu-skin-care-body-care-soap"
href="/collections/body-soap"
class="mega-menu__link link"
>
Soap
</a>
</li><li>
<a
id="HeaderMenu-skin-care-body-care-coffee-scrubs"
href="/collections/body-scrub"
class="mega-menu__link link"
>
Coffee Scrubs
</a>
</li></ul></li></ul>
</div>
</details>
</header-menu></li><li><header-menu>
<details id="Details-HeaderMenu-3" class="mega-menu">
<summary
id="HeaderMenu-wellness-supplements"
class="header__menu-item list-menu__item link focus-inset"
>
<span
>Wellness Supplements</span>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</summary>
<div
id="MegaMenu-Content-3"
class="mega-menu__content color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a gradient motion-reduce global-settings-popup"
tabindex="-1"
>
<ul
class="mega-menu__list page-width mega-menu__list--condensed"
role="list"
><li>
<a
id="HeaderMenu-wellness-supplements-supplements-for-adults"
href="/collections/supplements-for-adults"
class="mega-menu__link mega-menu__link--level-2 link"
>
Supplements for Adults
</a></li><li>
<a
id="HeaderMenu-wellness-supplements-supplements-for-kids"
href="/collections/childrens-multivitamin"
class="mega-menu__link mega-menu__link--level-2 link"
>
Supplements for Kids
</a></li></ul>
</div>
</details>
</header-menu></li><li><a
id="HeaderMenu-about-us"
href="/pages/about-us"
class="header__menu-item list-menu__item link link--text focus-inset"
>
<span
>About us</span>
</a></li><li><a
id="HeaderMenu-contact"
href="/pages/contact"
class="header__menu-item list-menu__item link link--text focus-inset"
>
<span
>Contact</span>
</a></li><li><a
id="HeaderMenu-beauty-blog"
href="/pages/blogs"
class="header__menu-item list-menu__item link link--text focus-inset"
>
<span
>Beauty Blog</span>
</a></li></ul>
</nav>
<div class="header__icons header__icons--localization header-localization">
<div class="desktop-localization-wrapper">
<noscript class="small-hide medium-hide"><form method="post" action="/localization" id="HeaderLanguageMobileFormNoScript" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div class="localization-form__select">
<h2 class="visually-hidden" id="HeaderLanguageMobileLabelNoScript">Language</h2>
<select class="localization-selector link" name="locale_code" aria-labelledby="HeaderLanguageMobileLabelNoScript"><option value="en" lang="en" selected>
English
</option><option value="ar" lang="ar">
العربية
</option></select>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</div>
<button class="button button--tertiary">Update language</button></form></noscript>
<localization-form class="small-hide medium-hide no-js-hidden" data-prevent-hide><form method="post" action="/localization" id="HeaderLanguageForm" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div>
<h2 class="visually-hidden" id="HeaderLanguageLabel">Language</h2><div class="disclosure">
<button
type="button"
class="disclosure__button localization-form__select localization-selector link link--text caption-large"
aria-expanded="false"
aria-controls="HeaderLanguageList"
aria-describedby="HeaderLanguageLabel"
>
<span>English</span>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div class="disclosure__list-wrapper" hidden>
<ul id="HeaderLanguageList" role="list" class="disclosure__list list-unstyled"><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="en"
lang="en"
aria-current="true"
data-value="en"
>
<span
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
English
</span>
</a>
</li><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="ar"
lang="ar"
data-value="ar"
>
<span
class="visibility-hidden"
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
العربية
</span>
</a>
</li></ul>
</div>
</div>
<input type="hidden" name="locale_code" value="en">
</div></form></localization-form></div>
<details-modal class="header__search">
<details>
<summary
class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle"
aria-haspopup="dialog"
aria-label="Search"
>
<span>
<svg class="modal__toggle-open icon icon-search" aria-hidden="true" focusable="false">
<use href="#icon-search">
</svg>
<svg class="modal__toggle-close icon icon-close" aria-hidden="true" focusable="false">
<use href="#icon-close">
</svg>
</span>
</summary>
<div
class="search-modal modal__content gradient"
role="dialog"
aria-modal="true"
aria-label="Search"
>
<div class="modal-overlay"></div>
<div
class="search-modal__content search-modal__content-bottom"
tabindex="-1"
><predictive-search class="search-modal__form" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="search search-modal__form">
<div class="field">
<input
class="search__input field__input"
id="Search-In-Modal"
type="search"
name="q"
value=""
placeholder="Search"role="combobox"
aria-expanded="false"
aria-owns="predictive-search-results"
aria-controls="predictive-search-results"
aria-haspopup="listbox"
aria-autocomplete="list"
autocorrect="off"
autocomplete="off"
autocapitalize="off"
spellcheck="false">
<label class="field__label" for="Search-In-Modal">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button
type="reset"
class="reset__button field__button hidden"
aria-label="Clear search term"
>
<svg class="icon icon-close" aria-hidden="true" focusable="false">
<use xlink:href="#icon-reset">
</svg>
</button>
<button class="search__button field__button" aria-label="Search">
<svg class="icon icon-search" aria-hidden="true" focusable="false">
<use href="#icon-search">
</svg>
</button>
</div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="predictive-search__loading-state">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button
type="button"
class="search-modal__close-button modal__close-button link link--text focus-inset"
aria-label="Close"
>
<svg class="icon icon-close" aria-hidden="true" focusable="false">
<use href="#icon-close">
</svg>
</button>
</div>
</div>
</details>
</details-modal>
<a href="https://account.makhzan.ae?locale=en®ion_country=AE" class="header__icon header__icon--account link focus-inset small-hide">
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-account"
fill="none"
viewBox="0 0 18 19"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 4.5a3 3 0 116 0 3 3 0 01-6 0zm3-4a4 4 0 100 8 4 4 0 000-8zm5.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.15zM9 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.35z" fill="currentColor">
</svg>
<span class="visually-hidden">Log in</span>
</a><a href="/cart" class="header__icon header__icon--cart link focus-inset" id="cart-icon-bubble"><svg
class="icon icon-cart-empty"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 40 40"
fill="none"
>
<path 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.33l-.78-11.61zm0 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" fill="currentColor" fill-rule="evenodd"/>
</svg>
<span class="visually-hidden">Cart</span></a>
</div>
</header>
</sticky-header>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Makhzan UAE",
"logo": "https:\/\/makhzan.ae\/cdn\/shop\/files\/makhzan-logo_2.png?v=1710752318\u0026width=500",
"sameAs": [
"https:\/\/twitter.com\/Makhzanuae",
"https:\/\/www.facebook.com\/profile.php?id=100090468172891\u0026mibextid=ZbWKwL",
"https:\/\/www.pinterest.com\/MakhzanUAE\/",
"https:\/\/www.instagram.com\/makhzanuae?igsh=d3ZlMTNjemRucWFz",
"https:\/\/www.tiktok.com\/@makhzanuae",
"",
"",
"https:\/\/www.youtube.com\/channel\/UCTKjlgUy_-Jn0CIOYXbVaYg",
""
],
"url": "https:\/\/makhzan.ae"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Makhzan UAE",
"potentialAction": {
"@type": "SearchAction",
"target": "https:\/\/makhzan.ae\/search?q={search_term_string}",
"query-input": "required name=search_term_string"
},
"url": "https:\/\/makhzan.ae"
}
</script>
<style> #shopify-section-sections--22342062407953__header.section-header {margin-bottom: 0px !important;} </style></div>
<!-- END sections: header-group -->
<main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">
<section id="shopify-section-template--22342066635025__slideshow_Y4nL86" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-image-banner.css?v=104371272348087278231712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slider.css?v=142503135496229589681712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slideshow.css?v=107725913939919748051712479486" rel="stylesheet" type="text/css" media="all" />
<slideshow-component
class="slider-mobile-gutter mobile-text-below"
role="region"
aria-roledescription="Carousel"
aria-label="Plantus Cosmetic Purifying Toners natural skincare facial toners"
><div class="slideshow__controls slideshow__controls--top slider-buttons no-js-hidden slideshow__controls--border-radius-mobile">
<button
type="button"
class="slider-button slider-button--prev"
name="previous"
aria-label="Previous slide"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div class="slider-counter slider-counter--dots"><div class="slideshow__control-wrapper"><button
class="slider-counter__link slider-counter__link--dots link"
aria-label="Load slide 1 of 5"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
><span class="dot"></span></button><button
class="slider-counter__link slider-counter__link--dots link"
aria-label="Load slide 2 of 5"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
><span class="dot"></span></button><button
class="slider-counter__link slider-counter__link--dots link"
aria-label="Load slide 3 of 5"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
><span class="dot"></span></button><button
class="slider-counter__link slider-counter__link--dots link"
aria-label="Load slide 4 of 5"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
><span class="dot"></span></button><button
class="slider-counter__link slider-counter__link--dots link"
aria-label="Load slide 5 of 5"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
><span class="dot"></span></button></div></div>
<button
type="button"
class="slider-button slider-button--next"
name="next"
aria-label="Next slide"
aria-controls="Slider-template--22342066635025__slideshow_Y4nL86"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button><button
type="button"
class="slideshow__autoplay slider-button no-js-hidden"
aria-label="Pause slideshow"
><svg
class="icon icon-pause"
viewBox="0 0 8 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
focusable="false"
aria-hidden="true"
>
<path d="M1.2 0.75C0.813401 0.75 0.5 0.985051 0.5 1.275V10.725C0.5 11.0149 0.813401 11.25 1.2 11.25C1.5866 11.25 1.9 11.0149 1.9 10.725V1.275C1.9 0.985051 1.5866 0.75 1.2 0.75Z" fill="currentColor"/>
<path d="M6.8 0.75C6.4134 0.75 6.1 0.985051 6.1 1.275V10.725C6.1 11.0149 6.4134 11.25 6.8 11.25C7.1866 11.25 7.5 11.0149 7.5 10.725V1.275C7.5 0.985051 7.1866 0.75 6.8 0.75Z" fill="currentColor"/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-play"
fill="none"
viewBox="0 0 10 14"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.48177 0.814643C0.81532 0.448245 0 0.930414 0 1.69094V12.2081C0 12.991 0.858787 13.4702 1.52503 13.0592L10.5398 7.49813C11.1918 7.09588 11.1679 6.13985 10.4965 5.77075L1.48177 0.814643Z" fill="currentColor"/>
</svg>
</button></div>
<noscript>
<div class="slider-buttons">
<div class="slider-counter"><a
href="#Slide-template--22342066635025__slideshow_Y4nL86-1"
class="slider-counter__link link"
aria-label="Load slide 1 of 5"
>
1
</a><a
href="#Slide-template--22342066635025__slideshow_Y4nL86-2"
class="slider-counter__link link"
aria-label="Load slide 2 of 5"
>
2
</a><a
href="#Slide-template--22342066635025__slideshow_Y4nL86-3"
class="slider-counter__link link"
aria-label="Load slide 3 of 5"
>
3
</a><a
href="#Slide-template--22342066635025__slideshow_Y4nL86-4"
class="slider-counter__link link"
aria-label="Load slide 4 of 5"
>
4
</a><a
href="#Slide-template--22342066635025__slideshow_Y4nL86-5"
class="slider-counter__link link"
aria-label="Load slide 5 of 5"
>
5
</a></div>
</div>
</noscript><div
class="slideshow banner banner--medium grid grid--1-col slider slider--everywhere banner--mobile-bottom scroll-trigger animate--fade-in"
id="Slider-template--22342066635025__slideshow_Y4nL86"
aria-live="polite"
aria-atomic="true"
data-autoplay="true"
data-speed="5"
><style>
#Slide-template--22342066635025__slideshow_Y4nL86-1 .banner__media::after {
opacity: 0.0;
}
</style>
<div
class="slideshow__slide grid__item grid--1-col slider__slide"
id="Slide-template--22342066635025__slideshow_Y4nL86-1"
role="group"
aria-roledescription="Slide"
aria-label="1 of 5"
tabindex="-1"
>
<div class="slideshow__media banner__media media">
<img src="//makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=3840" alt="Best moisturizer Derma Care Daily Moisturizing Cream. Everyday face cream. skin hydration. " srcset="//makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=375 375w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=550 550w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=750 750w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=1100 1100w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=1500 1500w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=1780 1780w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=2000 2000w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=3000 3000w, //makhzan.ae/cdn/shop/files/4.jpg?v=1716274273&width=3840 3840w" height="768" sizes="100vw" fetchpriority="high" style="object-position:44.2981% 78.4568%;">
</div>
<div class="slideshow__text-wrapper banner__content banner__content--bottom-center page-width scroll-trigger animate--slide-in">
<div class="slideshow__text banner__box content-container content-container--full-width-mobile color-scheme-1 gradient slideshow__text--center slideshow__text-mobile--center"><h2 class="banner__heading inline-richtext h2">
Uncover Natural Skincare & Wellness Supplements in UAE Crafted with Love
</h2><div class="banner__buttons">
<a
href="/collections/body-care"
class="button button--primary"
>Shop New Collection</a>
</div></div>
</div>
</div><style>
#Slide-template--22342066635025__slideshow_Y4nL86-2 .banner__media::after {
opacity: 0.0;
}
</style>
<div
class="slideshow__slide grid__item grid--1-col slider__slide"
id="Slide-template--22342066635025__slideshow_Y4nL86-2"
role="group"
aria-roledescription="Slide"
aria-label="2 of 5"
tabindex="-1"
>
<div class="slideshow__media banner__media media"><img src="//makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=3840" alt="Best Face Serums for Fine Lines & Wrinkles. Best Vitamin C serum. Natural serum " srcset="//makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=375 375w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=550 550w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=750 750w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=1100 1100w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=1500 1500w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=1780 1780w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=2000 2000w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=3000 3000w, //makhzan.ae/cdn/shop/files/5.jpg?v=1716274279&width=3840 3840w" height="768" loading="lazy" sizes="100vw">
</div>
<div class="slideshow__text-wrapper banner__content banner__content--bottom-right page-width">
<div class="slideshow__text banner__box content-container content-container--full-width-mobile color-scheme-1 gradient slideshow__text--center slideshow__text-mobile--center"><h2 class="banner__heading inline-richtext h2">
Let Your Skin Thrive with Plant-Based Natural Ingredients
</h2><div class="banner__buttons">
<a
href="/collections/facial-care"
class="button button--primary"
>Checkout Our Bestsellers</a>
</div></div>
</div>
</div><style>
#Slide-template--22342066635025__slideshow_Y4nL86-3 .banner__media::after {
opacity: 0.0;
}
</style>
<div
class="slideshow__slide grid__item grid--1-col slider__slide"
id="Slide-template--22342066635025__slideshow_Y4nL86-3"
role="group"
aria-roledescription="Slide"
aria-label="3 of 5"
tabindex="-1"
>
<div class="slideshow__media banner__media media"><img src="//makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=3840" alt="Ethically sourced natural skincare products in UAE | Clean Beauty Products " srcset="//makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=375 375w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=550 550w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=750 750w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=1100 1100w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=1500 1500w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=1780 1780w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=2000 2000w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=3000 3000w, //makhzan.ae/cdn/shop/files/7.jpg?v=1716274287&width=3840 3840w" height="768" loading="lazy" sizes="100vw">
</div>
<div class="slideshow__text-wrapper banner__content banner__content--bottom-right page-width">
<div class="slideshow__text banner__box content-container content-container--full-width-mobile color-scheme-1 gradient slideshow__text--center slideshow__text-mobile--center"><h2 class="banner__heading inline-richtext h2">
Rediscover Radiant Natural Beauty and Vitality
</h2><div class="banner__buttons">
<a
href="/collections/plantus-cosmetic-uae"
class="button button--primary"
>Explore our Collection</a>
</div></div>
</div>
</div><style>
#Slide-template--22342066635025__slideshow_Y4nL86-4 .banner__media::after {
opacity: 0.0;
}
</style>
<div
class="slideshow__slide grid__item grid--1-col slider__slide"
id="Slide-template--22342066635025__slideshow_Y4nL86-4"
role="group"
aria-roledescription="Slide"
aria-label="4 of 5"
tabindex="-1"
>
<div class="slideshow__media banner__media media"><img src="//makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=3840" alt="Oil control moisturizer . Antioxidant cream. Natural skincare in UAE" srcset="//makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=375 375w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=550 550w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=750 750w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=1100 1100w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=1500 1500w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=1780 1780w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=2000 2000w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=3000 3000w, //makhzan.ae/cdn/shop/files/6.jpg?v=1716274282&width=3840 3840w" height="768" loading="lazy" sizes="100vw">
</div>
<div class="slideshow__text-wrapper banner__content banner__content--bottom-right page-width">
<div class="slideshow__text banner__box content-container content-container--full-width-mobile color-scheme-1 gradient slideshow__text--right slideshow__text-mobile--center"><h2 class="banner__heading inline-richtext h2">
Natural Skincare in UAE: Your Path to Pure Beauty
</h2><div class="banner__buttons">
<a
href="/collections/creams"
class="button button--secondary"
>Explore Our Products</a>
</div></div>
</div>
</div><style>
#Slide-template--22342066635025__slideshow_Y4nL86-5 .banner__media::after {
opacity: 0.0;
}
</style>
<div
class="slideshow__slide grid__item grid--1-col slider__slide"
id="Slide-template--22342066635025__slideshow_Y4nL86-5"
role="group"
aria-roledescription="Slide"
aria-label="5 of 5"
tabindex="-1"
>
<div class="slideshow__media banner__media media"><img src="//makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=3840" alt=" Premium natural skincare products in UAE | flawless Rose Facial Toner " srcset="//makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=375 375w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=550 550w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=750 750w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=1100 1100w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=1500 1500w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=1780 1780w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=2000 2000w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=3000 3000w, //makhzan.ae/cdn/shop/files/2.jpg?v=1716274256&width=3840 3840w" height="768" loading="lazy" sizes="100vw">
</div>
<div class="slideshow__text-wrapper banner__content banner__content--bottom-left page-width">
<div class="slideshow__text banner__box content-container content-container--full-width-mobile color-scheme-1 gradient slideshow__text--left slideshow__text-mobile--center"><h2 class="banner__heading inline-richtext h2">
Antioxidant-Rich Natural Skincare Products for Your Healthier & Vibrant Skin
</h2><div class="banner__buttons">
<a
href="/pages/find-the-best-product"
class="button button--primary"
>Explore With Our Quizz</a>
</div></div>
</div>
</div></div></slideshow-component>
</section><section id="shopify-section-template--22342066635025__rich_text_CgKg36" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-rich-text.css?v=155250126305810049721712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__rich_text_CgKg36-padding {
padding-top: 30px;
padding-bottom: 39px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__rich_text_CgKg36-padding {
padding-top: 40px;
padding-bottom: 52px;
}
}</style><div class="isolate">
<div class="rich-text content-container color-scheme-4 gradient rich-text--full-width content-container--full-width section-template--22342066635025__rich_text_CgKg36-padding">
<div class="rich-text__wrapper rich-text__wrapper--center page-width">
<div class="rich-text__blocks center"><div
class="rich-text__text rte scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<h1>Natural Skincare Products & Wellness Supplements </h1>
</div><div
class="rich-text__text rte scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<p>Your Destination for Customized Natural Skincare Products, Wellness Supplements & Daily Multivitamins in UAE. Experience effective products that provide tangible benefits for your health.</p>
</div></div>
</div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__collection_list_FABwgM" class="shopify-section section section-collection-list"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-collection-list.css?v=70863279319435850561712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-card.css?v=170127402091165654191712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slider.css?v=142503135496229589681712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__collection_list_FABwgM-padding {
padding-top: 15px;
padding-bottom: 15px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__collection_list_FABwgM-padding {
padding-top: 20px;
padding-bottom: 20px;
}
}</style><div class="color-scheme-4 gradient">
<div class="collection-list-wrapper page-width isolate no-heading no-mobile-link section-template--22342066635025__collection_list_FABwgM-padding"><slider-component class="slider-mobile-gutter scroll-trigger animate--slide-in">
<ul
class="collection-list contains-card contains-card--collection contains-card--standard grid grid--3-col-desktop grid--1-col-tablet-down collection-list--3-items"
id="Slider-template--22342066635025__collection_list_FABwgM"
role="list"
><li
id="Slide-template--22342066635025__collection_list_FABwgM-1"
class="collection-list__item grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<div class="card-wrapper animate-arrow collection-card-wrapper">
<div
class="
card
card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-1 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/collections/facecare_medium.png?v=1724745908"
data-src="//makhzan.ae/cdn/shop/collections/facecare.png?v=1724745908&width=1500"
sizes="
(min-width: 1400px) 433px,
(min-width: 750px) calc((100vw - 10rem) / 2),
calc(100vw - 3rem)
"
alt="Natural facial skincare"
height="300"
width="300"
class="motion-reduce opt_lazy"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/facial-care"
class="full-unstyled-link"
>Natural Facial Care
</a>
</h3><p class="card__caption">Find the perfect match for your skincare journey with our Natural Facial...<span class="icon-wrap"> <svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</p></div>
</div></div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/facial-care"
class="full-unstyled-link"
>Natural Facial Care<span class="icon-wrap"><svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</a>
</h3></div>
</div></div>
</div>
</li><li
id="Slide-template--22342066635025__collection_list_FABwgM-2"
class="collection-list__item grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<div class="card-wrapper animate-arrow collection-card-wrapper">
<div
class="
card
card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-1 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/collections/body_care_medium.png?v=1724319932"
data-src="//makhzan.ae/cdn/shop/collections/body_care.png?v=1724319932&width=1500"
sizes="
(min-width: 1400px) 433px,
(min-width: 750px) calc((100vw - 10rem) / 2),
calc(100vw - 3rem)
"
alt="Body care Natural Skin Care Products"
height="300"
width="300"
class="motion-reduce opt_lazy"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/body-care"
class="full-unstyled-link"
>Natural Body Care
</a>
</h3><p class="card__caption">Discover the essence of nature at Makhzan Limited with our exclusive collection...<span class="icon-wrap"> <svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</p></div>
</div></div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/body-care"
class="full-unstyled-link"
>Natural Body Care<span class="icon-wrap"><svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</a>
</h3></div>
</div></div>
</div>
</li><li
id="Slide-template--22342066635025__collection_list_FABwgM-3"
class="collection-list__item grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
>
<div class="card-wrapper animate-arrow collection-card-wrapper">
<div
class="
card
card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-1 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/collections/well_ness_4dbe0e99-880a-4936-8345-64a8a4921f6f_medium.jpg?v=1725254543"
data-src="//makhzan.ae/cdn/shop/collections/well_ness_4dbe0e99-880a-4936-8345-64a8a4921f6f.jpg?v=1725254543&width=1500"
sizes="
(min-width: 1400px) 433px,
(min-width: 750px) calc((100vw - 10rem) / 2),
calc(100vw - 3rem)
"
alt="Wellness Supplements and Vitamins "
height="600"
width="600"
class="motion-reduce opt_lazy"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/wellness-supplements"
class="full-unstyled-link"
>Wellness Supplements
</a>
</h3><p class="card__caption">The formulation of our wellness supplements is rooted in the principles of...<span class="icon-wrap"> <svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</p></div>
</div></div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/wellness-supplements"
class="full-unstyled-link"
>Wellness Supplements<span class="icon-wrap"><svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</a>
</h3></div>
</div></div>
</div>
</li></ul></slider-component></div>
</div>
</section><section id="shopify-section-template--22342066635025__rich_text_bPG6V9" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-rich-text.css?v=155250126305810049721712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__rich_text_bPG6V9-padding {
padding-top: 30px;
padding-bottom: 15px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__rich_text_bPG6V9-padding {
padding-top: 40px;
padding-bottom: 20px;
}
}</style><div class="isolate">
<div class="rich-text content-container color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a gradient rich-text--full-width content-container--full-width section-template--22342066635025__rich_text_bPG6V9-padding">
<div class="rich-text__wrapper rich-text__wrapper--center page-width">
<div class="rich-text__blocks center"><h2
class="rich-text__heading rte inline-richtext h1 scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<strong>Best Natural Skincare Brand | Natural Ingredients</strong>
</h2><div
class="rich-text__text rte scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<p>Explore our highly acclaimed natural skincare brand, Plantus Cosmetic, carefully selected for its exceptional quality and efficacy. Featuring organic ingredients suitable for all skin types, it promotes clean, balanced skin. Explore what our customers adore.</p>
</div></div>
</div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__featured-collection" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/component-card.css?v=170127402091165654191712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-price.css?v=70172745017360139101712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slider.css?v=142503135496229589681712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/template-collection.css?v=58558206033505836701712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/quick-add.css?v=167457951211641553491712479486" rel="stylesheet" type="text/css" media="all" />
<script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/quick-add.js?v=53942799839994596201712479486" defer="defer"></script>
<script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/product-form.js?v=133081758708377679181712479486" defer="defer"></script><style data-shopify>.section-template--22342066635025__featured-collection-padding {
padding-top: 15px;
padding-bottom: 15px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__featured-collection-padding {
padding-top: 20px;
padding-bottom: 20px;
}
}</style><div class="color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a isolate gradient">
<div class="collection section-template--22342066635025__featured-collection-padding">
<div class="collection__title title-wrapper title-wrapper--no-top-margin page-width"></div>
<slider-component class="slider-mobile-gutter page-width page-width-desktop scroll-trigger animate--slide-in">
<ul
id="Slider-template--22342066635025__featured-collection"
class="grid product-grid contains-card contains-card--product contains-card--standard grid--4-col-desktop grid--2-col-tablet-down"
role="list"
aria-label="Slider"
><li
id="Slide-template--22342066635025__featured-collection-1"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionSerumforAntiagingCare-50ml_1_small.jpg?v=1710137524"
data-src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionSerumforAntiagingCare-50ml_1.jpg?v=1710137524&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Skin Renewal Serum | Antiwrinkle Serum "
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/antiaging-serum-for-fine-lines-and-wrinkles"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9287452655889"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9287452655889 NoMediaStandardBadge-template--22342066635025__featured-collection-9287452655889"
>
Plantus Repair Reflection Serum-Antiaging Serum
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9287452655889"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9287452655889"
>
<a
href="/products/antiaging-serum-for-fine-lines-and-wrinkles"
id="CardLink-template--22342066635025__featured-collection-9287452655889"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9287452655889 Badge-template--22342066635025__featured-collection-9287452655889"
>
Plantus Repair Reflection Serum-Antiaging Serum
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 80.75 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
95.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 80.75 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9287452655889">
<button
id="quick-add-template--22342066635025__featured-collection9287452655889-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9287452655889-submit title-template--22342066635025__featured-collection-9287452655889"
data-product-url="/products/antiaging-serum-for-fine-lines-and-wrinkles"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9287452655889" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus Repair Reflection Serum-Antiaging Serum"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9287452655889"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9287452655889" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9287452655889"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-2"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinPurifyingTonic-150ml_small.jpg?v=1710137530"
data-src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinPurifyingTonic-150ml.jpg?v=1710137530&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Oil Control Facial Tonic | Purifying Facial Toner "
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/natural-facial-toner-purifying-tonic"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297787289873"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297787289873 NoMediaStandardBadge-template--22342066635025__featured-collection-9297787289873"
>
Plantus SmoothSkin Purifying Facial Tonic - Facial Toner
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9297787289873"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9297787289873"
>
<a
href="/products/natural-facial-toner-purifying-tonic"
id="CardLink-template--22342066635025__featured-collection-9297787289873"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9297787289873 Badge-template--22342066635025__featured-collection-9297787289873"
>
Plantus SmoothSkin Purifying Facial Tonic - Facial Toner
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 55.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
65.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 55.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9297787289873">
<button
id="quick-add-template--22342066635025__featured-collection9297787289873-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9297787289873-submit title-template--22342066635025__featured-collection-9297787289873"
data-product-url="/products/natural-facial-toner-purifying-tonic"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9297787289873" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus SmoothSkin Purifying Facial Tonic - Facial Toner"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9297787289873"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9297787289873" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9297787289873"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-3"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusRadiantSkinAntiBlemishProbioticSerum-50ml_small.jpg?v=1712317867"
data-src="//makhzan.ae/cdn/shop/files/PlantusRadiantSkinAntiBlemishProbioticSerum-50ml.jpg?v=1712317867&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Probiotic Anti-Blemish Alpha Arbutin Serum"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/radiant-skin-anti-blemish-serum-alpha-arbutin"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297805443345"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297805443345 NoMediaStandardBadge-template--22342066635025__featured-collection-9297805443345"
>
Plantus Radiant Skin Anti Blemish Serum - Alpha Arbutin
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9297805443345"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9297805443345"
>
<a
href="/products/radiant-skin-anti-blemish-serum-alpha-arbutin"
id="CardLink-template--22342066635025__featured-collection-9297805443345"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9297805443345 Badge-template--22342066635025__featured-collection-9297805443345"
>
Plantus Radiant Skin Anti Blemish Serum - Alpha Arbutin
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 72.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
85.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 72.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9297805443345">
<button
id="quick-add-template--22342066635025__featured-collection9297805443345-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9297805443345-submit title-template--22342066635025__featured-collection-9297805443345"
data-product-url="/products/radiant-skin-anti-blemish-serum-alpha-arbutin"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9297805443345" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus Radiant Skin Anti Blemish Serum - Alpha Arbutin"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9297805443345"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9297805443345" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9297805443345"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-4"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 4;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusMoistSkinPurifyingTonic-150ml_small.jpg?v=1710137529"
data-src="//makhzan.ae/cdn/shop/files/PlantusMoistSkinPurifyingTonic-150ml.jpg?v=1710137529&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Skin Purifying Tonic - Aloe Vera Hydrating Toner"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/rose-water-facial-toner-purifying-tonic"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297777000721"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297777000721 NoMediaStandardBadge-template--22342066635025__featured-collection-9297777000721"
>
Moist Skin Purifying Tonic - Rose Water Facial Toner
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9297777000721"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9297777000721"
>
<a
href="/products/rose-water-facial-toner-purifying-tonic"
id="CardLink-template--22342066635025__featured-collection-9297777000721"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9297777000721 Badge-template--22342066635025__featured-collection-9297777000721"
>
Moist Skin Purifying Tonic - Rose Water Facial Toner
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='0.00' data-number-of-reviews='0' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='0.00' tabindex='0' aria-label='0.00 stars' role='button'> <span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> No reviews </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 55.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
65.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 55.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9297777000721">
<button
id="quick-add-template--22342066635025__featured-collection9297777000721-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9297777000721-submit title-template--22342066635025__featured-collection-9297777000721"
data-product-url="/products/rose-water-facial-toner-purifying-tonic"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9297777000721" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Moist Skin Purifying Tonic - Rose Water Facial Toner"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9297777000721"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9297777000721" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9297777000721"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-5"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 5;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionCapsulesforAntiagingCare-30Capsules_small.jpg?v=1712317870"
data-src="//makhzan.ae/cdn/shop/files/PlantusRepairReflectionCapsulesforAntiagingCare-30Capsules.jpg?v=1712317870&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Anti Aging Skin Capsules | Antiwrinkle Capsules"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/antiaging-capsules-wrinkle-reduction-capsules"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297497587985"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9297497587985 NoMediaStandardBadge-template--22342066635025__featured-collection-9297497587985"
>
Plantus Repair Reflection Capsules - Antiaging Capsules
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9297497587985"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9297497587985"
>
<a
href="/products/antiaging-capsules-wrinkle-reduction-capsules"
id="CardLink-template--22342066635025__featured-collection-9297497587985"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9297497587985 Badge-template--22342066635025__featured-collection-9297497587985"
>
Plantus Repair Reflection Capsules - Antiaging Capsules
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='1' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <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> </span> <span class='jdgm-prev-badge__text'> 1 review </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="rating"
role="img"
aria-label="5.0 out of 5.0 stars"
>
<span
aria-hidden="true"
class="rating-star"
style="--rating: 5; --rating-max: 5.0; --rating-decimal: 0;"
></span>
</div>
<p class="rating-text caption">
<span aria-hidden="true">5.0 /
5.0</span>
</p>
<p class="rating-count caption">
<span aria-hidden="true">(1)</span>
<span class="visually-hidden">1
total reviews</span>
</p>
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 84.15 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
99.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 84.15 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9297497587985">
<button
id="quick-add-template--22342066635025__featured-collection9297497587985-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9297497587985-submit title-template--22342066635025__featured-collection-9297497587985"
data-product-url="/products/antiaging-capsules-wrinkle-reduction-capsules"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9297497587985" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus Repair Reflection Capsules - Antiaging Capsules"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9297497587985"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9297497587985" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9297497587985"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-6"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 6;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinOilControlMoisturizer-50ml_small.jpg?v=1710137537"
data-src="//makhzan.ae/cdn/shop/files/PlantusSmoothSkinOilControlMoisturizer-50ml.jpg?v=1710137537&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Oil Control Moisturizer| Mattifying Face Cream"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/oil-control-moisturizer-mattifying-face-cream"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9298919751953"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9298919751953 NoMediaStandardBadge-template--22342066635025__featured-collection-9298919751953"
>
Plantus SmoothSkin Oil Control Moisturizer - Mattifying Face Cream
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9298919751953"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9298919751953"
>
<a
href="/products/oil-control-moisturizer-mattifying-face-cream"
id="CardLink-template--22342066635025__featured-collection-9298919751953"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9298919751953 Badge-template--22342066635025__featured-collection-9298919751953"
>
Plantus SmoothSkin Oil Control Moisturizer - Mattifying Face Cream
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 76.65 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
89.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 76.65 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9298919751953">
<button
id="quick-add-template--22342066635025__featured-collection9298919751953-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9298919751953-submit title-template--22342066635025__featured-collection-9298919751953"
data-product-url="/products/oil-control-moisturizer-mattifying-face-cream"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9298919751953" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus SmoothSkin Oil Control Moisturizer - Mattifying Face Cream"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9298919751953"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9298919751953" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9298919751953"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured-collection-7"
class="grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 7;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/PlantusMoistSkinDailyCareMoisturizer-50ml_small.jpg?v=1710137534"
data-src="//makhzan.ae/cdn/shop/files/PlantusMoistSkinDailyCareMoisturizer-50ml.jpg?v=1710137534&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Daily Hydration Moisturizer "
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/plantus-moistskin-natural-everyday-face-cream"
id="StandardCardNoMediaLink-template--22342066635025__featured-collection-9298849726737"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured-collection-9298849726737 NoMediaStandardBadge-template--22342066635025__featured-collection-9298849726737"
>
Plantus MoistSkin Daily Care Moisturizer - Everyday Face Cream
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge-template--22342066635025__featured-collection-9298849726737"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured-collection-9298849726737"
>
<a
href="/products/plantus-moistskin-natural-everyday-face-cream"
id="CardLink-template--22342066635025__featured-collection-9298849726737"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured-collection-9298849726737 Badge-template--22342066635025__featured-collection-9298849726737"
>
Plantus MoistSkin Daily Care Moisturizer - Everyday Face Cream
</a>
</h3>
<div class="card-information"><span class="visually-hidden">Vendor:</span>
<div class="caption-with-letter-spacing light">PLANTUS Cosmetic</div><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 72.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
85.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 72.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><modal-opener data-modal="#QuickAdd-9298849726737">
<button
id="quick-add-template--22342066635025__featured-collection9298849726737-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured-collection9298849726737-submit title-template--22342066635025__featured-collection-9298849726737"
data-product-url="/products/plantus-moistskin-natural-everyday-face-cream"
>
Choose options
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button>
</modal-opener>
<quick-add-modal id="QuickAdd-9298849726737" class="quick-add-modal">
<div
role="dialog"
aria-label="Choose options for Plantus MoistSkin Daily Care Moisturizer - Everyday Face Cream"
aria-modal="true"
class="quick-add-modal__content global-settings-popup"
tabindex="-1"
>
<button
id="ModalClose-9298849726737"
type="button"
class="quick-add-modal__toggle"
aria-label="Close"
>
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
focusable="false"
class="icon icon-close"
fill="none"
viewBox="0 0 18 17"
>
<path d="M.865 15.978a.5.5 0 00.707.707l7.433-7.431 7.579 7.282a.501.501 0 00.846-.37.5.5 0 00-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 10-.707-.708L8.991 7.853 1.413.573a.5.5 0 10-.693.72l7.563 7.268-7.418 7.417z" fill="currentColor">
</svg>
</button>
<div id="QuickAddInfo-9298849726737" class="quick-add-modal__content-info"></div>
</div>
</quick-add-modal></div><div class="card__badge bottom left"><span
id="Badge-template--22342066635025__featured-collection-9298849726737"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</li></ul></slider-component></div>
</div>
</section><section id="shopify-section-template--22342066635025__rich_text_c7JDWm" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-rich-text.css?v=155250126305810049721712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__rich_text_c7JDWm-padding {
padding-top: 30px;
padding-bottom: 39px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__rich_text_c7JDWm-padding {
padding-top: 40px;
padding-bottom: 52px;
}
}</style><div class="isolate">
<div class="rich-text content-container color-scheme-2 gradient rich-text--full-width content-container--full-width section-template--22342066635025__rich_text_c7JDWm-padding">
<div class="rich-text__wrapper rich-text__wrapper--center page-width">
<div class="rich-text__blocks center"><h2
class="rich-text__heading rte inline-richtext h1 scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<strong>MIARA Essence Collection | Clean Beauty Botanicals </strong>
</h2><div
class="rich-text__text rte scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<p>The power of Miara Essence skin care products lies in nature. Rediscover your natural beauty at every stage of life. Use our natural skincare range and enjoy healthy skin everyday. Test Miara Essence finest natural ingredients for the perfect skin care routine. Our essence hydrates and restores your natural radiance. Shop the best skin care products today.</p>
</div><div
class="rich-text__buttons scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
><a
href="/collections"
class="button button--secondary"
>Check all products</a></div></div>
</div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__collage_ppfyP4" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/collage.css?v=146639449248111028491712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-card.css?v=170127402091165654191712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-price.css?v=70172745017360139101712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-modal-video.css?v=48762958730556882751712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-deferred-media.css?v=14096082462203297471712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__collage_ppfyP4-padding {
padding-top: 27px;
padding-bottom: 27px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__collage_ppfyP4-padding {
padding-top: 36px;
padding-bottom: 36px;
}
}</style><div class="color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a gradient isolate">
<div class="page-width section-template--22342066635025__collage_ppfyP4-padding"><div class="collage"><div
class="collage__item collage__item--image collage__item--left scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
><div class="collage-card card-wrapper product-card-wrapper color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient">
<div
class="media media--transparent ratio"
style="--ratio-percent: 100.0%"
><img src="//makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=3200" alt="Natural Skincare Coffee Scrub. Cream Form. Light Exfoliate " srcset="//makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=50 50w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=75 75w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=100 100w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=150 150w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=200 200w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=300 300w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=400 400w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=500 500w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=750 750w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=1000 1000w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=1250 1250w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=1500 1500w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=1750 1750w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=2000 2000w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=2250 2250w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=2500 2500w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=2750 2750w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=3000 3000w, //makhzan.ae/cdn/shop/files/MIaraEssenceCoffeeScrubMakhzanUAE1080_ac3fe7f4-88a8-46eb-9e41-5381dc14b3b1.png?v=1725254653&width=3200 3200w" width="3200" height="3200" loading="lazy" sizes="(min-width: 1400px) calc((1400px - 100px) * 2 / 3 - 20px),
(min-width: 750px) calc((100vw - 100px) * 2 / 3 - 20px),
calc(100vw - 30px)
">
</div>
</div></div><div
class="collage__item collage__item--product collage__item--left scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
card--extend-height
"
style="--ratio-percent: 100.0%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100.0%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MiaraEssenceOrganicRoseYeastSuperCreamforPurifyingEnzymaticFaceCare-50ml_small.jpg?v=1710752360"
data-src="//makhzan.ae/cdn/shop/files/MiaraEssenceOrganicRoseYeastSuperCreamforPurifyingEnzymaticFaceCare-50ml.jpg?v=1710752360&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Organic Rose Face Cream - Anti Aging Rose Cream"
class="motion-reduce opt_lazy"
width="1080"
height="1080"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/rose-face-cream-for-dry-skin"
id="StandardCardNoMediaLink--9287358710033"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink--9287358710033 NoMediaStandardBadge--9287358710033"
>
Miara Essence Organic Rose Face Cream - For Dry Skin
</a>
</h3>
</div>
<div class="card__badge bottom left"><span
id="NoMediaStandardBadge--9287358710033"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title--9287358710033"
>
<a
href="/products/rose-face-cream-for-dry-skin"
id="CardLink--9287358710033"
class="full-unstyled-link"
aria-labelledby="CardLink--9287358710033 Badge--9287358710033"
>
Miara Essence Organic Rose Face Cream - For Dry Skin
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='1' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <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> </span> <span class='jdgm-prev-badge__text'> 1 review </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price price--on-sale"
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
From 38.25 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
45.00 AED
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
From 38.25 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="card__badge bottom left"><span
id="Badge--9287358710033"
class="badge badge--bottom-left color-scheme-5"
>Sale</span></div>
</div>
</div>
</div>
</div><div
class="collage__item collage__item--collection collage__item--left scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
>
<div class="card-wrapper animate-arrow product-card-wrapper">
<div
class="
card
card--standard
card--media
card--extend-height
"
style="--ratio-percent: 99.77553310886644%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 99.77553310886644%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MiaraEssenceMagicMakeupRemoverWipes100_Natural-Packof10_f00cdd10-aa70-4101-8224-9d70eaf6ca00_medium.png?v=1710752358"
data-src="//makhzan.ae/cdn/shop/files/MiaraEssenceMagicMakeupRemoverWipes100_Natural-Packof10_f00cdd10-aa70-4101-8224-9d70eaf6ca00.png?v=1710752358&width=1500"
sizes="
(min-width: 1400px) 650px,
(min-width: 750px) calc((100vw - 10rem) / 2),
calc(100vw - 3rem)
"
alt="Natural Makeup Remover Wipes - Clean Makeup Remover Wipes"
height="889"
width="891"
class="motion-reduce opt_lazy"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/make-up-remover-wipes-in-uae-gentle-cleansing-wipes"
class="full-unstyled-link"
>Natural Makeup Remover Wipes
</a>
</h3><p class="card__caption">Experience the ultimate convenience in personal care with our premium cleansing and...<span class="icon-wrap"> <svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</p></div>
</div></div><div class="card__content">
<div class="card__information">
<h3 class="card__heading">
<a
href="/collections/make-up-remover-wipes-in-uae-gentle-cleansing-wipes"
class="full-unstyled-link"
>Natural Makeup Remover Wipes<span class="icon-wrap"><svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</span>
</a>
</h3></div>
</div></div>
</div>
</div></div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__rich_text_mKBH7V" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-rich-text.css?v=155250126305810049721712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__rich_text_mKBH7V-padding {
padding-top: 30px;
padding-bottom: 30px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__rich_text_mKBH7V-padding {
padding-top: 40px;
padding-bottom: 40px;
}
}</style><div class="isolate">
<div class="rich-text content-container color-scheme-4 gradient rich-text--full-width content-container--full-width section-template--22342066635025__rich_text_mKBH7V-padding">
<div class="rich-text__wrapper rich-text__wrapper--center page-width">
<div class="rich-text__blocks center"><h2
class="rich-text__heading rte inline-richtext h1 scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<strong>Wellness Supplements| Essential Vitamins & Minerals</strong>
</h2><div
class="rich-text__text rte scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<p>Enrich your diet with our premium daily multivitamins. Packed with essential nutrients, our dietary supplements are the key to your overall health. Explore expertly curated range of essential vitamins to improve your quality of life. Experience the benefits of our best wellness supplements today!</p>
</div><div
class="rich-text__buttons scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
><a
href="/collections/wellness-supplements"
class="button button--secondary"
>View all</a></div></div>
</div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__featured_collection_nhnfN6" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/component-card.css?v=170127402091165654191712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-price.css?v=70172745017360139101712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-slider.css?v=142503135496229589681712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/template-collection.css?v=58558206033505836701712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/quick-add.css?v=167457951211641553491712479486" rel="stylesheet" type="text/css" media="all" />
<script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/quick-add.js?v=53942799839994596201712479486" defer="defer"></script>
<script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/product-form.js?v=133081758708377679181712479486" defer="defer"></script><style data-shopify>.section-template--22342066635025__featured_collection_nhnfN6-padding {
padding-top: 27px;
padding-bottom: 27px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__featured_collection_nhnfN6-padding {
padding-top: 36px;
padding-bottom: 36px;
}
}</style><div class="color-scheme-342ac137-625d-4e5e-a9ac-9ef59bc5570a isolate gradient">
<div class="collection section-template--22342066635025__featured_collection_nhnfN6-padding">
<div class="collection__title title-wrapper title-wrapper--no-top-margin page-width title-wrapper--self-padded-tablet-down"></div>
<slider-component class="slider-mobile-gutter page-width-desktop scroll-trigger animate--slide-in">
<ul
id="Slider-template--22342066635025__featured_collection_nhnfN6"
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"
role="list"
aria-label="Slider"
><li
id="Slide-template--22342066635025__featured_collection_nhnfN6-1"
class="grid__item slider__slide scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100.0%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100.0%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MaxilivCvit20EffervescentTablets_small.jpg?v=1724320045"
data-src="//makhzan.ae/cdn/shop/files/MaxilivCvit20EffervescentTablets.jpg?v=1724320045&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Maxiliv Vitamin C Effervescent - Immunity Booster Tablets"
class="motion-reduce opt_lazy"
width="500"
height="500"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/maxiliv-vitamin-c-effervescent-immunity-booster-tablets"
id="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018324119825"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018324119825 NoMediaStandardBadge-template--22342066635025__featured_collection_nhnfN6-10018324119825"
>
Maxiliv Vitamin C Effervescent - Immunity Booster Tablets
</a>
</h3>
</div>
<div class="card__badge bottom left"></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured_collection_nhnfN6-10018324119825"
>
<a
href="/products/maxiliv-vitamin-c-effervescent-immunity-booster-tablets"
id="CardLink-template--22342066635025__featured_collection_nhnfN6-10018324119825"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured_collection_nhnfN6-10018324119825 Badge-template--22342066635025__featured_collection_nhnfN6-10018324119825"
>
Maxiliv Vitamin C Effervescent - Immunity Booster Tablets
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='0.00' data-number-of-reviews='0' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='0.00' tabindex='0' aria-label='0.00 stars' role='button'> <span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> No reviews </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price "
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
14.38 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
14.38 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><product-form data-section-id="template--22342066635025__featured_collection_nhnfN6"><form method="post" action="/cart/add" id="quick-add-template--22342066635025__featured_collection_nhnfN610018324119825" 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
type="hidden"
name="id"
value="50156841599249"
class="product-variant-id"
>
<button
id="quick-add-template--22342066635025__featured_collection_nhnfN610018324119825-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured_collection_nhnfN610018324119825-submit title-template--22342066635025__featured_collection_nhnfN6-10018324119825"
aria-live="polite"
data-sold-out-message="true"
>
<span>Add to cart
</span>
<span class="sold-out-message hidden">
Sold out
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button><input type="hidden" name="product-id" value="10018324119825" /><input type="hidden" name="section-id" value="template--22342066635025__featured_collection_nhnfN6" /></form></product-form></div><div class="card__badge bottom left"></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured_collection_nhnfN6-2"
class="grid__item slider__slide scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100.0%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100.0%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MaxilivCollagenMax-C30Sachets_small.jpg?v=1724320036"
data-src="//makhzan.ae/cdn/shop/files/MaxilivCollagenMax-C30Sachets.jpg?v=1724320036&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Maxiliv Collagen Max C - Joint Support Supplement"
class="motion-reduce opt_lazy"
width="500"
height="500"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/maxiliv-collagen-max-c-joint-support-supplement"
id="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018457518353"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018457518353 NoMediaStandardBadge-template--22342066635025__featured_collection_nhnfN6-10018457518353"
>
Maxiliv Collagen Max C - Joint Support Supplement
</a>
</h3>
</div>
<div class="card__badge bottom left"></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured_collection_nhnfN6-10018457518353"
>
<a
href="/products/maxiliv-collagen-max-c-joint-support-supplement"
id="CardLink-template--22342066635025__featured_collection_nhnfN6-10018457518353"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured_collection_nhnfN6-10018457518353 Badge-template--22342066635025__featured_collection_nhnfN6-10018457518353"
>
Maxiliv Collagen Max C - Joint Support Supplement
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='1' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <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> </span> <span class='jdgm-prev-badge__text'> 1 review </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price "
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
136.75 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
136.75 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><product-form data-section-id="template--22342066635025__featured_collection_nhnfN6"><form method="post" action="/cart/add" id="quick-add-template--22342066635025__featured_collection_nhnfN610018457518353" 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
type="hidden"
name="id"
value="50157607289105"
class="product-variant-id"
>
<button
id="quick-add-template--22342066635025__featured_collection_nhnfN610018457518353-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured_collection_nhnfN610018457518353-submit title-template--22342066635025__featured_collection_nhnfN6-10018457518353"
aria-live="polite"
data-sold-out-message="true"
>
<span>Add to cart
</span>
<span class="sold-out-message hidden">
Sold out
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button><input type="hidden" name="product-id" value="10018457518353" /><input type="hidden" name="section-id" value="template--22342066635025__featured_collection_nhnfN6" /></form></product-form></div><div class="card__badge bottom left"></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured_collection_nhnfN6-3"
class="grid__item slider__slide scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100.0%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100.0%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MaxilivQ10HighFormula20EffervescentTablets_small.jpg?v=1724320067"
data-src="//makhzan.ae/cdn/shop/files/MaxilivQ10HighFormula20EffervescentTablets.jpg?v=1724320067&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Maxiliv COQ10 High Formula - Effervescent Tablets"
class="motion-reduce opt_lazy"
width="500"
height="500"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/maxiliv-coq10-high-formula-effervescent-tablets"
id="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018600255761"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018600255761 NoMediaStandardBadge-template--22342066635025__featured_collection_nhnfN6-10018600255761"
>
Maxiliv COQ10 High Formula - Effervescent Tablets
</a>
</h3>
</div>
<div class="card__badge bottom left"></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured_collection_nhnfN6-10018600255761"
>
<a
href="/products/maxiliv-coq10-high-formula-effervescent-tablets"
id="CardLink-template--22342066635025__featured_collection_nhnfN6-10018600255761"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured_collection_nhnfN6-10018600255761 Badge-template--22342066635025__featured_collection_nhnfN6-10018600255761"
>
Maxiliv COQ10 High Formula - Effervescent Tablets
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='0.00' data-number-of-reviews='0' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='0.00' tabindex='0' aria-label='0.00 stars' role='button'> <span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> No reviews </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price "
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
28.35 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
28.35 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><product-form data-section-id="template--22342066635025__featured_collection_nhnfN6"><form method="post" action="/cart/add" id="quick-add-template--22342066635025__featured_collection_nhnfN610018600255761" 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
type="hidden"
name="id"
value="50158201602321"
class="product-variant-id"
>
<button
id="quick-add-template--22342066635025__featured_collection_nhnfN610018600255761-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured_collection_nhnfN610018600255761-submit title-template--22342066635025__featured_collection_nhnfN6-10018600255761"
aria-live="polite"
data-sold-out-message="true"
>
<span>Add to cart
</span>
<span class="sold-out-message hidden">
Sold out
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button><input type="hidden" name="product-id" value="10018600255761" /><input type="hidden" name="section-id" value="template--22342066635025__featured_collection_nhnfN6" /></form></product-form></div><div class="card__badge bottom left"></div>
</div>
</div>
</div>
</li><li
id="Slide-template--22342066635025__featured_collection_nhnfN6-4"
class="grid__item slider__slide scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 4;"
>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-rating.css?v=179577762467860590411712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-volume-pricing.css?v=56284703641257077881712479486" rel="stylesheet" type="text/css" media="all" />
<div class="card-wrapper product-card-wrapper underline-links-hover">
<div
class="
card card--standard
card--media
"
style="--ratio-percent: 100.0%;"
>
<div
class="card__inner color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient ratio"
style="--ratio-percent: 100.0%;"
><div class="card__media">
<div class="media media--transparent media--hover-effect">
<img
src="//makhzan.ae/cdn/shop/files/MaxilivImmuneDefence20EffervescentTablets_small.jpg?v=1724320055"
data-src="//makhzan.ae/cdn/shop/files/MaxilivImmuneDefence20EffervescentTablets.jpg?v=1724320055&width=533"
sizes="(min-width: 1400px) 317px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
alt="Maxiliv Immune Defence - Effervescent Immunity Supplement"
class="motion-reduce opt_lazy"
width="500"
height="500"
>
</div>
</div><div class="card__content">
<div class="card__information">
<h3
class="card__heading"
>
<a
href="/products/maxiliv-immune-defence-effervescent-immunity-supplement"
id="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018602778897"
class="full-unstyled-link"
aria-labelledby="StandardCardNoMediaLink-template--22342066635025__featured_collection_nhnfN6-10018602778897 NoMediaStandardBadge-template--22342066635025__featured_collection_nhnfN6-10018602778897"
>
Maxiliv Immune Defence - Effervescent Immunity Supplement
</a>
</h3>
</div>
<div class="card__badge bottom left"></div>
</div>
</div>
<div class="card__content">
<div class="card__information">
<h3
class="card__heading h5"
id="title-template--22342066635025__featured_collection_nhnfN6-10018602778897"
>
<a
href="/products/maxiliv-immune-defence-effervescent-immunity-supplement"
id="CardLink-template--22342066635025__featured_collection_nhnfN6-10018602778897"
class="full-unstyled-link"
aria-labelledby="CardLink-template--22342066635025__featured_collection_nhnfN6-10018602778897 Badge-template--22342066635025__featured_collection_nhnfN6-10018602778897"
>
Maxiliv Immune Defence - Effervescent Immunity Supplement
</a>
</h3>
<div class="card-information"><span class="caption-large light"></span>
<!-- Start of Judge.me code -->
<div class='jdgm-widget jdgm-preview-badge'>
<div style='display:none' class='jdgm-prev-badge' data-average-rating='0.00' data-number-of-reviews='0' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='0.00' tabindex='0' aria-label='0.00 stars' role='button'> <span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> No reviews </span> </div>
</div>
<!-- End of Judge.me code -->
<div
class="
price "
>
<div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
<span class="price-item price-item--regular">
26.60 AED
</span></div>
<div class="price__sale">
<span class="visually-hidden visually-hidden--inline">Regular price</span>
<span>
<s class="price-item price-item--regular">
</s>
</span><span class="visually-hidden visually-hidden--inline">Sale price</span>
<span class="price-item price-item--sale price-item--last">
26.60 AED
</span>
</div>
<small class="unit-price caption hidden">
<span class="visually-hidden">Unit price</span>
<span class="price-item price-item--last">
<span></span>
<span aria-hidden="true">/</span>
<span class="visually-hidden"> per </span>
<span>
</span>
</span>
</small>
</div></div>
</div>
</div><div class="quick-add no-js-hidden"><product-form data-section-id="template--22342066635025__featured_collection_nhnfN6"><form method="post" action="/cart/add" id="quick-add-template--22342066635025__featured_collection_nhnfN610018602778897" 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
type="hidden"
name="id"
value="50158216347921"
class="product-variant-id"
>
<button
id="quick-add-template--22342066635025__featured_collection_nhnfN610018602778897-submit"
type="submit"
name="add"
class="quick-add__submit button button--full-width button--secondary"
aria-haspopup="dialog"
aria-labelledby="quick-add-template--22342066635025__featured_collection_nhnfN610018602778897-submit title-template--22342066635025__featured_collection_nhnfN6-10018602778897"
aria-live="polite"
data-sold-out-message="true"
>
<span>Add to cart
</span>
<span class="sold-out-message hidden">
Sold out
</span>
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-loading-spinner.css?v=116724955567955766481712479486" rel="stylesheet" type="text/css" media="all" />
<div class="loading__spinner hidden">
<svg
aria-hidden="true"
focusable="false"
class="spinner"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg>
</div>
</button><input type="hidden" name="product-id" value="10018602778897" /><input type="hidden" name="section-id" value="template--22342066635025__featured_collection_nhnfN6" /></form></product-form></div><div class="card__badge bottom left"></div>
</div>
</div>
</div>
</li></ul><div class="slider-buttons no-js-hidden">
<button
type="button"
class="slider-button slider-button--prev"
name="previous"
aria-label="Slide left"
aria-controls="Slider-template--22342066635025__featured_collection_nhnfN6"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div class="slider-counter caption">
<span class="slider-counter--current">1</span>
<span aria-hidden="true"> / </span>
<span class="visually-hidden">of</span>
<span class="slider-counter--total">4</span>
</div>
<button
type="button"
class="slider-button slider-button--next"
name="next"
aria-label="Slide right"
aria-controls="Slider-template--22342066635025__featured_collection_nhnfN6"
>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
</div></slider-component><div class="center collection__view-all scroll-trigger animate--slide-in">
<a
href="/collections/wellness-supplements"
class="button"
aria-label="View all products in the Wellness Supplements collection"
>
View all
</a>
</div></div>
</div>
</section><section id="shopify-section-template--22342066635025__image_banner_UBPawE" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-image-banner.css?v=104371272348087278231712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>#Banner-template--22342066635025__image_banner_UBPawE::after {
opacity: 0.0;
}</style><div
id="Banner-template--22342066635025__image_banner_UBPawE"
class="banner banner--content-align-left banner--content-align-mobile-center banner--medium banner--desktop-transparent scroll-trigger animate--fade-in"
><div class="banner__media media scroll-trigger animate--fade-in"><img src="//makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=3840" alt="Plantus SmoothSkin Oil Control Moisturizer - Mattifying Face Cream" srcset="//makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=375 375w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=550 550w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=750 750w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=1100 1100w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=1500 1500w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=1780 1780w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=2000 2000w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=3000 3000w, //makhzan.ae/cdn/shop/files/banner_2.jpg?v=1724319976&width=3840 3840w" width="1200" height="500.0" loading="lazy" sizes="100vw" fetchpriority="auto">
</div><div class="banner__content banner__content--bottom-left page-width scroll-trigger animate--slide-in">
<div class="banner__box content-container content-container--full-width-mobile color-scheme-0e4331f3-92af-4c70-a253-5ba3eb688d23 gradient"></div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__rich_text_hDw6ak" class="shopify-section section"><link href="//makhzan.ae/cdn/shop/t/12/assets/section-rich-text.css?v=155250126305810049721712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--22342066635025__rich_text_hDw6ak-padding {
padding-top: 30px;
padding-bottom: 39px;
}
@media screen and (min-width: 750px) {
.section-template--22342066635025__rich_text_hDw6ak-padding {
padding-top: 40px;
padding-bottom: 52px;
}
}</style><div class="isolate">
<div class="rich-text content-container color-scheme-1 gradient rich-text--full-width content-container--full-width section-template--22342066635025__rich_text_hDw6ak-padding">
<div class="rich-text__wrapper rich-text__wrapper--center page-width">
<div class="rich-text__blocks center"><h2
class="rich-text__heading rte inline-richtext h2 scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
>
Discover the Best Natural Skincare in UAE. Start with the Best Skin Care Products - Plantus MoistSkin Daily Care Moisturizer with Shea Butter
</h2><div
class="rich-text__buttons scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
><a
href="/products/oil-control-moisturizer-mattifying-face-cream"
class="button button--primary"
>Shop Now</a></div></div>
</div>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__1712222385ce81105c" class="shopify-section section"><div class="page-width scroll-trigger animate--slide-in"><div id="shopify-block-instafeed_app_block_LHgtiN" class="shopify-block shopify-app-block">
<style>
body #insta-feed {
color: #ecdec1;
text-align: center;
}
#insta-feed h2 {
color: #ecdec1;
}
</style>
<div id="insta-feed"></div>
<script>
if (typeof instafeedLocalTitle === 'undefined') var instafeedLocalTitle = "";
</script>
</div>
</div>
</section><section id="shopify-section-template--22342066635025__171229968328b07706" class="shopify-section section"><div class="page-width scroll-trigger animate--slide-in"><div id="shopify-block-judge_me_reviews_featured_carousel_QM6gMP" class="shopify-block shopify-app-block"><div style="margin:0 auto;max-width:1400px;">
<div class='jdgm-carousel-wrapper'>
<div class="jdgm-carousel-title-and-link">
<h2 class='jdgm-carousel-title'>Let customers speak for us</h2>
<span class="jdgm-all-reviews-rating-wrapper" href="javascript:void(0)">
<span style="display:block" data-score='4.80' class='jdgm-all-reviews-rating' aria-label='4.80 stars' tabindex='0' role='img'></span>
<span style="display: block" class='jdgm-carousel-number-of-reviews' data-number-of-reviews='5'>
from 5 reviews
</span>
</span>
</div>
<section class='jdgm-widget jdgm-carousel jdgm-carousel--default-theme'> <style>.jdgm-carousel{display: none}</style> <style> .jdgm-xx{left:0}.jdgm-carousel-wrapper .jdgm-carousel__arrows .jdgm-carousel__right-arrow,.jdgm-carousel-wrapper .jdgm-carousel__arrows .jdgm-carousel__left-arrow{border-color:#000000}@media only screen and (min-width: 991px){.jdgm-carousel-wrapper .jdgm-carousel-item{width:50.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)}.jdgm-carousel-wrapper .jdgm-carousel-item__product{height:0}.jdgm-carousel-wrapper .jdgm-carousel-item__review{height:calc(100% - 1.4em)}
</style> <div class='jdgm-carousel__item-container'> <div class='jdgm-carousel__item-wrapper'><div class='jdgm-carousel-item ' data-review-id='0ba70948-de26-432e-964c-d1ef27db160a'> <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'>Good value for money</div> <div class='jdgm-carousel-item__review-body'><p>I used it for 20 days and I can say it's really good. I like that it has no sugar and if you mix it with smoothie there is no flavor or strange smell. My knee pain has improved. Really good product</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Hussein A. </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='10/02/2024'> 10/02/2024 </div> </div> <a class='jdgm-carousel-item__product ' href='/products/maxiliv-collagen-max-c-joint-support-supplement#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Maxiliv Collagen Max C - Joint Support Supplement </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='bfb181e8-8882-4871-9303-2d1311c848a5'> <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'>Finally I found a scrub I can use everyday.</div> <div class='jdgm-carousel-item__review-body'><p>Love this body scrub. Its creamy and light so you can use everyday. Soft exfoliation. Leaves skin noticeably smoother</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Latifa A. </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='07/15/2024'> 07/15/2024 </div> </div> <a class='jdgm-carousel-item__product ' href='/products/miara-essence-coffee-scrub-natural-coffee-scrub#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Miara Essence Coffee Scrub - Natural Coffee Scrub </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='eb3c763c-d55d-4a8e-8d9a-dd95804ebc32'> <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'>Very good ingredients mix highly recommend</div> <div class='jdgm-carousel-item__review-body'><p>I have been taking supplements for years. Now I am getting older and want to benefit my skin and health in general, this product made my skin glow and took away my fatigue without any negative side effects.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> Yasmin N </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='07/04/2024'> 07/04/2024 </div> </div> <a class='jdgm-carousel-item__product ' href='/products/antiaging-capsules-wrinkle-reduction-capsules#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Plantus Repair Reflection Capsules - Antiaging Capsules </div> </a> </div><div class='jdgm-carousel-item ' data-review-id='0afb2481-40e0-439f-9238-c3e7b0fbb7e0'> <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'>Rose Vasline</div> <div class='jdgm-carousel-item__review-body'><p>Is like Vaseline. But with rose.
<br />Softer. More hydrating.</p></div> </div> </div> <div class='jdgm-carousel-item__reviewer-name-wrapper'> <div class='jdgm-carousel-item__reviewer-name jdgm-ellipsis'> A.S.Darwish </div> <div class='jdgm-carousel-item__timestamp jdgm-ellipsis jdgm-spinner' data-time='05/01/2024'> 05/01/2024 </div> </div> <a class='jdgm-carousel-item__product ' href='/products/rose-face-cream-for-dry-skin#judgeme_product_reviews'> <div class='jdgm-carousel-item__product-title jdgm-ellipsis'> Miara Essence Organic Rose Face Cream - For Dry Skin </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>
</div>
</div>
</div>
</div>
</section>
</main>
<style>
.whatsapp-icon{
fill:#2CB742;
width: 60px;
height: 60px;
position: fixed;
bottom: 30px;
right : 30px;
z-index: 10;
animation: mymove 1.5s infinite;
}
.whatsapp-icon2{
position: fixed;
bottom: 10px;
right : 6px;
z-index: 1;
animation: mymove 0.5s infinite;
}
@keyframes mymove{
50% {transform: rotate(10deg);}
}
</style>
<a target="_blank" rel="noopener" href="http://api.whatsapp.com/send?phone=971504029696&text=Product%20Link%20:https://makhzan.ae%0a%0a%0a%0aNo.%20of%20Quantity%20needed:1%0a%0aDelivery%20Address:(type%20here)" class="sales-point">
<svg aria-hidden="true" focusable="false" role="presentation" class="whatsapp-icon" viewBox="0 0 512 512"><path d="M260.062 32C138.605 32 40.134 129.701 40.134 250.232c0 41.23 11.532 79.79 31.559 112.687L32 480l121.764-38.682c31.508 17.285 67.745 27.146 106.298 27.146C381.535 468.464 480 370.749 480 250.232 480 129.701 381.535 32 260.062 32zm109.362 301.11c-5.174 12.827-28.574 24.533-38.899 25.072-10.314.547-10.608 7.994-66.84-16.434-56.225-24.434-90.052-83.844-92.719-87.67-2.669-3.812-21.78-31.047-20.749-58.455 1.038-27.413 16.047-40.346 21.404-45.725 5.351-5.387 11.486-6.352 15.232-6.413 4.428-.072 7.296-.132 10.573-.011 3.274.124 8.192-.685 12.45 10.639 4.256 11.323 14.443 39.153 15.746 41.989 1.302 2.839 2.108 6.126.102 9.771-2.012 3.653-3.042 5.935-5.961 9.083-2.935 3.148-6.174 7.042-8.792 9.449-2.92 2.665-5.97 5.572-2.9 11.269 3.068 5.693 13.653 24.356 29.779 39.736 20.725 19.771 38.598 26.329 44.098 29.317 5.515 3.004 8.806 2.67 12.226-.929 3.404-3.599 14.639-15.746 18.596-21.169 3.955-5.438 7.661-4.373 12.742-2.329 5.078 2.052 32.157 16.556 37.673 19.551 5.51 2.989 9.193 4.529 10.51 6.9 1.317 2.38.901 13.531-4.271 26.359z"/></svg>
<svg height="100" width="100" class="whatsapp-icon2">
<circle cx="50" cy="50" r="20" fill="white" />
</svg>
</a>
<!-- BEGIN sections: footer-group -->
<section id="shopify-section-sections--22342062342417__1710744610d3c81b1e" class="shopify-section shopify-section-group-footer-group section"><div class="page-width scroll-trigger animate--slide-in"><div id="shopify-block-trust_badge_master_trustpayment_div_block_nYigQR" class="shopify-block shopify-app-block"><!-- BEGIN app snippet: trustpayment_div -->
<script>
window.Heading2 = "Secured and trusted checkout with:";
</script>
<div class='hulkapps-payment-icons section_payment hulk_icon_false'></div>
<style>
@font-face {
font-family: Lato;
font-weight: 400;
font-style: normal;
src: url("//makhzan.ae/cdn/fonts/lato/lato_n4.c86cddcf8b15d564761aaa71b6201ea326f3648b.woff2?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=3e795554af0223982f6c7a59a94a3342c48b479fea5680d48965bece35d67ce0") format("woff2"),
url("//makhzan.ae/cdn/fonts/lato/lato_n4.e0ee1e2c008a0f429542630edf70be01045ac5e9.woff?h1=bWFraHphbi11YWUuYWNjb3VudC5teXNob3BpZnkuY29t&h2=bWFraHphbi5hZQ&h3=YWNjb3VudC5tYWtoemFuLmFl&hmac=a2098eb8f2d1b41d2d765b9e4fa17ad3d469ad7c3a93c44445de5dd38bab24c9") format("woff");
}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li{display:inline-block!important;padding:0 10px!important;vertical-align:middle!important;margin-bottom:0!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li img{width:40px!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li svg{width:40px!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font{font-size:40px!important;color:#140f0f!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font [class*=' icofont-'],#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font [class^=icofont-]{font-size:40px!important;color:#140f0f!important}
@media only screen and (max-width:480px){
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font{font-size:30px!important;}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font [class*=' icofont-'],#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li.payment--font [class^=icofont-]{font-size:"+mobile_icon_size+"px!important;color:"+mobile_icon_color+"}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li img{width:"+mobile_icon_size+"px!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper ul li svg{width:"+mobile_icon_size+"px!important}}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper .payment-icon{font-size:19px!important;color:#000000!important;text-align:center!important;font-family:Lato,sans-serif!important;font-style:normal!important;font-weight:400!important;text-transform:none!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper .payment--icon--list{margin-left:0!important;list-style:none!important}
#shopify-block-trust_badge_master_trustpayment_div_block_nYigQR .hulk_icon_true .hulkapps_payment_wrapper #payment_icon_list{text-align:center!important}
</style><!-- END app snippet --></div>
</div>
</section><div id="shopify-section-sections--22342062342417__footer" class="shopify-section shopify-section-group-footer-group">
<link href="//makhzan.ae/cdn/shop/t/12/assets/section-footer.css?v=72619989355558646551712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-newsletter.css?v=4727253280200485261712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-list-menu.css?v=151968516119678728991712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-list-payment.css?v=69253961410771838501712479486" rel="stylesheet" type="text/css" media="all" />
<link href="//makhzan.ae/cdn/shop/t/12/assets/component-list-social.css?v=35792976012981934991712479486" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.footer {
margin-top: 0px;
}
.section-sections--22342062342417__footer-padding {
padding-top: 30px;
padding-bottom: 15px;
}
@media screen and (min-width: 750px) {
.footer {
margin-top: 0px;
}
.section-sections--22342062342417__footer-padding {
padding-top: 40px;
padding-bottom: 20px;
}
}</style><footer class="footer color-scheme-3 gradient section-sections--22342062342417__footer-padding"><div class="footer__content-top page-width"><div
class="footer__blocks-wrapper grid grid--1-col grid--2-col grid--4-col-tablet scroll-trigger animate--slide-in"
data-cascade
><div
class="footer-block grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 1;"
><h2 class="footer-block__heading inline-richtext">Makhzan Limited</h2><div class="footer-block__details-content rte">
<p>Experience the Makhzan Limited difference where natural skincare and wellness supplements come together to elevate your journey to radiant health and beauty. Our daily multivitamins nourish your body from within.</p>
</div></div><div
class="footer-block grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 2;"
><div class="footer-block__brand-info"><div class="rte"><p></p></div>
<ul class="list-unstyled list-social footer__list-social" role="list"><li class="list-social__item">
<a href="https://www.facebook.com/profile.php?id=100090468172891&mibextid=ZbWKwL" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-facebook" viewBox="0 0 20 20">
<path fill="currentColor" d="M18 10.049C18 5.603 14.419 2 10 2c-4.419 0-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.951Z"/>
</svg>
<span class="visually-hidden">Facebook</span>
</a>
</li><li class="list-social__item">
<a href="https://www.instagram.com/makhzanuae?igsh=d3ZlMTNjemRucWFz" class="link list-social__link"><svg aria-hidden="true" focusable="false" 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.43 2.43 0 0 0-.912.593 2.486 2.486 0 0 0-.602.922c-.11.282-.238.702-.274 1.486-.046.84-.046 1.095-.046 3.23 0 2.134.01 2.39.046 3.229.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.046 2.134 0 2.39-.01 3.23-.046.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.23 0-2.134-.01-2.39-.055-3.229-.027-.784-.164-1.204-.274-1.495a2.43 2.43 0 0 0-.593-.913 2.604 2.604 0 0 0-.92-.602c-.284-.11-.703-.237-1.488-.273ZM6.697 2.05c.857-.036 1.131-.045 3.302-.045 1.1-.014 2.202.001 3.302.045.664.014 1.321.14 1.943.374a3.968 3.968 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.896 3.896 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.152 4.152 0 0 1-1.414-.922 4.128 4.128 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.44 4.44 0 0 1 .92-1.414 4.18 4.18 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.805Zm1.882 5.371a2.668 2.668 0 1 0 2.042-4.93 2.668 2.668 0 0 0-2.042 4.93Zm5.922-5.942a.958.958 0 1 1-1.355-1.355.958.958 0 0 1 1.355 1.355Z" clip-rule="evenodd"/>
</svg>
<span class="visually-hidden">Instagram</span>
</a>
</li><li class="list-social__item">
<a href="https://www.linkedin.com/company/makhzanuae/" class="link list-social__link"><svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-linkedin"viewBox="0 0 50 50">
<path d="M 9 4 C 6.2504839 4 4 6.2504839 4 9 L 4 41 C 4 43.749516 6.2504839 46 9 46 L 41 46 C 43.749516 46 46 43.749516 46 41 L 46 9 C 46 6.2504839 43.749516 4 41 4 L 9 4 z M 9 6 L 41 6 C 42.668484 6 44 7.3315161 44 9 L 44 41 C 44 42.668484 42.668484 44 41 44 L 9 44 C 7.3315161 44 6 42.668484 6 41 L 6 9 C 6 7.3315161 7.3315161 6 9 6 z M 14 11.011719 C 12.904779 11.011719 11.919219 11.339079 11.189453 11.953125 C 10.459687 12.567171 10.011719 13.484511 10.011719 14.466797 C 10.011719 16.333977 11.631285 17.789609 13.691406 17.933594 A 0.98809878 0.98809878 0 0 0 13.695312 17.935547 A 0.98809878 0.98809878 0 0 0 14 17.988281 C 16.27301 17.988281 17.988281 16.396083 17.988281 14.466797 A 0.98809878 0.98809878 0 0 0 17.986328 14.414062 C 17.884577 12.513831 16.190443 11.011719 14 11.011719 z M 14 12.988281 C 15.392231 12.988281 15.94197 13.610038 16.001953 14.492188 C 15.989803 15.348434 15.460091 16.011719 14 16.011719 C 12.614594 16.011719 11.988281 15.302225 11.988281 14.466797 C 11.988281 14.049083 12.140703 13.734298 12.460938 13.464844 C 12.78117 13.19539 13.295221 12.988281 14 12.988281 z M 11 19 A 1.0001 1.0001 0 0 0 10 20 L 10 39 A 1.0001 1.0001 0 0 0 11 40 L 17 40 A 1.0001 1.0001 0 0 0 18 39 L 18 33.134766 L 18 20 A 1.0001 1.0001 0 0 0 17 19 L 11 19 z M 20 19 A 1.0001 1.0001 0 0 0 19 20 L 19 39 A 1.0001 1.0001 0 0 0 20 40 L 26 40 A 1.0001 1.0001 0 0 0 27 39 L 27 29 C 27 28.170333 27.226394 27.345035 27.625 26.804688 C 28.023606 26.264339 28.526466 25.940057 29.482422 25.957031 C 30.468166 25.973981 30.989999 26.311669 31.384766 26.841797 C 31.779532 27.371924 32 28.166667 32 29 L 32 39 A 1.0001 1.0001 0 0 0 33 40 L 39 40 A 1.0001 1.0001 0 0 0 40 39 L 40 28.261719 C 40 25.300181 39.122788 22.95433 37.619141 21.367188 C 36.115493 19.780044 34.024172 19 31.8125 19 C 29.710483 19 28.110853 19.704889 27 20.423828 L 27 20 A 1.0001 1.0001 0 0 0 26 19 L 20 19 z M 12 21 L 16 21 L 16 33.134766 L 16 38 L 12 38 L 12 21 z M 21 21 L 25 21 L 25 22.560547 A 1.0001 1.0001 0 0 0 26.798828 23.162109 C 26.798828 23.162109 28.369194 21 31.8125 21 C 33.565828 21 35.069366 21.582581 36.167969 22.742188 C 37.266572 23.901794 38 25.688257 38 28.261719 L 38 38 L 34 38 L 34 29 C 34 27.833333 33.720468 26.627107 32.990234 25.646484 C 32.260001 24.665862 31.031834 23.983076 29.517578 23.957031 C 27.995534 23.930001 26.747519 24.626988 26.015625 25.619141 C 25.283731 26.611293 25 27.829667 25 29 L 25 38 L 21 38 L 21 21 z"></path>
</svg><span class="visually-hidden">Linkedin</span>
</a>
</li><li class="list-social__item">
<a href="https://www.youtube.com/channel/UCTKjlgUy_-Jn0CIOYXbVaYg" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-youtube" viewBox="0 0 20 20">
<path fill="currentColor" d="M18.16 5.87c.34 1.309.34 4.08.34 4.08s0 2.771-.34 4.08a2.125 2.125 0 0 1-1.53 1.53c-1.309.34-6.63.34-6.63.34s-5.321 0-6.63-.34a2.125 2.125 0 0 1-1.53-1.53c-.34-1.309-.34-4.08-.34-4.08s0-2.771.34-4.08a2.173 2.173 0 0 1 1.53-1.53C4.679 4 10 4 10 4s5.321 0 6.63.34a2.173 2.173 0 0 1 1.53 1.53ZM8.3 12.5l4.42-2.55L8.3 7.4v5.1Z"/>
</svg>
<span class="visually-hidden">YouTube</span>
</a>
</li><li class="list-social__item">
<a href="https://www.tiktok.com/@makhzanuae" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-tiktok" viewBox="0 0 20 20">
<path fill="currentColor" d="M10.511 1.705h2.74s-.157 3.51 3.795 3.768v2.711s-2.114.129-3.796-1.158l.028 5.606A5.073 5.073 0 1 1 8.213 7.56h.708v2.785a2.298 2.298 0 1 0 1.618 2.205L10.51 1.705Z"/>
</svg>
<span class="visually-hidden">TikTok</span>
</a>
</li><li class="list-social__item">
<a href="https://twitter.com/Makhzanuae" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-twitter" viewBox="0 0 20 20">
<path fill="currentColor" d="M18.608 4.967a7.364 7.364 0 0 1-1.758 1.828c0 .05 0 .13.02.23l.02.232a10.014 10.014 0 0 1-1.697 5.565 11.023 11.023 0 0 1-2.029 2.29 9.13 9.13 0 0 1-2.832 1.607 10.273 10.273 0 0 1-8.94-.985c.342.02.613.04.834.04 1.647 0 3.114-.502 4.4-1.506a3.616 3.616 0 0 1-3.315-2.46c.528.128 1.08.107 1.597-.061a3.485 3.485 0 0 1-2.029-1.216 3.385 3.385 0 0 1-.803-2.23v-.03c.462.242.984.372 1.587.402A3.465 3.465 0 0 1 2.116 5.76c0-.612.14-1.205.452-1.798a9.723 9.723 0 0 0 3.214 2.612A10.044 10.044 0 0 0 9.88 7.649a3.013 3.013 0 0 1-.13-.804c0-.974.34-1.808 1.034-2.49a3.466 3.466 0 0 1 2.561-1.035 3.505 3.505 0 0 1 2.551 1.104 6.812 6.812 0 0 0 2.24-.853 3.415 3.415 0 0 1-1.547 1.948 7.732 7.732 0 0 0 2.02-.542v-.01Z"/>
</svg>
<span class="visually-hidden">Twitter</span>
</a>
</li><li class="list-social__item">
<a href="https://www.pinterest.com/MakhzanUAE/" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-pinterest" viewBox="0 0 20 20">
<path fill="currentColor" d="M10 2.01c2.124.01 4.16.855 5.666 2.353a8.087 8.087 0 0 1 1.277 9.68A7.952 7.952 0 0 1 10 18.04a8.164 8.164 0 0 1-2.276-.307c.403-.653.672-1.24.816-1.729l.567-2.2c.134.27.393.5.768.702.384.192.768.297 1.19.297.836 0 1.585-.24 2.248-.72a4.678 4.678 0 0 0 1.537-1.969c.37-.89.554-1.848.537-2.813 0-1.249-.48-2.315-1.43-3.227a5.061 5.061 0 0 0-3.65-1.374c-.893 0-1.729.154-2.478.461a5.023 5.023 0 0 0-3.236 4.552c0 .72.134 1.355.413 1.902.269.538.672.922 1.22 1.152.096.039.182.039.25 0 .066-.028.114-.096.143-.192l.173-.653c.048-.144.02-.288-.105-.432a2.257 2.257 0 0 1-.548-1.565 3.803 3.803 0 0 1 3.976-3.861c1.047 0 1.863.288 2.44.855.585.576.883 1.315.883 2.228 0 .768-.106 1.479-.317 2.122a3.813 3.813 0 0 1-.893 1.556c-.384.384-.836.576-1.345.576-.413 0-.749-.144-1.018-.451-.259-.307-.345-.672-.25-1.085.147-.514.298-1.026.452-1.537l.173-.701c.057-.25.086-.451.086-.624 0-.346-.096-.634-.269-.855-.192-.22-.451-.336-.797-.336-.432 0-.797.192-1.085.595-.288.394-.442.893-.442 1.499.005.374.063.746.173 1.104l.058.144c-.576 2.478-.913 3.938-1.037 4.36-.116.528-.154 1.153-.125 1.863A8.067 8.067 0 0 1 2 10.03c0-2.208.778-4.11 2.343-5.666A7.721 7.721 0 0 1 10 2.001v.01Z"/>
</svg>
<span class="visually-hidden">Pinterest</span>
</a>
</li>
<br></br>
<li class="list-social__item">
<a href="https://api.whatsapp.com/send?phone=971504029696&text=Hello%Makhzan%20" class="link list-social__link"><svg aria-hidden="true" focusable="false" class="icon icon-whatsapp" viewBox="0 0 512 512">
<path d="M260.062 32C138.605 32 40.134 129.701 40.134 250.232c0 41.23 11.532 79.79 31.559 112.687L32 480l121.764-38.682c31.508 17.285 67.745 27.146 106.298 27.146C381.535 468.464 480 370.749 480 250.232 480 129.701 381.535 32 260.062 32zm109.362 301.11c-5.174 12.827-28.574 24.533-38.899 25.072-10.314.547-10.608 7.994-66.84-16.434-56.225-24.434-90.052-83.844-92.719-87.67-2.669-3.812-21.78-31.047-20.749-58.455 1.038-27.413 16.047-40.346 21.404-45.725 5.351-5.387 11.486-6.352 15.232-6.413 4.428-.072 7.296-.132 10.573-.011 3.274.124 8.192-.685 12.45 10.639 4.256 11.323 14.443 39.153 15.746 41.989 1.302 2.839 2.108 6.126.102 9.771-2.012 3.653-3.042 5.935-5.961 9.083-2.935 3.148-6.174 7.042-8.792 9.449-2.92 2.665-5.97 5.572-2.9 11.269 3.068 5.693 13.653 24.356 29.779 39.736 20.725 19.771 38.598 26.329 44.098 29.317 5.515 3.004 8.806 2.67 12.226-.929 3.404-3.599 14.639-15.746 18.596-21.169 3.955-5.438 7.661-4.373 12.742-2.329 5.078 2.052 32.157 16.556 37.673 19.551 5.51 2.989 9.193 4.529 10.51 6.9 1.317 2.38.901 13.531-4.271 26.359z"></path>
</svg>
<span>+971 50 402 9696</span>
</a>
</li>
<br></br></ul>
</div></div><div
class="footer-block grid__item footer-block--menu scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 3;"
><h2 class="footer-block__heading inline-richtext">Quick links</h2><ul class="footer-block__details-content list-unstyled"><li>
<a
href="/"
class="link link--text list-menu__item list-menu__item--link list-menu__item--active"
>
Home
</a>
</li><li>
<a
href="/collections/best-sellers"
class="link link--text list-menu__item list-menu__item--link"
>
Shop
</a>
</li><li>
<a
href="/pages/about-us"
class="link link--text list-menu__item list-menu__item--link"
>
About us
</a>
</li><li>
<a
href="/pages/blogs"
class="link link--text list-menu__item list-menu__item--link"
>
Blogs
</a>
</li><li>
<a
href="/pages/contact"
class="link link--text list-menu__item list-menu__item--link"
>
Contact
</a>
</li></ul></div><div
class="footer-block grid__item scroll-trigger animate--slide-in"
data-cascade
style="--animation-order: 4;"
><div class="footer-block__details-content footer-block-image center"><div
class="footer-block__image-wrapper"
style="max-width: min(100%, 215px);"
>
<img
srcset="//makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=215, //makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=430 2x"
src="//makhzan.ae/cdn/shop/files/makhzan-logo_2.png?v=1710752318&width=760"
alt="Makhzan UAE . For natural and organic products"
width="438"
height="125"
>
</div></div></div></div><div
class="footer-block--newsletter scroll-trigger animate--slide-in"
data-cascade
><div class="footer-block__newsletter"><h2 class="footer-block__heading inline-richtext">Get our updates. Save 25% on your next order</h2><form method="post" action="/contact#ContactFooter" id="ContactFooter" accept-charset="UTF-8" class="footer__newsletter newsletter-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="contact[tags]" value="newsletter">
<div class="newsletter-form__field-wrapper">
<div class="field">
<input
id="NewsletterForm--sections--22342062342417__footer"
type="email"
name="contact[email]"
class="field__input"
value=""
aria-required="true"
autocorrect="off"
autocapitalize="off"
autocomplete="email"
placeholder="Email"
required
>
<label class="field__label" for="NewsletterForm--sections--22342062342417__footer">
Email
</label>
<button
type="submit"
class="newsletter-form__button field__button"
name="commit"
id="Subscribe"
aria-label="Subscribe"
>
<svg
viewBox="0 0 14 10"
fill="none"
aria-hidden="true"
focusable="false"
class="icon icon-arrow"
xmlns="http://www.w3.org/2000/svg"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.537.808a.5.5 0 01.817-.162l4 4a.5.5 0 010 .708l-4 4a.5.5 0 11-.708-.708L11.793 5.5H1a.5.5 0 010-1h10.793L8.646 1.354a.5.5 0 01-.109-.546z" fill="currentColor">
</svg>
</button>
</div></div></form></div></div>
</div><div
class="footer__content-bottom scroll-trigger animate--slide-in"
data-cascade
>
<div class="footer__content-bottom-wrapper page-width">
<div class="footer__column footer__localization isolate"><noscript><form method="post" action="/localization" id="FooterLanguageFormNoScript" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div class="localization-form__select">
<h2 class="visually-hidden" id="FooterLanguageLabelNoScript">
Language
</h2>
<select
class="localization-selector link"
name="locale_code"
aria-labelledby="FooterLanguageLabelNoScript"
><option
value="en"
lang="en"
selected
>
English
</option><option
value="ar"
lang="ar"
>
العربية
</option></select>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</div>
<button class="button button--tertiary">Update language</button></form></noscript>
<localization-form><form method="post" action="/localization" id="FooterLanguageForm" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/?srsltid=AfmBOooRUjhkXFsHgSHUWtG0UbU1_5dSu6c-IxA9ZUa4SUKUEM08EHD2" /><div class="no-js-hidden">
<h2 class="caption-large text-body" id="FooterLanguageLabel">
Language
</h2><div class="disclosure">
<button
type="button"
class="disclosure__button localization-form__select localization-selector link link--text caption-large"
aria-expanded="false"
aria-controls="FooterLanguageList"
aria-describedby="FooterLanguageLabel"
>
<span>English</span>
<svg aria-hidden="true" focusable="false" class="icon icon-caret" viewBox="0 0 10 6">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z" fill="currentColor">
</svg>
</button>
<div class="disclosure__list-wrapper" hidden>
<ul id="FooterLanguageList" role="list" class="disclosure__list list-unstyled"><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="en"
lang="en"
aria-current="true"
data-value="en"
>
<span
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
English
</span>
</a>
</li><li class="disclosure__item" tabindex="-1">
<a
class="link link--text disclosure__link caption-large focus-inset"
href="#"
hreflang="ar"
lang="ar"
data-value="ar"
>
<span
class="visibility-hidden"
><svg
class="icon icon-checkmark"
aria-hidden="true"
focusable="false"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 12 9"
fill="none"
>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.35.643a.5.5 0 01.006.707l-6.77 6.886a.5.5 0 01-.719-.006L.638 4.845a.5.5 0 11.724-.69l2.872 3.011 6.41-6.517a.5.5 0 01.707-.006h-.001z" fill="currentColor"/>
</svg>
</span>
<span>
العربية
</span>
</a>
</li></ul>
</div>
</div>
<input type="hidden" name="locale_code" value="en">
</div></form></localization-form></div>
<div class="footer__column footer__column--info"></div>
</div>
<div class="footer__content-bottom-wrapper page-width">
<div class="footer__copyright caption">
<small class="copyright__content"
>© 2024, <a href="/" title="">Makhzan UAE</a></small><ul class="policies list-unstyled"><li>
<small class="copyright__content"
><a href="/policies/refund-policy">Refund policy</a></small
>
</li><li>
<small class="copyright__content"
><a href="/policies/privacy-policy">Privacy policy</a></small
>
</li><li>
<small class="copyright__content"
><a href="/policies/terms-of-service">Terms of service</a></small
>
</li><li>
<small class="copyright__content"
><a href="/policies/shipping-policy">Shipping policy</a></small
>
</li><li>
<small class="copyright__content"
><a href="/policies/contact-information">Contact information</a></small
>
</li><li>
<small class="copyright__content"
><a href="/policies/subscription-policy">Cancellation policy</a></small
>
</li></ul></div>
</div>
</div>
</footer>
<style> #shopify-section-sections--22342062342417__footer .link {text-decoration: none;} #shopify-section-sections--22342062342417__footer .footer-block__brand-info .footer__list-social.list-social {width: 70%;} </style></div>
<!-- END sections: footer-group -->
<ul hidden>
<li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
<li id="a11y-new-window-message">Opens in a new window.</li>
</ul>
<script>
window.shopUrl = 'https://makhzan.ae';
window.routes = {
cart_add_url: '/cart/add',
cart_change_url: '/cart/change',
cart_update_url: '/cart/update',
cart_url: '/cart',
predictive_search_url: '/search/suggest',
};
window.cartStrings = {
error: `There was an error while updating your cart. Please try again.`,
quantityError: `You can only add [quantity] of this item to your cart.`,
};
window.variantStrings = {
addToCart: `Add to cart`,
soldOut: `Sold out`,
unavailable: `Unavailable`,
unavailable_with_option: `[value] - Unavailable`,
};
window.quickOrderListStrings = {
itemsAdded: `[quantity] items added`,
itemAdded: `[quantity] item added`,
itemsRemoved: `[quantity] items removed`,
itemRemoved: `[quantity] item removed`,
viewCart: `View cart`,
each: `[money]/ea`,
};
window.accessibilityStrings = {
imageAvailable: `Image [index] is now available in gallery view`,
shareSuccess: `Link copied to clipboard`,
pauseSlideshow: `Pause slideshow`,
playSlideshow: `Play slideshow`,
recipientFormExpanded: `Gift card recipient form expanded`,
recipientFormCollapsed: `Gift card recipient form collapsed`,
countrySelectorSearchCount: `[count] countries/regions found`,
};
</script><script type="noscript-s" data-src="//makhzan.ae/cdn/shop/t/12/assets/predictive-search.js?v=162273246065392412141712479486" defer="defer"></script><script>
(function () {
var windowWidth, loaded = false, lazyLoadByPx = 200;
// Initialize lazy loading
function init() {
if (!loaded) {
loaded = true;
lazyLoadImg();
lazyLoadBackground();
lazyLoadCss();
lazyLoadScripts();
}
}
// Insert an element after a reference element
function insertAfter(newNode, referenceNode) {
try {
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
} catch (error) {
console.log(error);
}
}
// Lazy load images
function lazyLoadImg() {
let images = document.querySelectorAll("img.opt_lazy");
let windowHeight = window.innerHeight;
for (let i = 0; i < images.length; i++) {
let rect = images[i].getBoundingClientRect();
if (rect.top !== 0 && rect.top - windowHeight < lazyLoadByPx) {
let src = windowWidth < 600
? (images[i].dataset.mobsrc === undefined ? images[i].getAttribute("data-src")
: images[i].dataset.mobsrc) : images[i].dataset.src === undefined ? images[i].getAttribute("data-src") : images[i].dataset.src;
let srcset = images[i].getAttribute("data-srcset");
if (src !== null && src !== "") {
images[i].src = src;
}
if (srcset !== null && srcset !== "") {
images[i].srcset = srcset;
}
images[i].classList.remove("opt_lazy");
}
}
}
// Lazy load background images
function lazyLoadBackground() {
let lazyBackgrounds = document.querySelectorAll(".opt_bg_lazy");
lazyBackgrounds.forEach(function (element) {
let lazybg = windowWidth < 600
? (element.dataset.mobstyle === undefined ? element.dataset.bg : element.dataset.mobstyle)
: element.dataset.bg === undefined ? element.dataset.bg : element.dataset.bg;
if (lazybg !== null && lazybg !== "") {
element.style.backgroundImage = lazybg;
}
element.classList.remove("opt_bg_lazy");
});
}
// Lazy load CSS
function lazyLoadCss() {
let links = document.querySelectorAll("link[data-href]");
for (let i = 0; i < links.length; i++) {
let newLink = document.createElement("link");
newLink.href = links[i].getAttribute("data-href");
newLink.rel = "stylesheet";
delete links[i].dataset.href;
links[i].parentNode.insertBefore(newLink, links[i]);
links[i].parentNode.removeChild(links[i]);
}
}
// Load external JS from a script element
function loadRemoteScript(scriptElement) {
let newScript = document.createElement("script");
if (scriptElement.attributes !== undefined) {
for (let i = 0, attribute; i < scriptElement.attributes.length; i++) {
attribute = scriptElement.attributes[i];
if (attribute.name !== "type" && attribute.nodeName !== "data-src") {
newScript.setAttribute(attribute.name, attribute.value);
}
}
}
newScript.src = scriptElement.getAttribute("data-src");
insertAfter(newScript, scriptElement);
delete scriptElement.dataset.src;
delete scriptElement.type;
scriptElement.parentNode.removeChild(scriptElement);
return newScript;
}
// Load inline JS from a single script element
function loadInlineScript(scriptElement) {
let newScript = document.createElement("script");
for (let i = 0; i < scriptElement.attributes.length; i++) {
let attribute = scriptElement.attributes[i];
if (attribute.name !== "type") {
newScript.setAttribute(attribute.name, attribute.value);
}
}
newScript.innerHTML = scriptElement.innerHTML;
insertAfter(newScript, scriptElement);
scriptElement.parentNode.removeChild(scriptElement);
}
// Lazy load scripts
function lazyLoadScripts() {
let scripts = document.querySelectorAll("script[type=noscript-s]");
if (scripts.length < 1) {
setTimeout(() => {
let event = new Event("wnw_load");
window.dispatchEvent(event);
}, 200);
return;
}
if (scripts[0].getAttribute("data-src") !== null) {
let loadedScript = loadRemoteScript(scripts[0]);
loadedScript.onload = function () {
lazyLoadScripts();
};
loadedScript.onerror = function () {
lazyLoadScripts();
};
} else {
loadInlineScript(scripts[0]);
lazyLoadScripts();
}
}
// Initialize on DOMContentLoaded
document.addEventListener("DOMContentLoaded", function () {
windowWidth = screen.width;
window.addEventListener("scroll", function () {
lazyLoadImg();
init();
});
window.addEventListener("mousemove", function () {
lazyLoadImg();
init();
});
//lazyLoadImg();
window.addEventListener("touchstart", function () {
lazyLoadImg();
init();
});
});
// Initialize on window load
window.addEventListener('load', function () {
console.log('Load FIRE');
setTimeout(() => {
init();
}, 6000);
});
})();
</script>
<div id="shopify-block-1626193551103621034" class="shopify-block shopify-app-block"><!-- BEGIN app snippet: app_init -->
<script type="text/javascript">
window.BC_SHOPPING_CART = []
</script><!-- END app snippet -->
<div id="codk-otp-widget-box"></div>
<script type="text/javascript">
const codUrl = "https://codkingscript.s3.us-west-2.amazonaws.com/";
const widgetScriptUrl = codUrl + "script.js";
window.isLiquidFileCodk = true;
function loadScriptFromUrl(url) {
return fetch(url)
.then((res) => res.text())
.then((scriptText) => {
return scriptText;
});
}
function injectScript(scriptText) {
const otpWidgetScript = document.createElement("script");
otpWidgetScript.type = "text/javascript";
otpWidgetScript.defer = "defer";
otpWidgetScript.innerHTML = scriptText;
document.getElementById("codk-otp-widget-box").appendChild(otpWidgetScript);
console.log("Script loaded and executed");
}
console.log("Fetching and loading script from URL from liquid ... ");
loadScriptFromUrl(widgetScriptUrl).then(injectScript);
// Fetch the HTML and inject it into the widget
fetch(codUrl + "cod-king-otp-widget.html")
.then((res) => res.text())
.then((data) => {
const otpWidget = document.getElementById("codk-otp-widget-box");
otpWidget.innerHTML = data;
console.log("HTML loaded");
});
</script>
</div></body>
</html>