{"sections":{"page_banner_DWqQr7":{"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_brDzDR":{"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"}},"page_banner_R4GaUr":{"type":"page-banner","disabled":true,"custom_css":[".media img {opacity: 0.7;}"],"name":"t:sections.page-banner.name","settings":{"enable_transparent_header":true,"heading":"Find Your Perfect Fit","heading_size":"h2","text":"<p>We’ve got you covered when it comes to sizing. Every piece is thoughtfully designed for easy adjustments—and if it’s still not the right fit, enjoy FREE 15-Day Exchanges on us!<\/p>","show_default_description":true,"show_on_description":"both","content_position":"center","content_alignment":"center","media_position":"background","page_menu":"","enable_breadcrumbs":true,"section_height":"100svh","content_width":"50%","image":"shopify:\/\/shop_images\/IMG_1706-2.png","video_external":"","show_controls_on_video":false,"section_height_mobile":"50svh","image_mobile":"shopify:\/\/shop_images\/IMG_1706-2.png","video_external_mobile":"","show_controls_on_video_mobile":false,"section_width":"max-w-narrow","color_scheme":"scheme-5","color_scheme_for_media":"scheme-6","spacing_top":"2","spacing_bottom":"6"}},"help_sidenav_qFd7Vr":{"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"}},"main":{"type":"main-page","disabled":true,"settings":{"breadcrumbs":true,"show_page_title":true,"page_title_alignment":"text-center","info_title":"","info_content":"","section_width":"max-w-narrower","color_scheme":"","spacing_top":"2","spacing_bottom":"2"}},"custom_liquid_BYdbPz":{"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<\/style>","section_width":"max-w-page","color_scheme":"","spacing_top":"0","spacing_bottom":"0"}},"custom_liquid_YztcwQ":{"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 Size Guides...\">\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"}},"seo_content_GLiRrf":{"type":"seo-content","name":"t:sections.seo-content.name","settings":{"section_layout":"normal","heading":"Find your <em>perfect<\/em> fit.","heading_size":"h2","text":"<p>We’ve got you covered when it comes to sizing. Every piece is thoughtfully designed for easy adjustments—and if it’s still not the right fit, enjoy FREE 15-Day Exchanges on us!<\/p>","content_alignment":"start","section_width":"max-w-page","color_scheme":"","spacing_inner":"4","spacing_top":"4","spacing_bottom":"2"}},"accordions_mypX88":{"type":"accordions","blocks":{"topic_AccDRp":{"type":"topic","settings":{"is_open":false,"title":"Size Chart","text":"<p>s<\/p>","page":"{{ metaobjects.sizing_page[\"skirts-sizing\"].sizing_chart.value }}"}},"topic_r9jHFn":{"type":"topic","settings":{"is_open":false,"title":"How to Measure","text":"<p>d<\/p>","page":"{{ metaobjects.sizing_page[\"skirts-sizing\"].how_to_measure.value }}"}}},"block_order":["topic_AccDRp","topic_r9jHFn"],"name":"Skirt Sizing","settings":{"heading":"Lehenga Skirts <em>Sizing <\/em>Guide","heading_size":"h3","subtext":"<p>Elevate-the-moment lehenga skirts—made for weddings, receptions, and every spotlight moment.<\/p><p>Inclusive sizes XXS–XXL with Standard & Short lengths for a clean hem. Finished with a secure zipper, drawstring, and hook so your fit stays flawless all night.<\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"","spacing_top":"1","spacing_bottom":"2"}},"accordions_JCHKrQ":{"type":"accordions","blocks":{"topic_qmQp4x":{"type":"topic","settings":{"is_open":false,"title":"Size Chart","text":"<p>Descriptive topic content body text<\/p>","page":"{{ metaobjects.sizing_page[\"blouse-sizing\"].sizing_chart.value }}"}},"topic_aMaqEU":{"type":"topic","settings":{"is_open":false,"title":"How to Measure","text":"<p>d<\/p>","page":"{{ metaobjects.sizing_page[\"blouse-sizing\"].how_to_measure.value }}"}}},"block_order":["topic_qmQp4x","topic_aMaqEU"],"name":"Blouse Sizing","settings":{"heading":"Blouses <em>Sizing <\/em>Guide","heading_size":"h3","subtext":"<p>Your go-to blouse, cut for clean lines and everyday ease. Available in inclusive sizes XXS–XXL for a confident, comfortable fit.<br\/><br\/>Finished with our signature gold back zipper and built-in tailoring room: 1.5″ of extra fabric on both sides so a tailor can open it up (up to about one size) for that near-custom feel.<\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"","spacing_top":"2","spacing_bottom":"2"}},"accordions_BiTRka":{"type":"accordions","blocks":{"topic_F9kKXW":{"type":"topic","settings":{"is_open":false,"title":"Size Chart","text":"<p>Descriptive topic content body text<\/p>","page":"{{ metaobjects.sizing_page[\"suits-sizing\"].sizing_chart.value }}"}},"topic_DJFRVe":{"type":"topic","settings":{"is_open":false,"title":"How to Measure","text":"<p>d<\/p>","page":"{{ metaobjects.sizing_page[\"suits-sizing\"].how_to_measure.value }}"}}},"block_order":["topic_F9kKXW","topic_DJFRVe"],"name":"Suit Sizing","settings":{"heading":"Suits <em>Sizing <\/em>Guide","heading_size":"h3","subtext":"<p>Each Suit includes a top, matching bottom, and a complementary dupatta for a complete, effortless look—pieces are designed to be worn together (no mix-and-match).<br\/><br\/>Available in inclusive sizes XXS–XXL. The suit top features a 1.5″ let-out for comfortable adjustments if needed, offering a near-custom fit with simple tailoring.<\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"","spacing_top":"2","spacing_bottom":"2"}},"accordions_iFT8Hg":{"type":"accordions","blocks":{"topic_9VbGVg":{"type":"topic","settings":{"is_open":false,"title":"Size Chart","text":"<p>Descriptive topic content body text<\/p>","page":"{{ metaobjects.sizing_page[\"sarees-sizing\"].sizing_chart.value }}"}},"topic_befDjk":{"type":"topic","settings":{"is_open":false,"title":"How to Measure","text":"<p>d<\/p>","page":"{{ metaobjects.sizing_page[\"sarees-sizing\"].how_to_measure.value }}"}}},"block_order":["topic_9VbGVg","topic_befDjk"],"name":"Saree Sizing","settings":{"heading":"Sarees <em>Sizing <\/em>Guide","heading_size":"h3","subtext":"<p>Discover our Saree lineup, offering both classic Traditional Drapes and TSR’s signature Easy-Drape styles.<\/p><p>Designed for every preference, from timeless styling to modern ease, each piece blends elegance, comfort, and thoughtful construction for a beautifully refined look.<\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"6"}},"accordions_4pWm4x":{"type":"accordions","blocks":{"topic_NLeh83":{"type":"topic","settings":{"is_open":false,"title":"Size Chart","text":"<p>Descriptive topic content body text<\/p>","page":"{{ metaobjects.sizing_page[\"sizing-skirts\"].sizing_chart.value }}"}},"topic_g9JJpw":{"type":"topic","settings":{"is_open":false,"title":"How to Measure","text":"<p>d<\/p>","page":"{{ metaobjects.sizing_page[\"sizing-skirts\"].how_to_measure.value }}"}}},"block_order":["topic_NLeh83","topic_g9JJpw"],"disabled":true,"name":"Skirt Sizing","settings":{"heading":"Lehenga Skirts <em>Sizing <\/em>Guide","heading_size":"h3","subtext":"<p>Add a short description for this section.<\/p>","layout":"stacked","section_width":"max-w-page","color_scheme":"","spacing_top":"1","spacing_bottom":"6"}}},"order":["page_banner_DWqQr7","custom_liquid_brDzDR","page_banner_R4GaUr","help_sidenav_qFd7Vr","main","custom_liquid_BYdbPz","custom_liquid_YztcwQ","seo_content_GLiRrf","accordions_mypX88","accordions_JCHKrQ","accordions_BiTRka","accordions_iFT8Hg","accordions_4pWm4x"]}