{"id":6211,"date":"2026-07-05T17:07:11","date_gmt":"2026-07-05T16:07:11","guid":{"rendered":"https:\/\/www.luxetheorybyrefresh.com\/?page_id=6211"},"modified":"2026-07-06T07:32:53","modified_gmt":"2026-07-06T06:32:53","slug":"amelia-test","status":"publish","type":"page","link":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/amelia-test\/","title":{"rendered":"Amelia test"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"6211\" class=\"elementor elementor-6211\">\n\t\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-cf4e1a5 elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"cf4e1a5\" data-element_type=\"section\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b516699\" data-id=\"b516699\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-682802d elementor-widget elementor-widget-html\" data-id=\"682802d\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n<title>Booking<\/title>\r\n<style>\r\nbody{font-family:Arial,sans-serif;background:#f7f4ef;margin:0}\r\n.wrap{max-width:1200px;margin:30px auto;display:grid;grid-template-columns:1.2fr .8fr;gap:30px;padding:20px}\r\n.cards{display:grid;grid-template-columns:repeat(2,1fr);gap:15px}\r\n.card{background:#fff;border:1px solid #ddd;border-radius:10px;padding:25px;text-align:center;cursor:pointer}\r\n.card:hover{border-color:#b69b6b}\r\n.disabled{opacity:.5;cursor:not-allowed}\r\n#back{display:none;margin-bottom:15px}\r\nselect,input,button{width:100%;padding:12px;margin:8px 0}\r\nbutton{background:#111;color:#fff;border:0}\r\n.panel{background:#fff;border:1px solid #ddd;padding:25px;border-radius:10px}\r\n@media(max-width:800px){.wrap{grid-template-columns:1fr}.cards{grid-template-columns:1fr}}\r\n<\/style>\r\n<\/head>\r\n<body>\r\n<div class=\"wrap\">\r\n<div>\r\n<button id=\"back\">\u2190 Back to Categories<\/button>\r\n<h2 id=\"title\">SELECT A CATEGORY<\/h2>\r\n<div class=\"cards\" id=\"cards\"><\/div>\r\n<\/div>\r\n<div class=\"panel\">\r\n<h2>Book Appointment<\/h2>\r\n<label>Service \/ Treatment<\/label>\r\n<select id=\"treatment\"><option>Select a category first<\/option><\/select>\r\n<label>Select Date<\/label>\r\n<input type=\"date\">\r\n<label>Select Time<\/label>\r\n<input type=\"time\">\r\n<label>Full Name<\/label><input type=\"text\">\r\n<label>Email<\/label><input type=\"email\">\r\n<label>Phone Number<\/label><input type=\"tel\">\r\n<button>Book Now<\/button>\r\n<\/div>\r\n<\/div>\r\n<script>\r\nconst data={\r\n\"Medical Weight Loss\":[\"Semaglutide Consultation\",\"Tirzepatide Consultation\"],\r\n\"Massage Therapy\":[\r\n\"Therapeutic Massage - 45 Minutes \u2013 $110\",\"Therapeutic Massage - 60 Minutes \u2013 $140\",\"Therapeutic Massage - 90 Minutes \u2013 $190\",\r\n\"Lymphatic Drainage Massage - 60 Minutes \u2013 $150\",\"Lymphatic Drainage Massage - 90 Minutes \u2013 $200\",\r\n\"Post-Op Lymphatic Drainage Massage - 60 Minutes \u2013 $160\",\"Post-Op Lymphatic Drainage Massage - 90 Minutes \u2013 $210\"],\r\n\"Body Sculpting\":[\"Body Sculpting & Detox - 60 Minutes \u2013 $170\",\"Body Sculpting & Detox - 90 Minutes \u2013 $225\"],\r\n\"Luxury Facials\":[\"Express Facial (30 Minutes) \u2013 $85\",\"Signature Luxury Facial (60 Minutes) \u2013 $150\",\"Deluxe Luxury Facial (90 Minutes) \u2013 $200\",\"Hydrating Facial \u2013 $160\",\"Brightening Facial \u2013 $175\",\"Acne Clarifying Facial \u2013 $165\",\"Anti-Aging Facial \u2013 $185\",\"Dermaplane Facial \u2013 $180\",\"Men\u2019s Facial \u2013 $150\"],\r\n\"IV Hydration Therapy\":[\"IV Hydration Therapy \u2013 $135\"],\r\n\"Pain Management\":[\"Pain Management Consultation (By Request Only)\"],\r\n\"Lash Extensions\":[\"Lash Extensions \u2013 $120\"]\r\n};\r\nconst coming=[\"Botox (Coming Soon)\",\"Dermal Fillers (Coming Soon)\",\"Laser Hair Removal (Coming Soon)\"];\r\nconst cards=document.getElementById(\"cards\"),title=document.getElementById(\"title\"),back=document.getElementById(\"back\"),sel=document.getElementById(\"treatment\");\r\nfunction showCats(){\r\ntitle.textContent=\"SELECT A CATEGORY\";back.style.display=\"none\";cards.innerHTML=\"\";\r\nObject.keys(data).forEach(k=>{let d=document.createElement(\"div\");d.className=\"card\";d.textContent=k;d.onclick=()=>showTreat(k);cards.appendChild(d);});\r\ncoming.forEach(k=>{let d=document.createElement(\"div\");d.className=\"card disabled\";d.textContent=k;cards.appendChild(d);});\r\n}\r\nfunction showTreat(cat){\r\ntitle.textContent=\"SELECT FROM: \"+cat;back.style.display=\"inline-block\";\r\ncards.innerHTML=\"\";\r\ndata[cat].forEach(t=>{let d=document.createElement(\"div\");d.className=\"card\";d.textContent=t;d.onclick=()=>sel.value=t;cards.appendChild(d);});\r\nsel.innerHTML=\"<option value=''>Select Treatment<\/option>\";\r\ndata[cat].forEach(t=>sel.innerHTML+=`<option>${t}<\/option>`);\r\n}\r\nback.onclick=showCats;showCats();\r\n<\/script>\r\n<\/body>\r\n<\/html>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Booking \u2190 Back to Categories SELECT A CATEGORY Book Appointment Service \/ Treatment Select a category first Select Date Select Time Full Name Email Phone Number Book Now<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6211","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/pages\/6211","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/comments?post=6211"}],"version-history":[{"count":10,"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/pages\/6211\/revisions"}],"predecessor-version":[{"id":6251,"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/pages\/6211\/revisions\/6251"}],"wp:attachment":[{"href":"https:\/\/www.luxetheorybyrefresh.com\/index.php\/wp-json\/wp\/v2\/media?parent=6211"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}