{"id":13606,"date":"2026-04-11T21:27:50","date_gmt":"2026-04-11T17:27:50","guid":{"rendered":"https:\/\/alsamerjewellery.ae\/?page_id=13606"},"modified":"2026-05-29T18:17:01","modified_gmt":"2026-05-29T14:17:01","slug":"gold-price","status":"publish","type":"page","link":"https:\/\/alsamerjewellery.ae\/ar\/gold-price\/","title":{"rendered":"\u0633\u0639\u0631 \u0627\u0644\u0630\u0647\u0628"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"13606\" class=\"elementor elementor-13606\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9fdc88c e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"9fdc88c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84b5551 elementor-widget elementor-widget-html\" data-id=\"84b5551\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- GOLD LIVE CAPSULE BAR -->\r\n<div id=\"gold-bar\">\r\n  <div id=\"gold-bar-inner\"><\/div>\r\n<\/div>\r\n\r\n<style>\r\n#gold-bar {\r\n  width: 100%;\r\n  position: relative;\r\n\r\n  \/* Removed dark brown background *\/\r\n  background: transparent;\r\n\r\n  \/* Removed brown border *\/\r\n  border: none;\r\n\r\n  padding: 10px;\r\n  box-sizing: border-box;\r\n  overflow-x: auto;\r\n}\r\n\r\n#gold-bar-inner {\r\n  display: flex;\r\n  gap: 10px;\r\n  justify-content: center;\r\n  align-items: center;\r\n  flex-wrap: wrap;\r\n}\r\n\r\n\/* CAPSULE *\/\r\n.gold-pill {\r\n  padding: 10px 18px;\r\n  border-radius: 999px;\r\n\r\n  background: #f5e6c8;\r\n  color: #2b1d14;\r\n\r\n  font-family: Arial, sans-serif;\r\n  font-size: 14px;\r\n  font-weight: 600;\r\n\r\n  white-space: nowrap;\r\n\r\n  border: 3px solid #00ff00;\r\n\r\n  animation: neonBorder 2s infinite;\r\n}\r\n\r\n\/* smooth border animation *\/\r\n@keyframes neonBorder {\r\n  0% { border-color: #00ff00; }\r\n  50% { border-color: #ff0000; }\r\n  100% { border-color: #00ff00; }\r\n}\r\n\r\n\/* MOBILE *\/\r\n@media (max-width: 768px) {\r\n  .gold-pill {\r\n    padding: 6px 12px;\r\n    font-size: 13px;\r\n    border-width: 2px;\r\n  }\r\n\r\n  #gold-bar-inner {\r\n    gap: 6px;\r\n  }\r\n}\r\n\r\n@media (max-width: 480px) {\r\n  .gold-pill {\r\n    padding: 5px 10px;\r\n    font-size: 12px;\r\n  }\r\n\r\n  #gold-bar-inner {\r\n    gap: 5px;\r\n  }\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function () {\r\n\r\n  let pills = {};\r\n  let lastData = {};\r\n  let started = false;\r\n\r\n  \/\/ Read prices from table\r\n  function readTablePrices() {\r\n\r\n    const table = document.querySelector(\"#goldPricesWidget\");\r\n\r\n    if (!table) return null;\r\n\r\n    const rows = table.querySelectorAll(\"tr\");\r\n\r\n    if (!rows.length) return null;\r\n\r\n    let data = {};\r\n\r\n    rows.forEach(function(row) {\r\n\r\n      const cols = row.querySelectorAll(\"td\");\r\n\r\n      if (cols.length === 2) {\r\n\r\n        const karat = cols[0].textContent.trim();\r\n\r\n        const rawPrice = cols[1].textContent.replace(\/[^0-9.]\/g, '');\r\n\r\n        const price = parseFloat(rawPrice);\r\n\r\n        if (!isNaN(price)) {\r\n          data[karat] = price;\r\n        }\r\n      }\r\n    });\r\n\r\n    return Object.keys(data).length ? data : null;\r\n  }\r\n\r\n  \/\/ Create capsule\r\n  function createPill(karat) {\r\n\r\n    const pill = document.createElement(\"div\");\r\n\r\n    pill.className = \"gold-pill\";\r\n\r\n    pill.textContent = karat + \": -- AED\";\r\n\r\n    return pill;\r\n  }\r\n\r\n  \/\/ Render \/ update bar safely\r\n  function renderBar() {\r\n\r\n    const prices = readTablePrices();\r\n\r\n    if (!prices) return;\r\n\r\n    const container = document.getElementById(\"gold-bar-inner\");\r\n\r\n    if (!container) return;\r\n\r\n    for (let k in prices) {\r\n\r\n      \/\/ create once\r\n      if (!pills[k]) {\r\n\r\n        pills[k] = createPill(k);\r\n\r\n        container.appendChild(pills[k]);\r\n      }\r\n\r\n      \/\/ update only if changed\r\n      if (lastData[k] !== prices[k]) {\r\n\r\n        pills[k].textContent = k + \": \" + prices[k].toFixed(2) + \" AED\";\r\n      }\r\n    }\r\n\r\n    lastData = prices;\r\n  }\r\n\r\n  \/\/ debounce updates\r\n  function debounce(fn, delay) {\r\n\r\n    let timer;\r\n\r\n    return function () {\r\n\r\n      clearTimeout(timer);\r\n\r\n      timer = setTimeout(fn, delay);\r\n    };\r\n  }\r\n\r\n  function start() {\r\n\r\n    if (started) return;\r\n\r\n    started = true;\r\n\r\n    const safeRender = debounce(renderBar, 200);\r\n\r\n    \/\/ first render attempts\r\n    renderBar();\r\n\r\n    \/\/ Safari fix:\r\n    \/\/ keep checking until table is injected\r\n    const waitForTable = setInterval(function () {\r\n\r\n      const table = document.querySelector(\"#goldPricesWidget\");\r\n\r\n      if (table) {\r\n\r\n        renderBar();\r\n\r\n        clearInterval(waitForTable);\r\n\r\n        const observer = new MutationObserver(function () {\r\n          safeRender();\r\n        });\r\n\r\n        observer.observe(table, {\r\n          childList: true,\r\n          subtree: true,\r\n          characterData: true\r\n        });\r\n      }\r\n\r\n    }, 300);\r\n\r\n    \/\/ safety refresh for Safari async rendering\r\n    setTimeout(renderBar, 1000);\r\n    setTimeout(renderBar, 2000);\r\n  }\r\n\r\n  \/\/ Reliable startup for all browsers including Safari\r\n  if (document.readyState === \"loading\") {\r\n\r\n    document.addEventListener(\"DOMContentLoaded\", start);\r\n\r\n    window.addEventListener(\"load\", start);\r\n\r\n  } else {\r\n\r\n    start();\r\n  }\r\n\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-46a4d64 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no elementor-invisible e-root-container elementor-top-section kitify-has-entrance-animation e-con e-parent\" data-id=\"46a4d64\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInDown&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-26862fb elementor-alert-warning elementor-widget__width-inherit elementor-widget elementor-widget-alert\" data-id=\"26862fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"alert.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-alert\" role=\"alert\">\n\n\t\t\t\t\t\t<span class=\"elementor-alert-title\">Breaking news<\/span>\n\t\t\t\n\t\t\t\t\t\t<span class=\"elementor-alert-description\">Track gold prices live, and seize the opportunity to acquire our finest available gold bars and coins.\n\n<\/span>\n\t\t\t\n\t\t\t\t\t\t<button type=\"button\" class=\"elementor-alert-dismiss\" aria-label=\"Dismiss this alert.\">\n\t\t\t\t\t\t\t\t\t<span aria-hidden=\"true\">&times;<\/span>\n\t\t\t\t\t\t\t<\/button>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f63637 e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no elementor-invisible e-root-container elementor-top-section kitify-has-entrance-animation e-con e-parent\" data-id=\"2f63637\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInDown&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9f4d7d3 elementor-widget elementor-widget-spacer\" data-id=\"9f4d7d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9edc4c5 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"9edc4c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b22518c kitify-breadcrumbs-page-title-yes elementor-widget kitify elementor-kitify-breadcrumbs\" data-id=\"b22518c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"kitify-breadcrumbs.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div class=\"kitify-breadcrumbs\">\n\t\t<div class=\"kitify-breadcrumbs__content\">\n\t\t<div class=\"kitify-breadcrumbs__wrap\"><div class=\"kitify-breadcrumbs__item\"><a href=\"https:\/\/alsamerjewellery.ae\/ar\/\" class=\"kitify-breadcrumbs__item-link is-home\" rel=\"home\" title=\"Home\">Home<\/a><\/div>\n\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-683b5a2 e-con-full e-grid kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"683b5a2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6dc3064 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"6dc3064\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-32b7c23 elementor-widget elementor-widget-text-editor\" data-id=\"32b7c23\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Live Market Status<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d28db2 elementor-widget elementor-widget-html\" data-id=\"4d28db2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"gold-status\">\r\n  <span class=\"dot\" id=\"goldDot\"><\/span>\r\n  <span id=\"liveText\">Live<\/span>\r\n  <span class=\"tooltip\" id=\"goldTooltip\">Market status<\/span>\r\n<\/div>\r\n\r\n<style>\r\n.gold-status{\r\n  display:inline-flex;\r\n  align-items:center;\r\n  gap:10px;\r\n  padding:7px 15px;\r\n  border-radius:25px;\r\n  background:#452727;\r\n  color:#fff;\r\n  font-size:15px;\r\n  font-family:tajwal, sans-serif;\r\n  font-weight:bold;\r\n  position:relative;\r\n  cursor:pointer;\r\n}\r\n\r\n.dot{\r\n  width:10px;\r\n  height:10px;\r\n  border-radius:50%;\r\n}\r\n\r\n@keyframes blinkG {50%{opacity:0.2;}}\r\n@keyframes blinkR {50%{opacity:0.2;}}\r\n\r\n.open { background:limegreen; animation: blinkG 1s infinite; }\r\n.closed { background:red; animation: blinkR 1s infinite; }\r\n\r\n.tooltip{\r\n  position:absolute;\r\n  bottom:130%;\r\n  left:50%;\r\n  transform:translateX(-50%);\r\n  background:#000;\r\n  color:#fff;\r\n  padding:4px 7px;\r\n  font-size:11px;\r\n  border-radius:4px;\r\n  white-space:nowrap;\r\n  opacity:0;\r\n  transition:0.2s;\r\n  pointer-events:none;\r\n}\r\n\r\n.gold-status:hover .tooltip{\r\n  opacity:1;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n\/\/ Detect language\r\nconst pageLang = (document.documentElement.lang || navigator.language || \"en\").toLowerCase();\r\n\r\n\/\/ Text translations\r\nconst t = {\r\n  en: {\r\n    live: \"Live\",\r\n    open: \"Market Open\",\r\n    closed: \"Market Closed\"\r\n  },\r\n  ar: {\r\n    live: \"\u0645\u0628\u0627\u0634\u0631\",\r\n    open: \"\u0627\u0644\u0633\u0648\u0642 \u0645\u0641\u062a\u0648\u062d\",\r\n    closed: \"\u0627\u0644\u0633\u0648\u0642 \u0645\u063a\u0644\u0642\"\r\n  }\r\n};\r\n\r\nconst lang = pageLang.startsWith(\"ar\") ? \"ar\" : \"en\";\r\n\r\n\/\/ Set live text\r\ndocument.getElementById(\"liveText\").innerText = t[lang].live;\r\n\r\n\/\/ =======================\r\n\/\/ \ud83d\udfe1 Official holidays (edit as needed)\r\nconst holidays = [\r\n  \"2026-01-01\",\r\n  \"2026-12-25\"\r\n];\r\n\r\n\/\/ Check if today is a holiday\r\nfunction isHoliday(date){\r\n  const dateStr = date.toISOString().split(\"T\")[0];\r\n  return holidays.includes(dateStr);\r\n}\r\n\r\n\/\/ =======================\r\n\/\/ \ud83d\udfe1 Get Dubai time\r\nfunction getDubaiNow(){\r\n  const now = new Date();\r\n  const dubaiTime = new Date(now.toLocaleString(\"en-US\", { timeZone: \"Asia\/Dubai\" }));\r\n  return dubaiTime;\r\n}\r\n\r\n\/\/ =======================\r\n\/\/ \ud83d\udfe1 Market status logic (Dubai time)\r\nfunction isOpen(){\r\n  const now = getDubaiNow();\r\n  const day = now.getDay(); \/\/ 0=Sunday, 1=Monday ... 6=Saturday\r\n  const hour = now.getHours();\r\n\r\n  \/\/ Closed on holidays\r\n  if(isHoliday(now)) return false;\r\n\r\n  \/\/ Saturday after 1 AM = closed\r\n  if(day === 6 && hour >= 2) return false;\r\n\r\n  \/\/ Sunday \u0628\u0627\u0644\u0643\u0627\u0645\u0644 \u0645\u063a\u0644\u0642\r\n  if(day === 0) return false;\r\n\r\n  \/\/ Monday before 2 AM = still closed\r\n  if(day === 1 && hour < 2) return false;\r\n\r\n  return true;\r\n}\r\n\r\n\/\/ =======================\r\nconst dot = document.getElementById(\"goldDot\");\r\nconst tooltip = document.getElementById(\"goldTooltip\");\r\n\r\nfunction updateStatus(){\r\n  if(isOpen()){\r\n    dot.className = \"dot open\";\r\n    tooltip.innerText = t[lang].open;\r\n  } else {\r\n    dot.className = \"dot closed\";\r\n    tooltip.innerText = t[lang].closed;\r\n  }\r\n}\r\n\r\n\/\/ Initial run + auto update\r\nupdateStatus();\r\nsetInterval(updateStatus, 60000);\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dc22704 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"dc22704\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-128d965 elementor-widget elementor-widget-heading\" data-id=\"128d965\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Al Samer Jewellery<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd6be53 elementor-widget elementor-widget-heading\" data-id=\"dd6be53\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Metals live price<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-196d403 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"196d403\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-93ae77c elementor-widget elementor-widget-text-editor\" data-id=\"93ae77c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Start Investing<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8fb7c85 e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"8fb7c85\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d5e4a39 elementor-widget elementor-widget-button\" data-id=\"d5e4a39\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/alsamerjewellery.ae\/product-category\/gold-bars\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Gold Bars<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e51497 elementor-widget elementor-widget-button\" data-id=\"1e51497\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/alsamerjewellery.ae\/product-category\/gold-coins\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Gold Coins<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ebe5090 elementor-widget elementor-widget-spacer\" data-id=\"ebe5090\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce02e4c e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no elementor-invisible e-root-container elementor-top-section kitify-has-entrance-animation e-con e-parent\" data-id=\"ce02e4c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInDown&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-ac6cb2e e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"ac6cb2e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5db3fce elementor-widget elementor-widget-heading\" data-id=\"5db3fce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Live Price<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b01038d elementor-widget elementor-widget-html\" data-id=\"b01038d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- TradingView Widget BEGIN -->\r\n<div class=\"tv-scale-wrapper\">\r\n  <div class=\"tv-scale-inner\">\r\n\r\n    <div class=\"tradingview-widget-container\">\r\n      <div class=\"tradingview-widget-container__widget\"><\/div>\r\n      \r\n      <div class=\"tradingview-widget-copyright\">\r\n        <a href=\"https:\/\/www.tradingview.com\/markets\/\" target=\"_blank\" rel=\"noopener nofollow\">\r\n          <span class=\"blue-text\"><\/span>\r\n        <\/a>\r\n        <span class=\"trademark\"><\/span>\r\n      <\/div>\r\n\r\n      <script type=\"text\/javascript\" src=\"https:\/\/s3.tradingview.com\/external-embedding\/embed-widget-market-overview.js\" async>\r\n      {\r\n        \"colorTheme\": \"light\",\r\n        \"dateRange\": \"12M\",\r\n        \"locale\": \"en\",\r\n        \"largeChartUrl\": \"https:\/\/alsamerjewellery.ae\/\",\r\n        \"isTransparent\": true,\r\n        \"showFloatingTooltip\": false,\r\n        \"plotLineColorGrowing\": \"rgba(41, 98, 255, 1)\",\r\n        \"plotLineColorFalling\": \"rgba(41, 98, 255, 1)\",\r\n        \"gridLineColor\": \"rgba(240, 243, 250, 0)\",\r\n        \"scaleFontColor\": \"#0F0F0F\",\r\n        \"belowLineFillColorGrowing\": \"rgba(41, 98, 255, 0.12)\",\r\n        \"belowLineFillColorFalling\": \"rgba(41, 98, 255, 0.12)\",\r\n        \"belowLineFillColorGrowingBottom\": \"rgba(41, 98, 255, 0)\",\r\n        \"belowLineFillColorFallingBottom\": \"rgba(41, 98, 255, 0)\",\r\n        \"symbolActiveColor\": \"rgba(41, 98, 255, 0.12)\",\r\n        \"tabs\": [\r\n          {\r\n            \"title\": \"Live price\",\r\n            \"symbols\": [\r\n              { \"s\": \"OANDA:XAUUSD\", \"d\": \"\", \"logoid\": \"metal\/gold\", \"currency-logoid\": \"country\/US\" },\r\n              { \"s\": \"CAPITALCOM:SILVER\", \"d\": \"\", \"logoid\": \"metal\/silver\", \"currency-logoid\": \"country\/US\" }\r\n            ],\r\n            \"originalTitle\": \"Bonds\"\r\n          }\r\n        ],\r\n        \"support_host\": \"https:\/\/www.tradingview.com\",\r\n        \"width\": \"100%\",\r\n        \"height\": \"100%\",\r\n        \"showSymbolLogo\": true,\r\n        \"showChart\": false\r\n      }\r\n      <\/script>\r\n    <\/div>\r\n\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n\/* Outer container keeps original layout *\/\r\n.tv-scale-wrapper {\r\n  width: 100%;\r\n  overflow: hidden;\r\n}\r\n\r\n\/* Visual zoom while preserving proportions *\/\r\n.tv-scale-inner {\r\n  transform: scale(1.27); \/* change: 1.3 \/ 1.4 \/ 1.5 *\/\r\n  transform-origin: top left;\r\n\r\n  \/* compensate size so layout stays identical *\/\r\n  width: 80%;   \/* = 100 \/ 1.25 *\/\r\n  height: 80%;\r\n}\r\n<\/style>\r\n<!-- TradingView Widget END -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ff37eaa elementor-widget elementor-widget-heading\" data-id=\"ff37eaa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Price daily changes<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c920d5 elementor-widget elementor-widget-html\" data-id=\"1c920d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- TradingView Widget BEGIN -->\r\n<div class=\"tradingview-widget-container\">\r\n  <div class=\"tradingview-widget-container__widget\"><\/div>\r\n  <div class=\"tradingview-widget-copyright\"><a href=\"https:\/\/www.tradingview.com\/markets\/\" rel=\"noopener nofollow\" target=\"_blank\"><span class=\"blue-text\"><\/span><\/a><span class=\"trademark\"><\/span><\/div>\r\n  <script type=\"text\/javascript\" src=\"https:\/\/s3.tradingview.com\/external-embedding\/embed-widget-market-quotes.js\" async>\r\n  {\r\n  \"colorTheme\": \"light\",\r\n  \"locale\": \"en\",\r\n  \"largeChartUrl\": \"https:\/\/alsamerjewellery.ae\/\",\r\n  \"isTransparent\": true,\r\n  \"showSymbolLogo\": true,\r\n  \"backgroundColor\": \"#ffffff\",\r\n  \"support_host\": \"https:\/\/www.tradingview.com\",\r\n  \"width\": \"100%\",\r\n  \"height\": \"100%\",\r\n  \"symbolsGroups\": [\r\n    {\r\n      \"name\": \"Metals\",\r\n      \"symbols\": [\r\n        {\r\n          \"name\": \"OANDA:XAUUSD\",\r\n          \"displayName\": \"\"\r\n        },\r\n        {\r\n          \"name\": \"CAPITALCOM:SILVER\",\r\n          \"displayName\": \"\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}\r\n  <\/script>\r\n<\/div>\r\n<!-- TradingView Widget END -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33bdea2 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"33bdea2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-92af649 elementor-widget elementor-widget-html\" data-id=\"92af649\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n\r\n<title>Live Gold Prices UAE<\/title>\r\n\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n\r\n<meta name=\"description\" content=\"Live gold prices in UAE by Al Samer Jewellery. Real-time 24K, 22K, 21K and 18K gold rates in Dubai and across the UAE. Accurate market updates.\">\r\n<meta name=\"keywords\" content=\"gold price UAE, live gold rates Dubai, Al Samer Jewellery gold price, 24K gold UAE, 22K gold UAE\">\r\n\r\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Tajawal:wght@400;500;700&display=swap\" rel=\"stylesheet\">\r\n\r\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/html2canvas\/1.4.1\/html2canvas.min.js\"><\/script>\r\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jspdf\/2.5.1\/jspdf.umd.min.js\"><\/script>\r\n\r\n<style>\r\n\r\n#gold-widget{\r\n    font-family:Tajawal,Arial;\r\n}\r\n\r\n#gold-widget > div{\r\n    max-width:620px;\r\n    margin:auto;\r\n    padding:14px;\r\n    border:1px solid rgba(212,175,55,0.8);\r\n    border-radius:10px;\r\n}\r\n\r\n#goldTitle{\r\n    text-align:center;\r\n    font-size:20px;\r\n    font-weight:700;\r\n    margin-bottom:4px;\r\n    color:#111;\r\n}\r\n\r\n#goldSubtitle{\r\n    text-align:center;\r\n    font-size:12px;\r\n    font-weight:400;\r\n    opacity:0.65;\r\n    margin-bottom:12px;\r\n    line-height:1.4;\r\n}\r\n\r\n#gold-widget table{\r\n    width:100%;\r\n    border-collapse:collapse;\r\n    table-layout:fixed;\r\n}\r\n\r\n#gold-widget thead th{\r\n    font-size:18px;\r\n    font-weight:600;\r\n    opacity:0.7;\r\n    padding:10px 0;\r\n    border-bottom:4px solid rgba(212,175,55,0.6);\r\n    text-align:center;\r\n}\r\n\r\n#goldPricesWidget tr{\r\n    border-bottom:1px solid rgba(212,175,55,0.4);\r\n    transition:0.25s ease;\r\n}\r\n\r\n#goldPricesWidget tr:hover{\r\n    background:rgba(212,175,55,0.12);\r\n}\r\n\r\n#gold-widget td{\r\n    padding:12px 0;\r\n    text-align:center;\r\n    font-size:16px;\r\n    font-weight:500;\r\n    color:#111;\r\n}\r\n\r\n#gold-widget td.price{\r\n    font-weight:700;\r\n}\r\n\r\n#goldBottomUpdate{\r\n    text-align:center;\r\n    margin-top:10px;\r\n    font-size:12px;\r\n    opacity:0.7;\r\n}\r\n\r\n#gold-slim-bar{\r\n    display:flex;\r\n    justify-content:center;\r\n    gap:10px;\r\n    margin-top:12px;\r\n}\r\n\r\n#gold-slim-bar button{\r\n    border:1px solid rgba(212,175,55,0.8);\r\n    cursor:pointer;\r\n    padding:7px 14px;\r\n    border-radius:6px;\r\n    font-size:11px;\r\n    font-weight:600;\r\n    background:transparent;\r\n    color:#000;\r\n}\r\n\r\n#gold-toast{\r\n    position:fixed;\r\n    bottom:20px;\r\n    left:50%;\r\n    transform:translateX(-50%);\r\n    background:#111;\r\n    color:#fff;\r\n    padding:10px 14px;\r\n    border-radius:8px;\r\n    font-size:11px;\r\n    opacity:0;\r\n    transition:0.25s;\r\n    z-index:9999;\r\n}\r\n\r\n<\/style>\r\n\r\n<\/head>\r\n\r\n<body>\r\n\r\n<div id=\"gold-widget\">\r\n\r\n<div>\r\n\r\n<div id=\"goldTitle\">Live Gold Rates<\/div>\r\n\r\n<div id=\"goldSubtitle\">Real-time gold prices in UAE provided by Al Samer Jewellery.<\/div>\r\n\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Karat<\/th>\r\n<th>Price (AED)<\/th>\r\n<\/tr>\r\n<\/thead>\r\n<tbody id=\"goldPricesWidget\"><\/tbody>\r\n<\/table>\r\n\r\n<div id=\"goldBottomUpdate\"><\/div>\r\n\r\n<div id=\"gold-slim-bar\">\r\n<button onclick=\"goldCopy()\">Copy<\/button>\r\n<button onclick=\"goldWhatsApp()\">Share<\/button>\r\n<button onclick=\"goldPDF()\">PDF<\/button>\r\n<\/div>\r\n\r\n<\/div>\r\n<\/div>\r\n\r\n<div id=\"gold-toast\"><\/div>\r\n\r\n<!-- LOGO -->\r\n<img data-recalc-dims=\"1\" id=\"pdfLogo\"\r\nsrc=\"https:\/\/i0.wp.com\/alsamerjewellery.ae\/wp-content\/uploads\/2024\/08\/dark_samer_title-1.png?w=1920&#038;ssl=1\"\r\ncrossorigin=\"anonymous\"\r\nstyle=\"display:none;\">\r\n\r\n<script>\r\n\r\nfunction showGoldToast(message) {\r\n    const toast = document.getElementById(\"gold-toast\");\r\n    toast.textContent = message;\r\n    toast.style.opacity = \"1\";\r\n    setTimeout(() => toast.style.opacity = \"0\", 1500);\r\n}\r\n\r\nfunction getGoldText() {\r\n\r\n    let rows = document.querySelectorAll(\"#goldPricesWidget tr\");\r\n\r\n    let text =\r\n`\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\n        GOLD PRICE Rates\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\n`;\r\n\r\n    rows.forEach(row => {\r\n        let cols = row.querySelectorAll(\"td\");\r\n        if (cols.length) {\r\n            text += `\r\n\u25a3 ${cols[0].innerText}\r\n   Price : ${cols[1].innerText} AED\r\n`;\r\n        }\r\n    });\r\n\r\n    text += `\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\nLive UAE Gold Rates\r\nhttps:\/\/alsamerjewellery.ae\/gold-price\/\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501`;\r\n\r\n    return text;\r\n}\r\n\r\nfunction goldCopy() {\r\n    navigator.clipboard.writeText(getGoldText());\r\n    showGoldToast(\"Copied\");\r\n}\r\n\r\nfunction goldWhatsApp() {\r\n    let url = \"https:\/\/wa.me\/?text=\" + encodeURIComponent(getGoldText());\r\n    window.open(url, \"_blank\");\r\n    showGoldToast(\"Shared\");\r\n}\r\n\r\n\/* ===== LUXURY PDF (UPGRADED ONLY) ===== *\/\r\nfunction goldPDF() {\r\n\r\n    const element = document.getElementById(\"gold-widget\");\r\n    const logo = document.getElementById(\"pdfLogo\");\r\n\r\n    html2canvas(element, {\r\n        scale: 4,\r\n        useCORS: true,\r\n        backgroundColor: \"#ffffff\"\r\n    }).then(canvas => {\r\n\r\n        const imgData = canvas.toDataURL(\"image\/png\");\r\n\r\n        const pdf = new jspdf.jsPDF(\"p\", \"mm\", \"a4\");\r\n\r\n        const pageWidth = pdf.internal.pageSize.getWidth();\r\n        const pageHeight = pdf.internal.pageSize.getHeight();\r\n\r\n        \/* BACKGROUND *\/\r\n        pdf.setFillColor(255,255,255);\r\n        pdf.rect(0,0,pageWidth,pageHeight,\"F\");\r\n\r\n        \/* GOLD FRAME *\/\r\n        pdf.setDrawColor(212,175,55);\r\n        pdf.setLineWidth(1.2);\r\n        pdf.rect(6,6,pageWidth-12,pageHeight-12);\r\n\r\n        pdf.setLineWidth(0.3);\r\n        pdf.rect(9,9,pageWidth-18,pageHeight-18);\r\n\r\n        \/* LOGO *\/\r\n        pdf.addImage(logo, \"PNG\", 55, 12, 100, 20);\r\n\r\n        \/* TITLE *\/\r\n        pdf.setTextColor(212,175,55);\r\n        pdf.setFont(\"helvetica\",\"bold\");\r\n        pdf.setFontSize(20);\r\n        pdf.text(\"LIVE GOLD PRICE REPORT\", pageWidth\/2, 45, {align:\"center\"});\r\n\r\n        \/* SUBTITLE *\/\r\n        pdf.setTextColor(120);\r\n        pdf.setFontSize(10);\r\n        pdf.setFont(\"helvetica\",\"normal\");\r\n        pdf.text(\"Al Samer Jewellery - UAE Real-Time Market Rates\", pageWidth\/2, 52, {align:\"center\"});\r\n\r\n        \/* LINE *\/\r\n        pdf.setDrawColor(212,175,55);\r\n        pdf.setLineWidth(0.6);\r\n        pdf.line(25, 58, pageWidth-25, 58);\r\n\r\n        \/* CONTENT *\/\r\n        const contentWidth = 170;\r\n        const contentHeight = (canvas.height * contentWidth) \/ canvas.width;\r\n\r\n        pdf.addImage(imgData, \"PNG\", 20, 65, contentWidth, contentHeight);\r\n\r\n        \/* FOOTER *\/\r\n        const now = new Date();\r\n\r\n        pdf.setFontSize(9);\r\n        pdf.setTextColor(150);\r\n\r\n        pdf.text(\"Generated: \" + now.toLocaleString(), pageWidth\/2, pageHeight-18, {align:\"center\"});\r\n\r\n        pdf.setTextColor(212,175,55);\r\n        pdf.setFont(\"helvetica\",\"bold\");\r\n\r\n        pdf.text(\"www.alsamerjewellery.ae\", pageWidth\/2, pageHeight-12, {align:\"center\"});\r\n\r\n        pdf.save(\"gold-price-report.pdf\");\r\n        showGoldToast(\"Exported\");\r\n    });\r\n}\r\n\r\n\/* DATA (UNCHANGED) *\/\r\n(function () {\r\n\r\n    let isRunning = false;\r\n\r\n    async function fetchGold() {\r\n        const url = \"\/wp-json\/gold\/v1\/prices?_=\" + Date.now();\r\n\r\n        try {\r\n            const res = await fetch(url, { cache: \"no-store\" });\r\n            if (res.ok) return await res.json();\r\n        } catch (e) {}\r\n\r\n        return null;\r\n    }\r\n\r\n    function updateUI(prices) {\r\n        const table = document.getElementById(\"goldPricesWidget\");\r\n\r\n        if (!table.dataset.ready) {\r\n            table.innerHTML = \"\";\r\n            for (let k in prices) {\r\n                const row = document.createElement(\"tr\");\r\n                row.innerHTML = `\r\n                    <td>${k}<\/td>\r\n                    <td class=\"price\">${prices[k].toFixed(2)}<\/td>\r\n                `;\r\n                table.appendChild(row);\r\n            }\r\n            table.dataset.ready = \"true\";\r\n            return;\r\n        }\r\n\r\n        let i = 0;\r\n        for (let k in prices) {\r\n            const row = table.children[i];\r\n            const priceCell = row.querySelector(\".price\");\r\n            if (priceCell) priceCell.textContent = prices[k].toFixed(2);\r\n            i++;\r\n        }\r\n    }\r\n\r\n    async function runUpdate() {\r\n        if (isRunning) return;\r\n        isRunning = true;\r\n\r\n        const data = await fetchGold();\r\n        if (!data) return;\r\n\r\n        const updatedAt = data.updated_at;\r\n        delete data.updated_at;\r\n\r\n        updateUI(data);\r\n\r\n        const d = new Date(updatedAt);\r\n        const date = `${d.getDate().toString().padStart(2,'0')}\/${(d.getMonth()+1).toString().padStart(2,'0')}\/${d.getFullYear()}`;\r\n        const time = d.toLocaleTimeString();\r\n\r\n        document.getElementById(\"goldBottomUpdate\").innerHTML =\r\n            `Updated: ${date} - ${time}`;\r\n\r\n        isRunning = false;\r\n    }\r\n\r\n    runUpdate();\r\n    setInterval(runUpdate, 30000);\r\n\r\n})();\r\n\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5a00377 e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no elementor-invisible e-root-container elementor-top-section kitify-has-entrance-animation e-con e-parent\" data-id=\"5a00377\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInDown&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4ec2708 elementor-widget elementor-widget-spacer\" data-id=\"4ec2708\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a678425 slide-no-animation elementor-widget__width-inherit custom-carousel-preset-default kitify-carousel-item-effect-slide elementor-widget kitify elementor-kitify-advanced-carousel\" data-id=\"a678425\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"kitify-advanced-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"kitify-carousel kitify-carousel--simple simple-style-none\" data-slider_options=\"{&quot;content_selector&quot;:&quot;.kitify-carousel__content&quot;,&quot;content_effect_in&quot;:&quot;fadeInUp&quot;,&quot;content_effect_out&quot;:&quot;fadeOutDown&quot;,&quot;slidesToScroll&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;mobile_extra&quot;:&quot;1&quot;},&quot;rows&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;mobile_extra&quot;:&quot;1&quot;},&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;pauseOnHover&quot;:false,&quot;pauseOnInteraction&quot;:false,&quot;reverseDirection&quot;:true,&quot;infiniteEffect&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;variableWidth&quot;:false,&quot;prevArrow&quot;:&quot;.kitify-carousel__prev-arrow-a678425&quot;,&quot;nextArrow&quot;:&quot;.kitify-carousel__next-arrow-a678425&quot;,&quot;dotsElm&quot;:&quot;.kitify-carousel__dots_a678425&quot;,&quot;rtl&quot;:true,&quot;effect&quot;:&quot;slide&quot;,&quot;coverflowEffect&quot;:{&quot;rotate&quot;:null,&quot;stretch&quot;:null,&quot;depth&quot;:null,&quot;modifier&quot;:null,&quot;slideShadows&quot;:null},&quot;dotType&quot;:&quot;bullets&quot;,&quot;direction&quot;:&quot;horizontal&quot;,&quot;uniqueID&quot;:&quot;kitify_carousel_a678425&quot;,&quot;asFor&quot;:&quot;&quot;,&quot;autoHeight&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;mobile_extra&quot;:&quot;1&quot;}}\" dir=\"rtl\">\n    <div class=\"kitify-carousel-inner\"><div class=\"swiper-container\" id=\"kitify_carousel_a678425\"><div class=\"swiper-wrapper\">\n<div class=\"kitify-carousel__item swiper-slide\">\n\t<div class=\"kitify-carousel__item-inner\">\n                <div class=\"kitify-carousel__content\"><div class=\"kitify-carousel__item-text\">\ud83e\ude99 Gold continues to preserve long-term value<\/div><\/div>        <\/div>\n<\/div>\n<div class=\"kitify-carousel__item swiper-slide\">\n\t<div class=\"kitify-carousel__item-inner\">\n                <div class=\"kitify-carousel__content\"><div class=\"kitify-carousel__item-text\">\ud83d\udcca Market trends keep gold in focus\n<\/div><\/div>        <\/div>\n<\/div>\n<div class=\"kitify-carousel__item swiper-slide\">\n\t<div class=\"kitify-carousel__item-inner\">\n                <div class=\"kitify-carousel__content\"><div class=\"kitify-carousel__item-text\">\ud83d\udd14 Gold prices fell today amid market fluctuations and a stronger dollar.\n<\/div><\/div>        <\/div>\n<\/div>\n<\/div><\/div><\/div><div class=\"kitify-carousel__prev-arrow-a678425 kitify-arrow prev-arrow\"><i aria-hidden=\"true\" class=\"icofont icofont-curved-left\"><\/i><\/div><div class=\"kitify-carousel__next-arrow-a678425 kitify-arrow next-arrow\"><i aria-hidden=\"true\" class=\"icofont icofont-curved-right\"><\/i><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a9cb5ef e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"a9cb5ef\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c96721 elementor-widget elementor-widget-spacer\" data-id=\"0c96721\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9b5281f elementor-widget elementor-widget-heading\" data-id=\"9b5281f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Charts<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-398a56a elementor-widget elementor-widget-html\" data-id=\"398a56a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- TradingView Widget BEGIN -->\r\n<div class=\"tv-wrapper\">\r\n\r\n  <div class=\"tradingview-widget-container\">\r\n    <div class=\"tradingview-widget-container__widget\"><\/div>\r\n\r\n    <script type=\"text\/javascript\"\r\n      src=\"https:\/\/s3.tradingview.com\/external-embedding\/embed-widget-symbol-overview.js\"\r\n      async>\r\n    {\r\n      \"lineWidth\": 2,\r\n      \"lineType\": 0,\r\n      \"chartType\": \"area\",\r\n\r\n      \"fontColor\": \"rgb(106, 109, 120)\",\r\n      \"gridLineColor\": \"rgba(46, 46, 46, 0.06)\",\r\n\r\n      \"volumeUpColor\": \"rgba(34, 171, 148, 0.5)\",\r\n      \"volumeDownColor\": \"rgba(247, 82, 95, 0.5)\",\r\n\r\n      \"backgroundColor\": \"rgba(0,0,0,0)\",\r\n      \"widgetFontColor\": \"#0F0F0F\",\r\n\r\n      \"upColor\": \"#22ab94\",\r\n      \"downColor\": \"#f7525f\",\r\n      \"borderUpColor\": \"#22ab94\",\r\n      \"borderDownColor\": \"#f7525f\",\r\n      \"wickUpColor\": \"#22ab94\",\r\n      \"wickDownColor\": \"#f7525f\",\r\n\r\n      \"colorTheme\": \"light\",\r\n      \"isTransparent\": true,\r\n\r\n      \"locale\": \"en\",\r\n\r\n      \"chartOnly\": false,\r\n      \"scalePosition\": \"right\",\r\n      \"scaleMode\": \"Normal\",\r\n\r\n      \"fontFamily\": \"-apple-system, BlinkMacSystemFont, Trebuchet MS, Roboto, Ubuntu, sans-serif\",\r\n\r\n      \"valuesTracking\": \"1\",\r\n      \"changeMode\": \"price-and-percent\",\r\n\r\n      \"symbols\": [\r\n        [\"OANDA:XAUUSD|1D\"],\r\n        [\"CAPITALCOM:SILVER|1D\"]\r\n      ],\r\n\r\n      \"dateRanges\": [\r\n        \"1d|1\",\r\n        \"1m|30\",\r\n        \"3m|60\",\r\n        \"12m|1D\",\r\n        \"60m|1W\",\r\n        \"all|1M\"\r\n      ],\r\n\r\n      \"fontSize\": \"10\",\r\n      \"headerFontSize\": \"medium\",\r\n\r\n      \"autosize\": true,\r\n      \"width\": \"100%\",\r\n      \"height\": \"100%\",\r\n\r\n      \"noTimeScale\": false,\r\n      \"hideDateRanges\": false,\r\n      \"hideMarketStatus\": false,\r\n      \"hideSymbolLogo\": false\r\n    }\r\n    <\/script>\r\n\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n\/* ===========================\r\n   RESPONSIVE SAFE WRAPPER\r\n=========================== *\/\r\n\r\n.tv-wrapper {\r\n  width: 100%;\r\n  max-width: 100%;\r\n  height: clamp(320px, 60vh, 750px);\r\n  margin: 0;\r\n  padding: 0;\r\n  overflow: hidden;\r\n  display: block;\r\n}\r\n\r\n\/* Inner container *\/\r\n.tradingview-widget-container {\r\n  width: 100%;\r\n  height: 100%;\r\n  position: relative;\r\n  overflow: hidden;\r\n}\r\n\r\n\/* Force iframe full size *\/\r\n.tradingview-widget-container iframe {\r\n  width: 100% !important;\r\n  height: 100% !important;\r\n  border: 0 !important;\r\n  display: block;\r\n}\r\n\r\n\/* Mobile optimization *\/\r\n@media (max-width: 768px) {\r\n  .tv-wrapper {\r\n    height: clamp(300px, 70vh, 600px);\r\n  }\r\n}\r\n\r\n\/* Small phones *\/\r\n@media (max-width: 480px) {\r\n  .tv-wrapper {\r\n    height: 65vh;\r\n  }\r\n}\r\n<\/style>\r\n<!-- TradingView Widget END -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e7a562 elementor-widget elementor-widget-text-editor\" data-id=\"9e7a562\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Please rotate your mobile phone horizontally to view the Charts.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59c7a6e elementor-widget elementor-widget-spacer\" data-id=\"59c7a6e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bd37d6f e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"bd37d6f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e17750d e-con-full e-flex kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-con e-child\" data-id=\"e17750d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a9b53d9 elementor-widget elementor-widget-heading\" data-id=\"a9b53d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Charts by date<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f5878c elementor-widget elementor-widget-html\" data-id=\"4f5878c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- TradingView Widget BEGIN -->\r\n<style>\r\n\/* Default (Desktop stays EXACTLY the same) *\/\r\n.tradingview-widget-container {\r\n  width: 980px;\r\n}\r\n\r\n\/* Mobile only responsive fix *\/\r\n@media (max-width: 768px) {\r\n  .tradingview-widget-container {\r\n    width: 100% !important;\r\n    max-width: 100% !important;\r\n  }\r\n\r\n  .tradingview-widget-container__widget {\r\n    width: 100% !important;\r\n    height: 400px !important;\r\n  }\r\n}\r\n<\/style>\r\n\r\n<div class=\"tradingview-widget-container\">\r\n  <div class=\"tradingview-widget-container__widget\"><\/div>\r\n\r\n  <div class=\"tradingview-widget-copyright\">\r\n    <a href=\"https:\/\/www.tradingview.com\/symbols\/XAUUSD\/?exchange=OANDA\" rel=\"noopener nofollow\" target=\"_blank\">\r\n      <span class=\"blue-text\"><\/span>\r\n    <\/a>\r\n    <span class=\"trademark\"> <\/span>\r\n  <\/div>\r\n\r\n  <script type=\"text\/javascript\" src=\"https:\/\/s3.tradingview.com\/external-embedding\/embed-widget-advanced-chart.js\" async>\r\n  {\r\n    \"allow_symbol_change\": false,\r\n    \"calendar\": false,\r\n    \"details\": false,\r\n    \"hide_side_toolbar\": true,\r\n    \"hide_top_toolbar\": false,\r\n    \"hide_legend\": false,\r\n    \"hide_volume\": false,\r\n    \"hotlist\": false,\r\n    \"interval\": \"D\",\r\n    \"locale\": \"en\",\r\n    \"save_image\": true,\r\n    \"style\": \"1\",\r\n    \"symbol\": \"OANDA:XAUUSD\",\r\n    \"theme\": \"light\",\r\n    \"timezone\": \"Etc\/UTC\",\r\n    \"backgroundColor\": \"rgba(255, 249, 241, 1)\",\r\n    \"gridColor\": \"rgba(46, 46, 46, 0.06)\",\r\n    \"watchlist\": [],\r\n    \"withdateranges\": false,\r\n    \"compareSymbols\": [],\r\n    \"studies\": [],\r\n    \"width\": 980,\r\n    \"height\": 610\r\n  }\r\n  <\/script>\r\n<\/div>\r\n<!-- TradingView Widget END -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ae3a677 elementor-widget elementor-widget-html\" data-id=\"ae3a677\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- ================= LUXURY ZAKAT CALCULATOR (SEO OPTIMIZED) ================= -->\r\n\r\n<meta name=\"description\" content=\"Gold Zakat Calculator UAE - Calculate Zakat for 24K, 22K, 21K, 18K gold with live prices in AED. Accurate Islamic Zakat calculator by Al Samer Jewellery.\">\r\n<meta name=\"keywords\" content=\"zakat calculator, gold zakat UAE, 24K gold price, 22K gold zakat, gold calculator UAE, islamic zakat calculator, al samer jewellery gold price\">\r\n\r\n<script type=\"application\/ld+json\">\r\n{\r\n  \"@context\": \"https:\/\/schema.org\",\r\n  \"@type\": \"WebApplication\",\r\n  \"name\": \"Gold Zakat Calculator\",\r\n  \"applicationCategory\": \"FinanceApplication\",\r\n  \"operatingSystem\": \"All\",\r\n  \"description\": \"Calculate Zakat for gold (24K, 22K, 21K, 18K) using live gold prices in UAE dirhams.\",\r\n  \"url\": \"https:\/\/alsamerjewellery.ae\/gold-price\"\r\n}\r\n<\/script>\r\n\r\n<style>\r\ninput.w::placeholder{\r\n  opacity:0.35;\r\n}\r\n<\/style>\r\n\r\n<div id=\"zakat-widget\" style=\"font-family:Tajawal,Arial;width:100%;margin:10px 0;\">\r\n\r\n  <div style=\"width:100%;max-width:100%;margin:auto;padding:12px 14px;box-sizing:border-box;\">\r\n\r\n    <header style=\"text-align:center;margin-bottom:14px;\">\r\n      <h1 style=\"font-size:18px;font-weight:700;letter-spacing:0.5px;margin:0;\">\r\n        Gold Zakat Calculator UAE\r\n      <\/h1>\r\n      <p style=\"font-size:11px;opacity:0.6;margin-top:3px;\">\r\n        Accurate Multi-Karat Gold Zakat Calculator with Live Gold Prices in UAE\r\n      <\/p>\r\n    <\/header>\r\n\r\n    <section style=\"display:flex;flex-direction:column;gap:10px;width:100%;\">\r\n\r\n      <article style=\"width:100%;border:1px solid rgba(212,175,55,0.45);border-radius:14px;padding:12px;\">\r\n        <div style=\"display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(212,175,55,0.25);padding-bottom:8px;\">\r\n          <strong>24K Gold<\/strong>\r\n          <input class=\"w\" data-karat=\"24\" placeholder=\"Enter weight (g)\" oninput=\"calcZakat()\" style=\"width:110px;text-align:center;padding:6px;border:1px solid rgba(212,175,55,0.35);border-radius:10px;background:transparent;\">\r\n        <\/div>\r\n        <div style=\"display:flex;justify-content:space-between;margin-top:8px;font-size:12px;\">\r\n          <span>Value: <span id=\"v24\">0<\/span><\/span>\r\n          <span>Zakat: <span id=\"z24\">0<\/span><\/span>\r\n        <\/div>\r\n      <\/article>\r\n\r\n      <article style=\"width:100%;border:1px solid rgba(212,175,55,0.45);border-radius:14px;padding:12px;\">\r\n        <div style=\"display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(212,175,55,0.25);padding-bottom:8px;\">\r\n          <strong>22K Gold<\/strong>\r\n          <input class=\"w\" data-karat=\"22\" placeholder=\"Enter weight (g)\" oninput=\"calcZakat()\" style=\"width:110px;text-align:center;padding:6px;border:1px solid rgba(212,175,55,0.35);border-radius:10px;background:transparent;\">\r\n        <\/div>\r\n        <div style=\"display:flex;justify-content:space-between;margin-top:8px;font-size:12px;\">\r\n          <span>Value: <span id=\"v22\">0<\/span><\/span>\r\n          <span>Zakat: <span id=\"z22\">0<\/span><\/span>\r\n        <\/div>\r\n      <\/article>\r\n\r\n      <article style=\"width:100%;border:1px solid rgba(212,175,55,0.45);border-radius:14px;padding:12px;\">\r\n        <div style=\"display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(212,175,55,0.25);padding-bottom:8px;\">\r\n          <strong>21K Gold<\/strong>\r\n          <input class=\"w\" data-karat=\"21\" placeholder=\"Enter weight (g)\" oninput=\"calcZakat()\" style=\"width:110px;text-align:center;padding:6px;border:1px solid rgba(212,175,55,0.35);border-radius:10px;background:transparent;\">\r\n        <\/div>\r\n        <div style=\"display:flex;justify-content:space-between;margin-top:8px;font-size:12px;\">\r\n          <span>Value: <span id=\"v21\">0<\/span><\/span>\r\n          <span>Zakat: <span id=\"z21\">0<\/span><\/span>\r\n        <\/div>\r\n      <\/article>\r\n\r\n      <article style=\"width:100%;border:1px solid rgba(212,175,55,0.45);border-radius:14px;padding:12px;\">\r\n        <div style=\"display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(212,175,55,0.25);padding-bottom:8px;\">\r\n          <strong>18K Gold<\/strong>\r\n          <input class=\"w\" data-karat=\"18\" placeholder=\"Enter weight (g)\" oninput=\"calcZakat()\" style=\"width:110px;text-align:center;padding:6px;border:1px solid rgba(212,175,55,0.35);border-radius:10px;background:transparent;\">\r\n        <\/div>\r\n        <div style=\"display:flex;justify-content:space-between;margin-top:8px;font-size:12px;\">\r\n          <span>Value: <span id=\"v18\">0<\/span><\/span>\r\n          <span>Zakat: <span id=\"z18\">0<\/span><\/span>\r\n        <\/div>\r\n      <\/article>\r\n\r\n    <\/section>\r\n\r\n    <div style=\"text-align:center;margin-top:16px;font-size:14px;font-weight:700;\">\r\n      Total Zakat: <span id=\"totalZakat\">0<\/span> AED\r\n    <\/div>\r\n\r\n    <div style=\"text-align:center;margin-top:8px;\">\r\n      <button onclick=\"copyZakat()\"\r\n        style=\"padding:7px 16px;border-radius:10px;border:1px solid rgba(212,175,55,0.5);\r\n        cursor:pointer;background:transparent;font-size:11px;font-weight:600;color:#000;\">\r\n        Copy\r\n      <\/button>\r\n\r\n      <button onclick=\"clearWeights()\"\r\n        style=\"padding:7px 16px;border-radius:10px;border:1px solid #ccc;\r\n        cursor:pointer;background:transparent;font-size:11px;font-weight:600;color:#000;margin-left:6px;\">\r\n        Clear\r\n      <\/button>\r\n    <\/div>\r\n\r\n    <footer style=\"margin-top:20px;text-align:center;font-size:11px;opacity:0.6;\">\r\n      Gold Zakat Calculator UAE by Al Samer Jewellery\r\n    <\/footer>\r\n\r\n  <\/div>\r\n<\/div>\r\n\r\n<div id=\"zakat-toast\" style=\"position:fixed;bottom:20px;left:50%;transform:translateX(-50%);background:rgba(0,0,0,0.88);color:#fff;padding:8px 14px;border-radius:10px;font-size:11px;opacity:0;transition:0.25s;z-index:9999;\">\r\nCopied Successfully \u2728\r\n<\/div>\r\n\r\n<script>\r\nlet GOLD_PRICES={\"24K\":0,\"22K\":0,\"21K\":0,\"18K\":0};\r\n\r\nasync function loadGoldPrices(){\r\n  try{\r\n    const res=await fetch(\"\/wp-json\/gold\/v1\/prices\");\r\n    const data=await res.json();\r\n    GOLD_PRICES={\r\n      \"24K\":data[\"24K\"]||0,\r\n      \"22K\":data[\"22K\"]||0,\r\n      \"21K\":data[\"21K\"]||0,\r\n      \"18K\":data[\"18K\"]||0\r\n    };\r\n    calcZakat();\r\n  }catch(e){}\r\n}\r\n\r\nfunction calcZakat(){\r\n  let total=0;\r\n  document.querySelectorAll(\".w\").forEach(input=>{\r\n    let karat=input.dataset.karat;\r\n    let weight=parseFloat(input.value)||0;\r\n    let price=GOLD_PRICES[karat+\"K\"]||0;\r\n\r\n    let value=weight*price;\r\n    let zakat=value*0.025;\r\n\r\n    document.getElementById(\"v\"+karat).innerText=value.toFixed(2);\r\n    document.getElementById(\"z\"+karat).innerText=zakat.toFixed(2);\r\n\r\n    total+=zakat;\r\n  });\r\n\r\n  const totalEl = document.getElementById(\"totalZakat\");\r\n  totalEl.innerText = total.toFixed(2);\r\n\r\n  if (total > 0) {\r\n    totalEl.style.color = \"#16a34a\";\r\n    totalEl.style.fontWeight = \"700\";\r\n  } else {\r\n    totalEl.style.color = \"\";\r\n    totalEl.style.fontWeight = \"\";\r\n  }\r\n}\r\n\r\nfunction copyZakat(){\r\n  let text =\r\n`\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\n\u2728 GOLD ZAKAT OFFICIAL REPORT \u2728\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\n\r\n\u25a3 24K Gold \u2192 ${document.querySelector('[data-karat=\"24\"]').value||0}g\r\n   Value : ${document.getElementById(\"v24\").innerText} AED\r\n   Zakat : ${document.getElementById(\"z24\").innerText} AED\r\n\r\n\u25a3 22K Gold \u2192 ${document.querySelector('[data-karat=\"22\"]').value||0}g\r\n   Value : ${document.getElementById(\"v22\").innerText} AED\r\n   Zakat : ${document.getElementById(\"z22\").innerText} AED\r\n\r\n\u25a3 21K Gold \u2192 ${document.querySelector('[data-karat=\"21\"]').value||0}g\r\n   Value : ${document.getElementById(\"v21\").innerText} AED\r\n   Zakat : ${document.getElementById(\"z21\").innerText} AED\r\n\r\n\u25a3 18K Gold \u2192 ${document.querySelector('[data-karat=\"18\"]').value||0}g\r\n   Value : ${document.getElementById(\"v18\").innerText} AED\r\n   Zakat : ${document.getElementById(\"z18\").innerText} AED\r\n\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\nTOTAL ZAKAT: ${document.getElementById(\"totalZakat\").innerText} AED\r\n\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\r\n\r\n\ud83c\udf10 Al Samer Jewellery\r\nhttps:\/\/alsamerjewellery.ae\/gold-price`;\r\n\r\n  navigator.clipboard.writeText(text);\r\n\r\n  document.getElementById(\"zakat-toast\").style.opacity=\"1\";\r\n  setTimeout(()=>document.getElementById(\"zakat-toast\").style.opacity=\"0\",1400);\r\n}\r\n\r\nfunction clearWeights(){\r\n  document.querySelectorAll(\".w\").forEach(i=>i.value=\"\");\r\n  calcZakat();\r\n}\r\n\r\nwindow.addEventListener(\"load\",loadGoldPrices);\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f84bba5 e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"f84bba5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b3eacd elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"2b3eacd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8061a47 elementor-widget elementor-widget-text-editor\" data-id=\"8061a47\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h3><img decoding=\"async\" class=\"emoji\" role=\"img\" draggable=\"false\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/17.0.2\/svg\/2728.svg\" alt=\"\u2728\" \/> A Luxurious Advisory from Al Samer Jewellery<\/h3><p>At Al Samer Jewellery, we believe that gold is not merely a choice, but a refined lifestyle that reflects exceptional taste and a sophisticated investment vision. We recommend selecting higher purities such as 24K and 21K for those seeking ultimate purity and enduring value, while 18K offers the perfect balance between luxury and durability for everyday elegance.<\/p><p>For those focused on preserving and growing their wealth, gold bars and coins remain the most pure and reliable option\u2014where true value meets stability that withstands the test of time. Choosing gold carefully, from a trusted source, reflects a level of awareness and discernment worthy of those who appreciate authenticity and excellence.<\/p><p>Make gold part of your legacy, and invest in an asset that embodies timeless elegance and lasting value\u2014an enduring symbol of luxury and financial stability for generations to come.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd08d2b elementor-widget elementor-widget-text-editor\" data-id=\"bd08d2b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h3>\u2b50 About this page<\/h3><h6>This page provides a comprehensive, real-time overview of gold and silver prices, designed to deliver accurate and continuously updated information for investors and individuals interested in precious metals.<\/h6><p>Our platform displays <strong>live gold prices sourced directly from global markets, ensuring users have access to the latest price movements as they occur. In addition, we present the silver price per ounce<\/strong>, offering a clear view of global silver market trends.<\/p><p>To support deeper analysis, the page features <strong>interactive charts and historical graphs that illustrate price movements over time<\/strong>. These visual tools enable users to track trends, analyze market behavior, and make informed decisions based on historical data and patterns.<\/p><p>For users in the United Arab Emirates, the page also provides<strong> local gold prices in AED<\/strong>, including detailed breakdowns per gram for various purities such as <strong>24K, 22K, 21K, and 18K<\/strong>, ensuring relevance for both individual buyers and industry professionals.<\/p><p>Furthermore, we offer <strong>gold prices in the Abu Dhabi market<\/strong>, reflecting local trading conditions and giving users a clearer understanding of regional pricing dynamics.<br \/>Whether you are monitoring daily price fluctuations, conducting market analysis, or planning a purchase, this page serves as a reliable and informative resource for all your gold and silver pricing needs.<\/p><p>#Gold_Price_today_in_UAE, #Gold_prices, #\u0627\u0633\u0639\u0627\u0631_\u0627\u0644\u0630\u0647\u0628_\u0627\u0644\u064a\u0648\u0645, #\u0627\u0633\u0639\u0627\u0631_\u0627\u0644\u0630\u0647\u0628_\u0641\u064a_\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a, #\u0633\u0639\u0631_\u0627\u0644\u0630\u0647\u0628_\u0627\u0644\u064a\u0648\u0645<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e74bca9 elementor-widget elementor-widget-spacer\" data-id=\"e74bca9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-aaa42d2 e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"aaa42d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72eb646 elementor-widget__width-inherit elementor-widget elementor-widget-html\" data-id=\"72eb646\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n\r\n<title>Gold Price FAQ UAE | Live Gold Rates Dubai 24K 22K 21K<\/title>\r\n\r\n<meta name=\"description\" content=\"Find answers to gold price FAQs in UAE. Learn about 24K, 22K, 21K gold rates, price changes, and live gold market updates in Dubai and UAE.\">\r\n<meta name=\"keywords\" content=\"gold price UAE, gold rate Dubai, 24K gold price, 22K gold, live gold price UAE, gold FAQ\">\r\n\r\n<style>\r\n  .faq-container {\r\n    max-width: 100%;\r\n    width: 100%;\r\n    margin: auto;\r\n    font-family: Arial, sans-serif;\r\n\r\n    direction: ltr;\r\n    text-align: left;\r\n  }\r\n\r\n  html[lang=\"ar\"] .faq-container {\r\n    direction: rtl;\r\n    text-align: right;\r\n  }\r\n\r\n  details {\r\n    margin-bottom: 12px;\r\n    padding: 15px;\r\n    border-radius: 12px;\r\n\r\n    background: rgba(255, 255, 255, 0.08);\r\n\r\n    backdrop-filter: blur(6px);\r\n    -webkit-backdrop-filter: blur(6px);\r\n\r\n    border: 1px solid rgba(0, 0, 0, 0.08);\r\n\r\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\r\n  }\r\n\r\n  summary {\r\n    font-weight: bold;\r\n    cursor: pointer;\r\n    list-style: none;\r\n    display: flex;\r\n    justify-content: space-between;\r\n    align-items: center;\r\n\r\n    color: inherit;\r\n  }\r\n\r\n  summary::after {\r\n    content: \"+\";\r\n    font-size: 18px;\r\n    font-weight: bold;\r\n  }\r\n\r\n  details[open] summary::after {\r\n    content: \"\u2212\";\r\n  }\r\n\r\n  p {\r\n    margin-top: 10px;\r\n    line-height: 1.6;\r\n    color: inherit;\r\n  }\r\n\r\n  .seo-text {\r\n    font-size: 0;\r\n    height: 0;\r\n    overflow: hidden;\r\n  }\r\n<\/style>\r\n\r\n<\/head>\r\n\r\n<body>\r\n\r\n<section class=\"seo-text\">\r\n  <h1>Gold Price FAQ UAE - Live Gold Rates in Dubai<\/h1>\r\n  <p>\r\n    Gold prices in UAE are influenced by global markets, USD rate, and demand. Dubai is a major gold trading hub.\r\n  <\/p>\r\n  <p>\r\n    UAE gold market is known for purity standards, competitive pricing, and strong regulation.\r\n  <\/p>\r\n<\/section>\r\n\r\n<section class=\"faq-container\">\r\n\r\n  <h2>Gold Price FAQ<\/h2>\r\n\r\n  <details>\r\n    <summary>Why does the gold price change daily?<\/summary>\r\n    <p>Gold prices change due to global market price, USD value, supply and demand, and economic events.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>What is the difference between gold karats?<\/summary>\r\n    <p>24K is pure gold, 22K is commonly used for jewelry, 21K is popular in the Gulf region, and 18K is more affordable.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>Does the gold price include making charges?<\/summary>\r\n    <p>No, the gold price usually excludes making charges which vary depending on design and store.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>Can gold prices go down?<\/summary>\r\n    <p>Yes, gold prices fluctuate daily based on global market conditions.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>How often are gold prices updated?<\/summary>\r\n    <p>Prices are updated regularly based on live market data.<\/p>\r\n  <\/details>\r\n\r\n  <!-- \ud83d\udd25 NEW UAE GOLD FAQ -->\r\n\r\n  <details>\r\n    <summary>Is gold cheaper in UAE compared to other countries?<\/summary>\r\n    <p>Yes, AbuDhabi is known for competitive gold pricing due to low taxes and strong market competition.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>Is gold subject to tax in UAE?<\/summary>\r\n    <p>Gold jewelry in UAE is subject to 5% VAT, while investment-grade gold may have different rules depending on purity.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>What is AbuDhabi Gold Souk?<\/summary>\r\n    <p>AbuDhabi Gold Souk is a famous traditional market where gold jewelry and bullion are traded with certified purity.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>How can I verify gold purity in UAE?<\/summary>\r\n    <p>Gold in UAE is hallmarked and certified by government authorities to ensure purity and authenticity.<\/p>\r\n  <\/details>\r\n\r\n  <details>\r\n    <summary>Why is Dubai famous for gold trading?<\/summary>\r\n    <p>Dubai is a global gold hub due to tax advantages, strong regulations, and high-quality standards.<\/p>\r\n  <\/details>\r\n\r\n<\/section>\r\n\r\n<!-- SEO SCHEMA -->\r\n<script type=\"application\/ld+json\">\r\n{\r\n  \"@context\": \"https:\/\/schema.org\",\r\n  \"@type\": \"FAQPage\",\r\n  \"mainEntity\": [\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Why does the gold price change daily?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Gold prices change due to global market price, USD value, supply and demand, and economic events.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"What is the difference between gold karats?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"24K is pure gold, 22K is commonly used for jewelry, 21K is popular in the Gulf region, and 18K is more affordable.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Does the gold price include making charges?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"No, making charges vary depending on design and store.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Can gold prices go down?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Yes, gold prices fluctuate based on global market conditions.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"How often are gold prices updated?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Prices are updated regularly based on live market data.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Is gold cheaper in UAE compared to other countries?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Yes, Dubai offers competitive gold prices due to low taxes and strong market competition.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Is gold subject to tax in UAE?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Gold jewelry in UAE is subject to 5% VAT depending on category and purity.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"What is Dubai Gold Souk?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Dubai Gold Souk is a famous market for buying certified gold jewelry and bullion.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"How can I verify gold purity in UAE?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Gold in UAE is hallmarked and regulated to ensure purity and authenticity.\" }\r\n    },\r\n    {\r\n      \"@type\": \"Question\",\r\n      \"name\": \"Why is Dubai famous for gold trading?\",\r\n      \"acceptedAnswer\": { \"@type\": \"Answer\", \"text\": \"Dubai is a global gold hub due to tax advantages, regulation, and high purity standards.\" }\r\n    }\r\n  ]\r\n}\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-772b1af e-flex e-con-boxed kitify-col-width-auto-no ignore-docs-style-no kitify-disable-relative-no e-root-container elementor-top-section e-con e-parent\" data-id=\"772b1af\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;,&quot;animation_delay&quot;:0}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6a42dcb elementor-widget elementor-widget-html\" data-id=\"6a42dcb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Floating Mini Luxury Card -->\r\n<div class=\"lux-float-card\">\r\n\r\n  <button class=\"lux-float-close\" onclick=\"this.parentElement.style.display='none'\">\u2715<\/button>\r\n\r\n  <div class=\"lux-float-title\">\u2728 Luxury Gold<\/div>\r\n\r\n  <div class=\"lux-float-text\">\r\n    Shop gold & jewellery<br>\r\n    Tabby payment available\r\n  <\/div>\r\n\r\n  <a href=\"https:\/\/alsamerjewellery.ae\" target=\"_blank\" class=\"lux-float-btn\">\r\n    Explore\r\n  <\/a>\r\n\r\n<\/div>\r\n\r\n<style>\r\n.lux-float-card{\r\n  position: fixed !important;\r\n\r\n  right: 20px !important;\r\n  left: auto !important;\r\n\r\n  bottom: 90px !important;\r\n\r\n  width: 200px;\r\n  padding: 13px;\r\n\r\n  background: rgba(255,255,255,0.95);\r\n  backdrop-filter: blur(6px);\r\n\r\n  border-radius: 14px;\r\n  box-shadow: 0 15px 35px rgba(0,0,0,0.2);\r\n\r\n  z-index: 999999 !important;\r\n\r\n  font-family: Arial, sans-serif;\r\n  text-align: left;\r\n}\r\n\r\n\/* Title *\/\r\n.lux-float-title{\r\n  font-size: 13px;\r\n  font-weight: bold;\r\n  color: #b8860b !important;\r\n}\r\n\r\n\/* Text *\/\r\n.lux-float-text{\r\n  font-size: 11px;\r\n  color: #444;\r\n  line-height: 1.4;\r\n}\r\n\r\n\/* Button *\/\r\n.lux-float-btn{\r\n  display: block;\r\n  margin-top: 8px;\r\n\r\n  text-align: center;\r\n  padding: 8px 0;\r\n  border-radius: 8px;\r\n\r\n  background: #b8860b !important;\r\n  background-image: linear-gradient(135deg, #d4af37, #b8860b) !important;\r\n\r\n  color: #fff !important;\r\n  text-decoration: none;\r\n\r\n  font-size: 12px;\r\n\r\n  -webkit-appearance: none;\r\n  appearance: none;\r\n}\r\n\r\n\/* \u2b50 Close Button (Small + Slightly Left) *\/\r\n.lux-float-close{\r\n  position: absolute;\r\n\r\n  top: 8px;\r\n  right: 7px; \/* slightly moved left *\/\r\n\r\n  width: 18px;\r\n  height: 18px;\r\n\r\n  border: 1px solid rgba(0,0,0,0.08);\r\n  border-radius: 50%;\r\n\r\n  background: rgba(255,255,255,0.8);\r\n  color: #777;\r\n\r\n  font-size: 10px;\r\n  line-height: 1;\r\n\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n\r\n  cursor: pointer;\r\n  padding: 0;\r\n\r\n  transition: all 0.2s ease;\r\n}\r\n\r\n.lux-float-close:hover{\r\n  background: rgba(184,134,11,0.12);\r\n  border-color: rgba(184,134,11,0.4);\r\n  color: #b8860b;\r\n  transform: scale(1.1);\r\n}\r\n\r\n\/* Mobile *\/\r\n@media (max-width: 480px){\r\n  .lux-float-card{\r\n    width: 170px !important;\r\n    right: 12px !important;\r\n    left: auto !important;\r\n    bottom: 110px !important;\r\n  }\r\n}\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4009057 elementor-widget elementor-widget-spacer\" data-id=\"4009057\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u0623\u062e\u0628\u0627\u0631 \u0639\u0627\u062c\u0644\u0629 \u062a\u062a\u0628\u0639 \u0623\u0633\u0639\u0627\u0631 \u0627\u0644\u0630\u0647\u0628 \u0645\u0628\u0627\u0634\u0631\u0629\u060c \u0648\u0627\u063a\u062a\u0646\u0645 \u0627\u0644\u0641\u0631\u0635\u0629 \u0644\u0627\u0642\u062a\u0646\u0627\u0621 \u0623\u062c\u0648\u062f \u0633\u0628\u0627\u0626\u0643\u0646\u0627 \u0648\u0639\u0645\u0644\u0627\u062a\u0646\u0627 \u0627\u0644\u0630\u0647\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u062d\u0629. \u00d7 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0633\u0648\u0642 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0633\u0648\u0642 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629 \u0645\u062c\u0648\u0647\u0631\u0627\u062a \u0627\u0644\u0633\u0627\u0645\u0631 \u0633\u0639\u0631 \u0627\u0644\u0645\u0639\u0627\u062f\u0646 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0627\u0628\u062f\u0623 \u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631 \u0633\u0628\u0627\u0626\u0643 \u0630\u0647\u0628 \u0639\u0645\u0644\u0627\u062a \u0630\u0647\u0628 \u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0627\u0644\u0623\u0633\u0639\u0627\u0631 \u0627\u0644\u064a\u0648\u0645\u064a\u0629 \u0623\u0633\u0639\u0627\u0631 \u0627\u0644\u0630\u0647\u0628 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629 \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0623\u0633\u0639\u0627\u0631 \u0627\u0644\u0630\u0647\u0628 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u064a \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0623\u0633\u0639\u0627\u0631 \u0627\u0644\u0630\u0647\u0628 \u0627\u0644\u0641\u0648\u0631\u064a\u0629 \u0641\u064a \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0645\u0642\u062f\u0645\u0629 \u0645\u0646 \u0627\u0644\u0633\u0627\u0645\u0631...<\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-13606","page","type-page","status-publish","hentry"],"pure_taxonomies":[],"acf":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/pages\/13606","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/comments?post=13606"}],"version-history":[{"count":5,"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/pages\/13606\/revisions"}],"predecessor-version":[{"id":16252,"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/pages\/13606\/revisions\/16252"}],"wp:attachment":[{"href":"https:\/\/alsamerjewellery.ae\/ar\/wp-json\/wp\/v2\/media?parent=13606"}],"curies":[{"name":"\u062f\u0628\u0644\u064a\u0648 \u0628\u064a","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}