/** Shopify CDN: Minification failed

Line 97:17 Expected identifier but found whitespace
Line 97:19 Unexpected "{"
Line 97:41 Expected ":"
Line 97:46 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-counter-stats (INDEX:18) */
.purity-counter-section {
    width: 100%;
    box-sizing: border-box;
    display: block !important;
  }

  .purity-counter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .purity-counter__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .purity-counter__number {
    font-size: 4.5rem;
    line-height: 1.1;
    display: inline-block;
    margin: 0;
  }

  .purity-counter__label {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 12px 0 0 0;
    word-break: break-word;
    max-width: 250px;
  }

  @media screen and (max-width: 989px) {
    .purity-counter__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 20px;
    }
    .purity-counter__number {
      font-size: 3.5rem;
    }
  }

  @media screen and (max-width: 749px) {
    .purity-counter__grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 35px;
    }
  }
/* END_SECTION:custom-counter-stats */

/* START_SECTION:custom (INDEX:23) */
.purity-marquee-container {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .purity-marquee__wrapper {
    display: flex;
    width: max-content;
    white-space: nowrap;
    /* Track par direct animation jo overlapping rokti hai */
    animation: var(--marquee-direction, matrix-normal) 28s linear infinite;
  }

  .purity-marquee__wrapper:hover {
    animation-play-state: paused;
  }

  .purity-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    flex-shrink: 0;
    /* Gap ko margin ke taur par handle kiya taaki overlapping na ho */
    margin-right: {{ gap_between_elements }}px; 
  }

  .purity-marquee-item :is(p, h1, h2, h3, h4, h5, h6, span, div) {
    white-space: nowrap !important;
    margin: 0;
  }

  .purity-marquee-item * {
    max-width: none !important;
  }

  /* Right to Left (Normal) - 100% Perfect Loop Calculation */
  @keyframes matrix-normal {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-20%, 0, 0); /* 5 Clones ke mutabik seamless split */
    }
  }

  /* Left to Right (Reverse) - 100% Perfect Loop Calculation */
  @keyframes matrix-reverse {
    0% {
      transform: translate3d(-20%, 0, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .purity-marquee__wrapper {
      animation: none !important;
      overflow-x: auto;
    }
  }
/* END_SECTION:custom */

/* CSS from block stylesheet tags */
/* START_BLOCK:map (INDEX:215) */
.map-iframe {
    width: 100%;
    height: 100%;
    min-height: var(--item-height);
    border: 0;
  }
/* END_BLOCK:map */

/* START_BLOCK:page (INDEX:218) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .page-placeholder {
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:page */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:jumbo-text (INDEX:262) */
.jumbo-text-space {
    display: inline-flex;
    width: 0.5ch;
  }

  :is(.jumbo-text-char, .jumbo-text-line) {
    display: inline-flex;
  }
/* END_SNIPPET:jumbo-text */