/** Shopify CDN: Minification failed

Line 324:4 Expected ":"

**/
/* =============================================================
   one-community-join-cta.css
   Scoped styles for the One Community Join CTA section
   Stacked / 3D coverflow carousel on mobile/tablet -- same state-machine
   as sickfit-built-for-home.css (is-active / is-prev / is-next / is-far /
   is-far-left). On desktop (min-width: 990px) it switches to a static
   grid, matching sickfit-built-for-home.css's own desktop behavior
   (unlike wholesale-carousel.css, which stays in coverflow mode at every
   breakpoint). Each stacked unit is the full card + its own CTA button
   riding along together.
   ============================================================= */

.one-community-join-cta {
  --occ-header-bg: transparent;
  --occ-header-text: inherit;
  --occ-header-align: left;
  --occ-header-max-width: 720px;
  --occ-padding-top: 80px;
  --occ-padding-bottom: 80px;
  --occ-padding-top-mobile: 56px;
  --occ-padding-bottom-mobile: 56px;
  --occ-accent: #e72027;
  --occ-item-width: 200px;
  --occ-item-height: 330px;

  background-color: var(--occ-header-bg);
  color: var(--occ-header-text);
  padding-top: var(--occ-padding-top);
  padding-bottom: var(--occ-padding-bottom);
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  .one-community-join-cta {
    padding-top: var(--occ-padding-top-mobile);
    padding-bottom: var(--occ-padding-bottom-mobile);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .one-community-join-cta {
    --occ-item-width: 280px;
    --occ-item-height: 430px;
  }
}

@media screen and (min-width: 990px) {
  .one-community-join-cta {
    --occ-item-width: 320px;
    --occ-item-height: 480px;
  }
}

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
.one-community-join-cta__header {
  max-width: var(--occ-header-max-width);
  margin: 0 0 3.2rem;
  text-align: var(--occ-header-align);
}

.one-community-join-cta[data-header-align='center'] .one-community-join-cta__header {
  margin-left: auto;
  margin-right: auto;
}

.one-community-join-cta__kicker {
  margin: 0 0 0.8rem;
  font-weight: 900;
  font-size: 1.4rem;
  font-family: Gilroy, sans-serif;
  color: #e10000;
}

.one-community-join-cta__title {
  margin: 0;
  font-family: Gilroy, sans-serif !important;
  font-weight: 900;
  color: var(--occ-header-text);
}

.one-community-join-cta__description {
  margin: 1.2rem 0 0;
  color: var(--occ-header-text);
}

/* ---------------------------------------------------------------
   Viewport / stage -- 3D coverflow
--------------------------------------------------------------- */
.one-community-join-cta__viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.one-community-join-cta__stage {
  position: relative;
  width: 100%;
  height: calc(var(--occ-item-height) + 2rem);
  perspective: 1400px;
  perspective-origin: 50% 50%;
  margin: 0 auto;
}


/* ---------------------------------------------------------------
   Stacked item (card + its own button, moving together)
--------------------------------------------------------------- */
.one-community-join-cta__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--occ-item-width);
  height: var(--occ-item-height);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.6s cubic-bezier(0.22, 0.68, 0, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  will-change: transform, opacity;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.one-community-join-cta__item.is-active,
.one-community-join-cta__item.is-prev,
.one-community-join-cta__item.is-next,
.one-community-join-cta__item.is-far,
.one-community-join-cta__item.is-far-left {
  pointer-events: auto;
  margin-bottom: 0;
}

.one-community-join-cta__item.is-active {
  transform: translate(-50%, -50%) scale(1.08) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
  z-index: 5;
  cursor: default;
}

.one-community-join-cta__item.is-prev {
  transform: translate(-150%, -50%) scale(0.88) rotateY(24deg) rotateZ(-3deg);
  opacity: 0.75;
  z-index: 3;
}

.one-community-join-cta__item.is-next {
  transform: translate(50%, -50%) scale(0.88) rotateY(-24deg) rotateZ(3deg);
  opacity: 0.75;
  z-index: 3;
}

.one-community-join-cta__item.is-far {
  transform: translate(120%, -50%) scale(0.78) rotateY(-34deg) rotateZ(5deg);
  opacity: 0.45;
  z-index: 1;
  filter: blur(1px);
}

.one-community-join-cta__item.is-far-left {
  transform: translate(-220%, -50%) scale(0.78) rotateY(34deg) rotateZ(-5deg);
  opacity: 0.45;
  z-index: 1;
  filter: blur(1px);
}

/* ---------------------------------------------------------------
   Card
--------------------------------------------------------------- */
.one-community-join-cta__card {
  position: relative;
  flex: 1;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
  isolation: isolate;
  background-color: #1a1a1a;
  background-image: var(--occ-card-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}

.one-community-join-cta__item.is-active .one-community-join-cta__card {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}

/*
  Card background image: the resolved image URL is passed in as the
  `--occ-card-bg-image` custom property (set inline on the card in
  the .liquid file) and consumed here as a real `background-image`.
  Going through a variable -- instead of a literal inline
  `background-image` -- is what lets the mobile breakpoint below
  swap in `--occ-card-bg-image-mobile`.
*/
@media screen and (max-width: 749px) {
  .one-community-join-cta__card[data-has-mobile-image] {
    background-image: var(--occ-card-bg-image-mobile);
  }
}

/*
  Rendered as a ::after pseudo-element rather than a real <div>: this
  theme's base.css hides any empty div/section/etc. via `:empty {
  display: none; }`, and an aria-hidden overlay element has no
  content of its own. Generated content is never matched by :empty.
*/
.one-community-join-cta__card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.one-community-join-cta__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem;
  color: #ffffff;
  text-align: center;
}

.one-community-join-cta__card-kicker {
  margin: 0 0 0.4rem;
  font-family: Gilroy, sans-serif;
  color: #e72027;
  font-weight:900;
  font-size: 1.1rem;
}

.one-community-join-cta__card-title {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 900;
  font-family: Gilroy, sans-serif;
  color: #ffffff;
}

.one-community-join-cta__card-subtitle {
  margin: 0.6rem 0 0;
  font-family: Poppins, sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.4;
}

/* ---------------------------------------------------------------
   CTA button
--------------------------------------------------------------- */
.one-community-join-cta__button {
  flex-shrink: 0;
  margin-top:0;
  border-radius: 0px 0px 8px 8px;
  transition: box-shadow 0.25s ease;
}

.one-community-join-cta__button:focus-visible {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
  box-shadow: var(--focused-base-box-shadow);
}

.one-community-join-cta__item:focus-within .one-community-join-cta__button {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.15);
}

