{"sections":{"page_banner_wBY9TV":{"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_34hBnX":{"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"}},"help_sidenav_Jy8Pt6":{"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"}},"custom_liquid_f4HJjm":{"type":"custom-liquid","name":"Code - Spacing Fix","settings":{"custom_liquid":"<style>\n.accordion__body p {\nmargin-block-end: 1rem !important;\n}\n<\/style>","section_width":"max-w-page","color_scheme":"","spacing_top":"0","spacing_bottom":"0"}},"custom_liquid_FynhWx":{"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_xAdFKn":{"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 FAQs...\">\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 #a9a7a7;\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: var(--page-width);\n  }\n}\n<\/style>","section_width":"max-w-full","color_scheme":"scheme-1","spacing_top":"4","spacing_bottom":"0"}},"custom_liquid_YmbwXW":{"type":"custom-liquid","disabled":true,"name":"Custom liquid - 2 Column Desktop","settings":{"custom_liquid":"<style>\n@media screen and (min-width: 1024px) {\n  \/* Two-column layout *\/\n  .container.max-w-page {\n    display: grid;\n    grid-template-columns: 30% 1fr; \/* heading + accordion *\/\n    gap: 40px;\n    align-items: flex-start;\n  }\n\n  \/* Heading *\/\n  .container.max-w-page .section__heading {\n    margin: 0;\n    text-align: left;\n  }\n}\n\n.container.max-w-page  .accordion {\n    display: block;\n    background-color: #fafafa !important;\nborder-radius: 10px;\n    padding: 7% 5% !important;\n  }\n\n<\/style>","section_width":"max-w-fluid","color_scheme":"","spacing_top":"0","spacing_bottom":"0"}},"seo_content_gkcAeQ":{"type":"seo-content","name":"t:sections.seo-content.name","settings":{"section_layout":"normal","heading":"Frequently Asked Questions","heading_size":"h2","text":"<p>New to TSR or have a quick question? Explore our help center for sizing tips, order support, tracking, and app how-tos.<\/p>","content_alignment":"start","section_width":"max-w-page","color_scheme":"","spacing_inner":"2","spacing_top":"4","spacing_bottom":"2"}},"accordions_AiXAzL":{"type":"accordions","blocks":{"topic_pggVMx":{"type":"topic","settings":{"is_open":false,"title":"Why did you lower the prices in the U.S?","text":"<p>As of August 29, 2025, the U.S. introduced new tariffs on international shipments. We’ve always taken pride in offering all-inclusive pricing with no surprises at checkout. Unfortunately, these new tariffs are higher than what we can fully absorb.<br\/><br\/>Instead of passing the entire cost on to you, we’re sharing the impact. To keep shopping affordable,<strong>we’ve reduced all U.S. product prices by 25%.<\/strong>This ensures your order total remains fair, transparent, and still delivers the best value possible.<\/p>","page":""}},"topic_EYP9Vh":{"type":"topic","settings":{"is_open":false,"title":"Do I have to pay duties & taxes now?","text":"<p>Yes, duties and taxes are now shown at checkout and paid by the customer. The good news? Because duties are calculated on product prices—and we’ve already dropped all prices by 25%—the duties you’ll pay are <strong>lower than they would have been without the price decrease<\/strong>.<\/p>","page":""}},"topic_n8XWXN":{"type":"topic","settings":{"is_open":false,"title":"Is this change permanent?","text":"<p>Not necessarily. We’ve always prided ourselves on covering duties and taxes for our U.S. customers, and if these new tariffs are reversed in the future, we’ll go back to our original model where we cover all duties. Until then, you can enjoy <strong>reduced product prices <\/strong>while these changes are in place.<\/p>","page":""}}},"block_order":["topic_pggVMx","topic_EYP9Vh","topic_n8XWXN"],"disabled":true,"name":"FAQ Topic - US PRICING","settings":{"heading":"U.S. Pricing & Duties Update","heading_size":"h3","subtext":"<p><strong>[UPDATED 12\/16\/2025]<\/strong><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"","spacing_top":"1","spacing_bottom":"2"}},"15d37dcd-dfe5-404c-80f1-8f76c2017e23":{"type":"accordions","blocks":{"template--17062096503099__15d37dcd-dfe5-404c-80f1-8f76c2017e23-16696259764c4b7b62-0":{"type":"topic","repeater":"{{ page.metafields.custom.faq_items.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["template--17062096503099__15d37dcd-dfe5-404c-80f1-8f76c2017e23-16696259764c4b7b62-0"],"name":"FAQ Topic - Sizing","settings":{"heading":"Sizing","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_7YX9MG":{"type":"accordions","blocks":{"topic_nMn4fm":{"type":"topic","repeater":"{{ page.metafields.custom.shipping_delivery_faq_items.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_nMn4fm"],"name":"FAQ Topic - Shipping & Delivery","settings":{"heading":"Shipping & Delivery","heading_size":"h3","subtext":"<p><strong>[UPDATED 02\/24\/26]<\/strong><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_YEwCJE":{"type":"accordions","blocks":{"topic_RNRFF9":{"type":"topic","repeater":"{{ page.metafields.custom.return_exchanges_faq_items.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_RNRFF9"],"name":"FAQ Topic - Returns & Exchanges","settings":{"heading":"Returns & Exchanges","heading_size":"h3","subtext":"<p><strong>[UPDATED 02\/24\/26]<\/strong><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_aefg8U":{"type":"accordions","blocks":{"topic_iiYRQb":{"type":"topic","repeater":"{{ page.metafields.custom.orders_purchases_faq_items.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_iiYRQb"],"name":"FAQ Topic - Orders & Purchases","settings":{"heading":"Orders & Purchases","heading_size":"h3","subtext":"<p><strong>[UPDATED 02\/24\/26]<\/strong><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_B3bDhH":{"type":"accordions","blocks":{"topic_kVUtFh":{"type":"topic","repeater":"{{ page.metafields.custom.faq_product_care.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_kVUtFh"],"name":"FAQ Topic - Product Care","settings":{"heading":"Product Care","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_LTHMjE":{"type":"accordions","blocks":{"topic_4T44P6":{"type":"topic","repeater":"{{ page.metafields.custom.faq_tsr_package_protection.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_4T44P6"],"disabled":true,"name":"FAQ Topic - TSR Package Protection","settings":{"heading":"TSR Package Protection","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_DFPPpY":{"type":"accordions","blocks":{"topic_cLQ6ae":{"type":"topic","repeater":"{{ page.metafields.custom.faq_mobile_app.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_cLQ6ae"],"name":"FAQ Topic - Mobile App","settings":{"heading":"Mobile App","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_HTTLb7":{"type":"accordions","blocks":{"topic_F6cajG":{"type":"topic","repeater":"{{ page.metafields.custom.faq_payment_promotion.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_F6cajG"],"name":"FAQ Topic - Payments & Promotions","settings":{"heading":"Payments & Promotions","heading_size":"h3","subtext":"<p><strong>[UPDATED 02\/24\/26]<\/strong><\/p>","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_PhLB7p":{"type":"accordions","blocks":{"topic_K9Dmkf":{"type":"topic","repeater":"{{ page.metafields.custom.faq_account_information.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_K9Dmkf"],"name":"FAQ Topic - Account Information","settings":{"heading":"Account Information","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_ePfBWU":{"type":"accordions","blocks":{"topic_Hhttrm":{"type":"topic","repeater":"{{ page.metafields.custom.faq_gifting_giftcards.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_Hhttrm"],"name":"FAQ Topic - Gifting & Giftcards","settings":{"heading":"Gifting & Giftcards","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_E9JRdV":{"type":"accordions","blocks":{"topic_dqyH9R":{"type":"topic","repeater":"{{ page.metafields.custom.faq_sustainability.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_dqyH9R"],"name":"FAQ Topic - Sustainability","settings":{"heading":"Sustainability","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_3LrEQ9":{"type":"accordions","blocks":{"topic_Bck7tp":{"type":"topic","repeater":"{{ page.metafields.custom.faq_careers.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_Bck7tp"],"name":"FAQ Topic - Careers","settings":{"heading":"Careers","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_zAJhy8":{"type":"accordions","blocks":{"topic_D7hFhg":{"type":"topic","repeater":"{{ page.metafields.custom.faq_privacy_terms.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_D7hFhg"],"name":"FAQ Topic - Privacy & Terms","settings":{"heading":"Privacy & Terms","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_UCGF4A":{"type":"accordions","blocks":{"topic_8jDUm6":{"type":"topic","repeater":"{{ page.metafields.custom.faq_customization_tailoring.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_8jDUm6"],"name":"FAQ Topic - Customizations & Tailoring","settings":{"heading":"Customizations & Tailoring","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"2"}},"accordions_iBPBjP":{"type":"accordions","blocks":{"topic_fNCg7h":{"type":"topic","repeater":"{{ page.metafields.custom.faq_maternity.value }}","settings":{"is_open":false,"title":"{{ block.repeater.question.value }}","text":"{{ block.repeater.answer | metafield_tag }}","page":""}}},"block_order":["topic_fNCg7h"],"name":"FAQ Topic - Maternity","settings":{"heading":"Maternity","heading_size":"h3","subtext":"","layout":"columns","section_width":"max-w-page","color_scheme":"scheme-1","spacing_top":"2","spacing_bottom":"6"}}},"order":["page_banner_wBY9TV","custom_liquid_34hBnX","help_sidenav_Jy8Pt6","custom_liquid_f4HJjm","custom_liquid_FynhWx","custom_liquid_xAdFKn","custom_liquid_YmbwXW","seo_content_gkcAeQ","accordions_AiXAzL","15d37dcd-dfe5-404c-80f1-8f76c2017e23","accordions_7YX9MG","accordions_YEwCJE","accordions_aefg8U","accordions_B3bDhH","accordions_LTHMjE","accordions_DFPPpY","accordions_HTTLb7","accordions_PhLB7p","accordions_ePfBWU","accordions_E9JRdV","accordions_3LrEQ9","accordions_zAJhy8","accordions_UCGF4A","accordions_iBPBjP"]}