{"sections":{"page_banner_qgUdfW":{"type":"page-banner","custom_css":["div {--section-height: auto;}"],"name":"t:sections.page-banner.name","settings":{"enable_transparent_header":true,"heading":"Help Center","heading_size":"h2","text":"","show_default_description":false,"show_on_description":"desktop","content_position":"end","content_alignment":"start","media_position":"background","page_menu":"release-theme-help-center","enable_breadcrumbs":true,"section_height":"50svh","content_width":"50%","video_external":"","show_controls_on_video":false,"section_height_mobile":"33svh","video_external_mobile":"","show_controls_on_video_mobile":false,"section_width":"max-w-fluid","color_scheme":"scheme-4","color_scheme_for_media":"scheme-1","spacing_top":"2","spacing_bottom":"1"}},"custom_liquid_nULLJ6":{"type":"custom-liquid","name":"Sub-Menu Link Styling","settings":{"custom_liquid":"<style>\n@media screen and (min-width: 749px) and (max-width: 1440px) {\n  .section-page-banner__menu .menu.menu--horizontal:has(*) {\n    padding: 0 var(--page-gutter);\n  }\n}\n\n.section-page-banner__menu { \nz-index: 2; }\n\n@media screen and (min-width: 1441px) {\n.section-page-banner__menu {\npadding: 0 var(--page-gutter);\n}\n}\n@media only screen and (min-width: 993px) {\n.section-page-banner__menu {\ndisplay: none !important;\n}\n}\n\n.section-page-banner__menu {\npadding-bottom: 40px;\n<\/style>","section_width":"max-w-fluid","color_scheme":"","spacing_top":"0","spacing_bottom":"0"}},"main":{"type":"main-page","disabled":true,"settings":{"breadcrumbs":false,"show_page_title":true,"page_title_alignment":"text-start","info_title":"","info_content":"","section_width":"max-w-page","color_scheme":"","spacing_top":"2","spacing_bottom":"2"}},"custom_liquid_mgMANH":{"type":"custom-liquid","name":"Mobile Accordion Padding","settings":{"custom_liquid":"<style>\n@media only screen and (max-width: 749px) {\n.accordions .section__subtext {\n   margin-bottom: 3rem;\n}\n.accordions__left {\nmargin-bottom: 3rem;\n}\n}\n\n<\/style>","section_width":"max-w-page","color_scheme":"","spacing_top":"0","spacing_bottom":"0"}},"custom_liquid_yp79UF":{"type":"custom-liquid","disabled":true,"name":"Custom liquid - Search Bar","settings":{"custom_liquid":"<!-- FAQ Search -->\n<div class=\"container max-w-page faq-search-container js-animation-fade-in animation-init animation-none\">\n  <div class=\"faq-search\">\n    <input type=\"text\" id=\"faqSearch\" placeholder=\"Search Sale Terms...\">\n  <\/div>\n\n  <!-- Search Results container -->\n  <div id=\"faqResults\" style=\"display:none; margin-bottom: 40px;\"><\/div>\n<\/div>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n  const searchInput = document.getElementById(\"faqSearch\");\n  const faqBlocks = document.querySelectorAll(\".container.max-w-page:not(.faq-search-container)\");\n  const resultsContainer = document.getElementById(\"faqResults\");\n\n  searchInput.addEventListener(\"input\", function() {\n    const query = this.value.toLowerCase().trim();\n    resultsContainer.innerHTML = \"\";\n\n    if (query === \"\") {\n      faqBlocks.forEach(block => block.style.display = \"\");\n      resultsContainer.style.display = \"none\";\n      return;\n    }\n\n    let resultsFound = false;\n\n    faqBlocks.forEach(function(block) {\n      const categoryTitle = block.querySelector(\".section__heading\")?.innerText || \"\";\n      const sections = block.querySelectorAll(\".accordion__section\");\n\n      \/\/ If the category title matches the query → show all questions from this accordion\n      if (categoryTitle.toLowerCase().includes(query)) {\n        sections.forEach(function(section) {\n          resultsFound = true;\n          const resultHTML = `\n            <div class=\"faq-result-item\" style=\"background:#f5f5f5; margin-bottom:10px; padding:15px; border-radius: 10px;\">\n              <strong style=\"display:block; margin-bottom:5px; font-size:14px; color:#666;\">${categoryTitle}<\/strong>\n              <div style=\"font-weight:bold; margin-bottom:5px;\">${section.querySelector(\".accordion__button-text\").innerText}<\/div>\n              <div>${section.querySelector(\".accordion__body-inner\").innerHTML}<\/div>\n            <\/div>\n          `;\n          resultsContainer.insertAdjacentHTML(\"beforeend\", resultHTML);\n        });\n        block.style.display = \"none\";\n        return; \/\/ Skip the individual Q&A filtering for this block\n      }\n\n      \/\/ Otherwise, filter individual questions\/answers as before\n      sections.forEach(function(section) {\n        const question = section.querySelector(\".accordion__button-text\")?.innerText.toLowerCase() || \"\";\n        const answer = section.querySelector(\".accordion__body-inner\")?.innerText.toLowerCase() || \"\";\n\n        if (question.includes(query) || answer.includes(query)) {\n          resultsFound = true;\n          const resultHTML = `\n            <div class=\"faq-result-item\" style=\"background:#f5f5f5; margin-bottom:10px; padding:15px; border-radius: 10px;\">\n              <strong style=\"display:block; margin-bottom:5px; font-size:14px; color:#666;\">${categoryTitle}<\/strong>\n              <div style=\"font-weight:bold; margin-bottom:5px;\">${section.querySelector(\".accordion__button-text\").innerText}<\/div>\n              <div>${section.querySelector(\".accordion__body-inner\").innerHTML}<\/div>\n            <\/div>\n          `;\n          resultsContainer.insertAdjacentHTML(\"beforeend\", resultHTML);\n        }\n      });\n\n      block.style.display = \"none\";\n    });\n\n    resultsContainer.style.display = \"block\";\n    if (!resultsFound) {\n      resultsContainer.innerHTML = `<p>No results found.<\/p>`;\n    }\n  });\n});\n<\/script>\n\n\n<style>\n.faq-search {\n  margin-bottom: 20px;\n}\n#faqSearch {\n  outline: none;\n  font: inherit;\n  font-size: var(--font-size-input);\n  line-height: var(--line-height-static-md);\n  background-color: transparent;\n  color: rgb(var(--color-heading-text));\n  width: 100%;\n  height: 4.8rem;\n  padding: 0 1.6rem;\n  border: 1px solid rgba(var(--color-border), var(--alpha-border));\n  border-radius: var(--input-border-radius);\n  -webkit-appearance: none;\n  appearance: none;\n  transition: border-color var(--duration-default);\n}\n\n#faqSearch:focus {\n  border-color: rgb(var(--color-heading-text));\n}\n\n\/* Desktop: align FAQ search container with heading *\/\n@media screen and (min-width: 1024px) {\n  .template-page-faq .faq-search-container {\n    max-width: var(--page-width) !important; \/* match heading container width *\/\n    margin-left: auto !important;\n    margin-right: auto !important;\n    padding-left: 0 !important;\n    padding-right: 0 !important;\n  }\n\n  .faq-search-container #faqSearch {\n    width: 100%;\n    display: block;\n    margin: 0 auto 20px auto;\n  }\n\n  #faqResults {\n    max-width: 900px;\n    margin: 0 auto;\n  }\n}\n<\/style>","section_width":"max-w-full","color_scheme":"scheme-1","spacing_top":"4","spacing_bottom":"0"}},"help_sidenav_8gEQtX":{"type":"help-sidenav","name":"Help side nav","settings":{"menu":"help-center-release-theme","section_width":"max-w-narrow","color_scheme":"scheme-2","color_scheme_for_media":"scheme-1","spacing_top":"4","spacing_bottom":"0"}},"accordions_PBRq7B":{"type":"accordions","blocks":{"topic_wtdQp4":{"type":"topic","disabled":true,"settings":{"is_open":true,"title":"Current Sitewide Sale","text":"<h5>11 Year Anniversary Sale | Up to 30% Off Sitewide<\/h5><p><\/p><p>Sale ends Thursday, April 9th @ 11:59PM EST. <strong>15% off sitewide, or 30% off orders of $500 CAD or more<\/strong>, automatically applied at checkout. Discount applies to all items excluding already discounted items and cannot be combined with other promotions. This offer cannot be applied to past purchases. The 15-Day Free Return & Exchange policy for Store Credit applies to eligible items. Please refer to product pages for details.<\/p>","page":""}},"topic_iR6QgP":{"type":"topic","name":"NO PROMOS","settings":{"is_open":true,"title":"Current Sitewide Sale","text":"<p>There are currently no sitewide sales, promos, or offers.<\/p>","page":""}}},"block_order":["topic_wtdQp4","topic_iR6QgP"],"custom_css":[".section__heading {margin-block-end: 1rem;}"],"name":"Accordions - Sitewide Sale T&C","settings":{"heading":"Sitewide <em>Sales<\/em> T&C's","heading_size":"h2","subtext":"<p>All promotions and special offers will have their terms and conditions outlined here. Please review them carefully before completing your purchase.<br\/><br\/><\/p>","layout":"stacked","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"4","spacing_bottom":"1"}},"custom_liquid_eTmNKz":{"type":"custom-liquid","disabled":true,"name":"Custom liquid - Divider Border","settings":{"custom_liquid":"<style>\n\/* Divider border *\/\nhr.divider {\nborder-top: 1px solid #CCCCCC;\n}\nhr {\nmargin: 0;\n}\n<\/style>\n\n<hr class=\"divider\">","section_width":"max-w-narrower","color_scheme":"scheme-5","spacing_top":"0","spacing_bottom":"0"}},"accordions_89x4mb":{"type":"accordions","blocks":{"topic_wAEWU8":{"type":"topic","settings":{"is_open":false,"title":"Jewelry","text":"<p>For hygienic reasons, all jewelry is considered final sale and cannot be returned or exchanged. Please choose carefully before completing your order.<\/p>","page":""}},"topic_Cx7QdX":{"type":"topic","settings":{"is_open":false,"title":"Volume Underskirt","text":"<p>As an undergarment, the Volume Underskirt is final sale and ineligible for returns or exchanges. This ensures the highest standard of hygiene and care.<\/p>","page":""}},"topic_Cbd7hd":{"type":"topic","settings":{"is_open":false,"title":"Clearance Items","text":"<p>Any items purchased at a discounted or clearance price are final sale. These cannot be returned or exchanged, even if purchased during promotional events.<\/p>","page":""}},"topic_4eqDTY":{"type":"topic","settings":{"is_open":false,"title":"Clutches","text":"<p>Due to the delicate nature of our clutches, they are final sale. These items cannot be returned or exchanged once purchased.<\/p>","page":""}},"topic_LCjXnd":{"type":"topic","settings":{"is_open":false,"title":"Sitewide Sales & Promotions","text":"<p>Items purchased during sitewide sales or promotions are final sale, unless otherwise stated in the promotion details. Please review each promotion’s terms carefully before placing your order.<\/p>","page":""}}},"block_order":["topic_wAEWU8","topic_Cx7QdX","topic_Cbd7hd","topic_4eqDTY","topic_LCjXnd"],"custom_css":[".section__heading {margin-block-end: 1rem;}"],"name":"Accordions - Final Sale Items","settings":{"heading":"<em>Final<\/em> Sale Items","heading_size":"h3","subtext":"<p>Items marked as <em>Final Sale<\/em> will be clearly indicated on their respective product pages. During sitewide promotions, please refer to this page for details on any additional items that may be designated as final sale.<br\/><br\/><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"","spacing_top":"4","spacing_bottom":"6"}}},"order":["page_banner_qgUdfW","custom_liquid_nULLJ6","main","custom_liquid_mgMANH","custom_liquid_yp79UF","help_sidenav_8gEQtX","accordions_PBRq7B","custom_liquid_eTmNKz","accordions_89x4mb"]}