/** Shopify CDN: Minification failed

Line 370:0 Expected "}" to go with "{"

**/
/* ============================================================
   Category Selector Section ("Find your Pair")
   Note: This theme sets html { font-size: 62.5% } so 1rem = 10px.
   All rem values here use that base: desired_px / 10 = rem.
   Figma frame reference: 1920px desktop width, node 344:846.
   ============================================================ */

.category-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6rem; /* 60px */
  width: 100%;
  padding-block: 6rem 12rem;
  background: #ffffff;
}

/* ---- Header ---- */

.category-selector__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem; /* 16px */
  width: 100%;
  text-align: center;
}

.category-selector__eyebrow {
  margin: 0;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;      /* 14px */
  letter-spacing: 0.14rem; /* 1.4px */
  text-transform: uppercase;
  color: #292825;
}

.category-selector__heading {
  margin: 0;
  font-weight: 400;
  font-size: 3.6rem;         /* 36px */
  line-height: 1.2;
  color: #11110f;
  /* !important needed: theme's global custom.css forces
     "h1,h2,h3,h4,h5,h6 { font-family: Sinkin Sans !important; letter-spacing: 0 !important; }"
     which would otherwise silently override the Figma-specified typeface/tracking on this <h2>. */
  font-family: 'PP Editorial New', serif !important;
  letter-spacing: -0.036rem !important; /* -0.36px */
}

.category-selector__subtext {
  margin: 0;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 400;
  font-size: 1.6rem; /* 16px */
  color: #292825;
}

/* ---- Row ---- */

.category-selector__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* ---- Category List ---- */

.category-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* 30px */
  flex: 1 1 46rem;  /* basis ~460px, up to 658px */
  max-width: 65.8rem; /* 658px */
  width: 100%;
}

.category-list__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(41, 41, 41, 0.2);
}

.category-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-item__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem; /* 12px */
  text-decoration: none;
  white-space: nowrap;
}

.category-item__number {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 2rem;    /* 20px */
  line-height: 3rem;  /* 30px */
  color: #292929;
}

.category-item__name {
  font-family: 'PP Editorial New', serif;
  font-weight: 400;
  font-size: 2.8rem; /* 28px */
  line-height: 1.2;
  color: #11110f;
}

.category-item.is-active .category-item__trigger {
  display: none;
}

.category-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  width: 70%;
  max-width: 100%;
  opacity: 0;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.category-item.is-active .category-item__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.category-item__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem; /* 28px */
  min-height: 0;
  overflow: hidden;
  transform: translateY(-1.2rem);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item.is-active .category-item__panel-inner {
  transform: translateY(0);
}

.category-item__image-wrap {
  display: none; /* shown on mobile only, see responsive rules below */
  width: 100%;
  overflow: hidden;
}

.category-item__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.category-item__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem; /* 12px */
  width: 100%;
  text-align: center;
}

.category-item__title {
  margin: 0;
  font-family: 'PP Editorial New', serif !important;
  font-style: italic;
  font-weight: 400;
  font-size: 2.8rem; /* 28px */
  line-height: 1.2;
  color: #4c1616;
}

.category-item__tagline {
  margin: 0;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500;
  font-size: 1.8rem; /* 18px */
  line-height: 3rem; /* 30px */
  color: #292825;
}

.category-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;              /* 10px */
  padding: 1.6rem 3.2rem;  /* 16px 32px */
  background: #2e0d12;    /* flattened: 20% black over #3A1016 */
  color: #ffffff;
  border: 1px solid rgba(41, 41, 41, 0.2);
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 500;
  font-size: 1.6rem; /* 16px */
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}

.category-item__btn svg {
  flex-shrink: 0;
}

.category-item__btn:hover,
.category-item__btn:focus-visible {
  opacity: 0.85;
}

.category-item__btn:focus-visible {
  outline: 2px solid #2e0d12;
  outline-offset: 3px;
}

/* ---- Media ---- */

.category-selector__media {
  position: relative;
  flex: 1 1 40rem; /* basis ~400px, up to 623px */
  max-width: 62.3rem; /* 623px */
  width: 100%;
  aspect-ratio: 623 / 696;
  overflow: hidden;
}

.category-selector__image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.category-selector__image-wrap.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.category-selector__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- Responsive ---- */

@media screen and (max-width: 1200px) {
  .category-selector {
    padding-block: 6rem 10rem;
  }
}

@media screen and (max-width: 989px) {
  .category-selector {
    padding-block: 5rem 8rem;
    gap: 4rem;
  }

  .category-selector__heading {
    font-size: 2.8rem;
  }

  .category-selector__row {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .category-selector__media {
    max-width: 60rem;
    flex-basis: auto;
  }
  .category-list{
    max-width: 100%;
  }

  .category-selector__media {
    display: none;
  }

  .category-item__image-wrap {
    /* margin-block: 20px; */
    display: block;
  /* }
  .category-item__panel-inner {
  display: contents;
}
.category-item__copy {
  order: -1;
} */
}

@media screen and (max-width: 749px) {
  .category-selector {
    padding-block: 4rem 6rem;
    gap: 3.2rem;
  }

  .category-selector__header {
    gap: 1.2rem;
  }

  .category-selector__eyebrow {
    font-size: 1.2rem;
  }

  .category-selector__heading {
    font-size: 2.4rem;
  }

  .category-list {
    gap: 2.4rem;
  }

  .category-item__name,
  .category-item__title {
    font-size: 2.2rem;
  }

  .category-item__panel {
    width: 100%;
    gap: 2rem;
  }

  .category-item__tagline {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .category-item__btn {
    width: 100%;
    padding: 1.4rem 2.4rem;
  }
}

@media screen and (max-width: 479px) {
  .category-item__number {
    font-size: 1.6rem;
  }

  .category-item__name,
  .category-item__title {
    font-size: 2rem;
  }
}