.one-community-join-cta__item:focus-visible .one-community-join-cta__card {
  outline: 2px solid var(--occ-accent);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------
   Arrows
--------------------------------------------------------------- */
.one-community-join-cta__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #211e23;
  cursor: pointer;
  z-index: 6;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.one-community-join-cta__arrow:hover,
.one-community-join-cta__arrow:focus-visible {
  background: var(--occ-accent);
  border-color: var(--occ-accent);
  color: #ffffff;
}

.one-community-join-cta__arrow--prev {
  left: 0;
  ar
}

.one-community-join-cta__arrow--next {
  right: 0;
}

.one-community-join-cta__arrow svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2.5;
}

/* ---------------------------------------------------------------
   Dots
--------------------------------------------------------------- */
.one-community-join-cta__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.4rem;
}

.one-community-join-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(var(--color-foreground), 0.25);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.one-community-join-cta__dot:focus-visible {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
}

.one-community-join-cta__dot.is-active {
  background: var(--occ-accent);
  transform: scale(1.25);
}

/* ---------------------------------------------------------------
   Mobile -- tighter geometry, no horizontal overflow
--------------------------------------------------------------- */
@media screen and (max-width: 749px) {
  .page-width:has(.one-community-join-cta__viewport) {
    overflow-x: hidden;
  }

  .one-community-join-cta__item.is-prev {
    transform: translate(-128%, -50%) scale(0.82) rotateY(20deg) rotateZ(-2deg);
  }

  .one-community-join-cta__item.is-next {
    transform: translate(28%, -50%) scale(0.82) rotateY(-20deg) rotateZ(2deg);
  }

  .one-community-join-cta__item.is-far {
    transform: translate(85%, -50%) scale(0.7) rotateY(-28deg) rotateZ(4deg);
  }

  .one-community-join-cta__item.is-far-left {
    transform: translate(-185%, -50%) scale(0.7) rotateY(28deg) rotateZ(-4deg);
  }

  .one-community-join-cta__arrow {
    width: 2.8rem;
    height: 2.8rem;
  }

  .one-community-join-cta__card-content {
    padding: 1.2rem;
  }
}

/* ---------------------------------------------------------------
   Desktop -- static grid, no carousel
   (mobile and tablet keep the coverflow carousel above)
--------------------------------------------------------------- */
@media screen and (min-width: 990px) {
  .one-community-join-cta__viewport {
    overflow: visible;
  }

  .one-community-join-cta__stage {
    height: auto;
    perspective: none;
    display: grid;
    grid-template-columns: repeat(var(--occ-columns, 3), 1fr);
    gap: 2.4rem;
    width: 85%;
    margin:0 auto;
  }

  .one-community-join-cta__item {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: none;
    height: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1 !important;
    cursor: default;
    transition: 1s;
  }

  .one-community-join-cta__item.is-active .one-community-join-cta__card {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .one-community-join-cta__arrow,
  .one-community-join-cta__dots {
    display: none;
  }
}

/* ---------------------------------------------------------------
   Reduced motion
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .one-community-join-cta__item {
    transition: opacity 0.3s ease;
  }

  .one-community-join-cta__item.is-active {
    transform: translate(-50%, -50%) scale(1) rotateY(0deg) rotateZ(0deg);
  }

  .one-community-join-cta__item.is-prev {
    transform: translate(-130%, -50%) scale(0.88) rotateY(0deg) rotateZ(0deg);
  }

  .one-community-join-cta__item.is-next {
    transform: translate(30%, -50%) scale(0.88) rotateY(0deg) rotateZ(0deg);
  }

  .one-community-join-cta__item.is-far {
    transform: translate(90%, -50%) scale(0.78) rotateY(0deg) rotateZ(0deg);
    filter: none;
  }

  .one-community-join-cta__item.is-far-left {
    transform: translate(-190%, -50%) scale(0.78) rotateY(0deg) rotateZ(0deg);
    filter: none;
  }

  .one-community-join-cta__arrow,
  .one-community-join-cta__dot {
    transition: none;
  }
}
