null Skip to main content

Healthy Posture Store —Accessibility Statement

Last Updated: January 2025

Healthy Posture Store is committed to ensuring that our website is accessible to all people, including individuals with disabilities. We strive to provide a positive online experience for every visitor, and we continually work to improve the usability and accessibility of our site.

Our Commitment

We aim to follow Web Content Accessibility Guidelines (WCAG) 2.1 Level AA, which outlines best practices for making web content more accessible to individuals with vision, hearing, cognitive, and motor impairments.

Our efforts include:

  • Clear navigation and page structure
  • Sufficient color contrast
  • Keyboard-friendly functionality
  • Descriptive alt text for product images
  • Support for screen readers
  • Resizable text
  • Logical form labels and instructions
  • Reducing motion and animation where possible

Ongoing Improvements

Accessibility is an ongoing process. We regularly review our website and coordinate improvements with our development team to identify and fix accessibility issues as they arise.

If you experience a problem or find a feature that is not fully accessible, we want to hear from you.

Feedback & Assistance

If you need help accessing any part of our website, or would like to report an accessibility issue, please contact us:

info@healthyposturestore.com
(773) 596-5625
2554 W Lawrence Avenue, Chicago IL 60625

We will respond as quickly as possible and make every reasonable effort to provide the information, item, or service you need.

Third-Party Providers

Some areas of our site rely on third-party tools (such as payment processors, embedded maps, or forms). While we encourage our partners to meet WCAG guidelines, we cannot control or guarantee the accessibility of these services.

Commitment to Equal Access

Healthy Posture Store believes everyone deserves a comfortable, accessible experience—online and in person. We remain committed to improving accessibility and welcome your feedback.

// // jQuery only ships "swing"/"linear" — register a real cubic // ease-in-out so open/close accelerates and settles smoothly // instead of moving at a near-constant speed. /* ========================================== WRAP EACH ACCORDION'S CONTENT INTO ONE PANEL Previously every sibling of .form-label (each swatch tile, the message span, etc.) was slid up/down as its own separate jQuery height animation — with a flex-wrapped row of swatches that recalculates row height as each tile grows, those many small independent tweens finished at slightly different times, which is what looked like "opens a little, then the rest pops in". Two elements, not one: the outer panel is the clipping/animation target, the inner one carries the flex-wrap layout the tiles used to inherit from .form-field. ========================================== */ // scrollHeight reports the panel's true, full content height even // while it's visually clipped by max-height + overflow:hidden, so // this is always measuring the real target regardless of current // state — that's what makes the animation reach exactly "full", // instead of the grid-template-rows technique which could fall // short or jump for large height changes. /* ========================================== ACCORDION (scoped to the options wrapper) ========================================== */ // On mobile especially, collapsing a big accordion above this one // shrinks the page and shoves everything below (including the panel // that's opening) up or down the screen, so the tapped label can end // up scrolled out of view. Lock the label's on-screen position for // the duration of the animation so it can't drift while panels resize. // Open the clicked panel and close the others at the same time, // each tweening its own measured height — so a big accordion // closing and a small one opening both animate at the same // duration/easing instead of one snapping shut. /* ========================================== MORE OPTIONS CLICK ========================================== */ /* ========================================== FIRST ACCORDION OPEN BY DEFAULT ========================================== */ // Set instantly (no animation) to its measured full height, using // the same scrollHeight measurement openPanel() uses, so the // default-open state matches what a real "open" looks like. //