/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 9:16 Comments in CSS use "/* ... */" instead of "//"
Line 9:54 Expected identifier but found "%"

**/
{%- comment -%} // FILE: assets/ln-subcategories.css {%- endcomment -%}
.ln-subcats {
  --ln-subcats-gap: 10px;
  --ln-subcats-radius: 999px;
  --ln-subcats-border: rgba(0,0,0,.12);
  --ln-subcats-text: rgba(0,0,0,.86);
  --ln-subcats-muted: rgba(0,0,0,.62);
  --ln-subcats-bg: #fff;
  --ln-subcats-fill: rgba(0,0,0,.06);
  --ln-subcats-active-bg: rgba(0,0,0,.86);
  --ln-subcats-active-text: #fff;
  --ln-subcats-minh: 44px;
  padding: 18px 0;
  background: transparent;
}

.ln-subcats__inner {
  display: block;
}

.ln-subcats__heading {
  margin: 0 0 12px 0;
  font-size: calc(var(--font-heading-scale) * 1.35rem);
  line-height: 1.2;
}

.ln-subcats__nav {
  width: 100%;
}

.ln-subcats__list {
  display: flex;
  gap: var(--ln-subcats-gap);
  align-items: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 4px;
  margin: 0;
  list-style: none;
  scroll-snap-type: x proximity;
}

.ln-subcats__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.ln-subcats__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ln-subcats-minh);
  padding: 10px 14px;
  border-radius: var(--ln-subcats-radius);
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  outline: none;
}

.ln-subcats--outline .ln-subcats__pill {
  background: var(--ln-subcats-bg);
  color: var(--ln-subcats-text);
  border: 1px solid var(--ln-subcats-border);
}

.ln-subcats--filled .ln-subcats__pill {
  background: var(--ln-subcats-fill);
  color: var(--ln-subcats-text);
  border: 1px solid transparent;
}

.ln-subcats__pill:hover {
  transform: translateY(-1px);
}

.ln-subcats__pill:focus-visible {
  box-shadow: 0 0 0 2px rgba(0,0,0,.18);
}

.ln-subcats__pill.is-active {
  background: var(--ln-subcats-active-bg) !important;
  color: var(--ln-subcats-active-text) !important;
  border-color: transparent !important;
}

.ln-subcats--center .ln-subcats__list {
  justify-content: center;
}

@media screen and (min-width: 990px) {
  .ln-subcats {
    padding: 22px 0;
  }
  .ln-subcats__list {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ln-subcats--center .ln-subcats__list {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ln-subcats__pill {
    transition: none;
  }
  .ln-subcats__pill:hover {
    transform: none;
  }
}