/** Shopify CDN: Minification failed

Line 13:30 Expected ":"

**/
/* Soul Comfort — Figma featured collection
   Uses Dawn's page-width, card-product snippet and native slider-component. */

.soul-featured-collection {
  --sfc-card-width: 30.2rem;
  --sfc-card-gap: 1.6rem;
  --sfc-copy-width: 33.1rem;
  --sfc-layout-gap: 4.8rem;rem;

  position: relative;
  overflow: hidden;
  padding-top: var(--sfc-padding-top-mobile);
  padding-bottom: var(--sfc-padding-bottom-mobile);
  color: var(--sfc-text);
  background: var(--sfc-background);
}

.soul-featured-collection__layout {
  display: grid;
  min-width: 0;
  align-items: center;
}

.soul-featured-collection__content {
  display: flex;
  width: 100%;
  max-width: var(--sfc-copy-width);
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

.soul-featured-collection__eyebrow {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.4rem 1rem;
  border-radius: 10rem;
  color: var(--sfc-text);
  background: var(--sfc-badge-background);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.soul-featured-collection__eyebrow-icon {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 1.6rem;
  align-items: center;
  justify-content: center;
  color: var(--sfc-accent);
}

.soul-featured-collection__eyebrow-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.soul-featured-collection__heading {
  max-width: var(--sfc-copy-width);
  margin: 0;
  color: var(--sfc-text);
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2857;
  letter-spacing: -0.02em;
}

/* .soul-featured-collection__heading .highlight {
  text-decoration-line: underline;
  text-decoration-color: var(--sfc-accent);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.4rem;
} */


/* .soul-featured-collection__heading .highlight {
  position: relative;
  display: inline-block;
}

.soul-featured-collection__heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: #D4662C;
  border-radius: 2px;
} */


.soul-featured-collection__heading .highlight {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.soul-featured-collection__heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
  height: 1rem;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M1 5 C3 8 5 2 7 5 C9 8 11 2 13 5 C16 8 18 3 21 5 C24 7 27 3 30 5 C33 7 36 3 39 5 C42 8 45 2 48 5 C51 8 54 2 57 5 C60 8 63 3 66 5 C69 7 72 3 75 5 C78 8 81 2 84 5 C87 8 90 3 93 5 C96 7 98 4 99 5' fill='none' stroke='%23D4662C' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.soul-featured-collection__button {
  display: inline-flex;
  min-width: 16rem;
  min-height: 4.8rem;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  border: 0.1rem solid var(--sfc-text);
  border-radius: 999.9rem;
  color: var(--sfc-text);
  background: transparent;
  box-shadow: 0 0.1rem 0.2rem rgba(16, 24, 40, 0.05);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.soul-featured-collection__button:hover {
  color: var(--sfc-background);
  background: var(--sfc-text);
}

.soul-featured-collection__button:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.3rem;
}

.soul-featured-collection__products,
.soul-featured-collection__slider {
  min-width: 0;
  width: 100%;
}

.soul-featured-collection__slider {
  position: relative;
  display: block;
}

.soul-featured-collection__list {
  display: flex;
  width: 100%;
  min-width: 0;
  gap: var(--sfc-card-gap);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

.soul-featured-collection__list::-webkit-scrollbar {
  display: none;
}

.soul-featured-collection__item {
  width: min(var(--sfc-card-width), calc(100vw - 7rem));
  max-width: var(--sfc-card-width);
  flex: 0 0 min(var(--sfc-card-width), calc(100vw - 7rem));
  scroll-snap-align: start;
}

.soul-featured-collection__item .product-card-wrapper {
  height: 100%;
}

.soul-featured-collection .card__media {
  cursor: pointer;
}

.soul-featured-collection .card__media-link {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Resolve card typography only through the theme typography settings. */
.soul-featured-collection .cro-product-card--figma-action .card__heading,
.soul-featured-collection .cro-product-card--figma-action .card__heading .full-unstyled-link {
  font-family: var(--font-body-family) !important;
}

.soul-featured-collection .cro-product-card--figma-action .rating-count,
.soul-featured-collection .cro-product-card--figma-action .card-information > .price,
.soul-featured-collection .cro-product-card--figma-action.product-card-wrapper .price__regular .price-item--regular,
.soul-featured-collection .cro-product-card--figma-action.product-card-wrapper .price__sale .price-item--sale,
.soul-featured-collection .cro-product-card--figma-action.product-card-wrapper .price-item {
  font-family: var(--font-body-family) !important;
}

.soul-featured-collection {
  --cro-card-text: var(--sfc-text);
  --cro-card-accent: var(--sfc-accent);
}

.soul-featured-collection__controls {
  position: absolute;
  inset: 0;
  /* z-index: 12; */
  z-index: 3;
  display: block;
  height: 100%;
  pointer-events: none;
}

.soul-featured-collection__arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  width: 4.4rem;
  height: 4.4rem;
  min-width: 4.4rem;
  min-height: 4.4rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0.1rem solid #fff;
  border-radius: 999.9rem;
  color: #fff;
  background: var(--sfc-text);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);

  transition:
  background-color 0.25s ease,
  transform 0.25s ease,
  box-shadow 0.25s ease,
  border-color 0.25s ease;
}


.soul-featured-collection__arrow:hover {
  background-color: var(--sfc-accent);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0.5rem 1.4rem rgba(69, 48, 33, 0.18);
}

.soul-featured-collection__arrow .svg-wrapper {
  width: 1rem;
  height: 1rem;
}

.soul-featured-collection__arrow svg {
  width: 100%;
  height: 100%;
}

.soul-featured-collection__arrow--prev {
  left: 1rem;
}

.soul-featured-collection__arrow--next {
  right: 1rem;
}

.soul-featured-collection__arrow--prev svg {
  transform: rotate(90deg);
}

.soul-featured-collection__arrow--next svg {
  transform: rotate(-90deg);
}

.soul-featured-collection__arrow[disabled] {
  opacity: 0.45;
  cursor: default;
}

.soul-featured-collection__empty {
  padding: 4rem 0;
  color: var(--sfc-text);
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (min-width: 750px) {
  .soul-featured-collection {
    padding-top: var(--sfc-padding-top-desktop);
    padding-bottom: var(--sfc-padding-bottom-desktop);
  }

  .soul-featured-collection__content {
    gap: 2rem;
  }

  .soul-featured-collection__heading {
    font-size: 3.2rem;
    line-height: 1.25;
    /* margin-top: 1.2rem;
    margin-bottom: 1.4rem; */
  }

  .soul-featured-collection__products {
    width: calc(100% + ((100vw - min(100vw, var(--page-width))) / 2) + 5rem);
  }
}

@media screen and (min-width: 990px) {
  /* .soul-featured-collection__layout {
    grid-template-columns: calc(var(--sfc-copy-width) + var(--sfc-copy-offset)) minmax(0, 1fr);
    gap: var(--sfc-layout-gap);
  } */

  .soul-featured-collection__layout {
    grid-template-columns: var(--sfc-copy-width) minmax(0, 1fr);
    gap: var(--sfc-layout-gap);
  }

  .soul-featured-collection__content {
    /* margin-left: var(--sfc-copy-offset); */
    /* gap: 2.4rem; */
    gap: 0;
  }

  .soul-featured-collection__heading {
    font-size: 3.6rem;
    line-height: 4.4rem;
    margin-top: 1.2rem;
    margin-bottom: 2.4rem;
  }

  .soul-featured-collection__button {
    min-width: 18rem;
    min-height: 5.2rem;
    padding: 1.4rem 2.4rem;
    /* margin-top: 2.4rem; */
  }
}

@media screen and (max-width: 989px) {
  .soul-featured-collection__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
  }

  .soul-featured-collection__content {
    max-width: 44rem;
  }
}

@media screen and (max-width: 749px) {
  .soul-featured-collection__layout {
    gap: 2.8rem;
  }

  .soul-featured-collection__content {
    gap: 1.8rem;
  }

  .soul-featured-collection__products {
    width: calc(100% + ((100vw - min(100vw, var(--page-width))) / 2) + 1.5rem);
  }

  .soul-featured-collection__heading {
    max-width: 31rem;
  }

  .soul-featured-collection__controls {
    /* display: none; */
  }
}

@media (prefers-reduced-motion: reduce) {
  .soul-featured-collection__list {
    scroll-behavior: auto;
  }

  .soul-featured-collection__button {
    transition: none;
  }
}
