/* INSTINCT PARIS — navigation éditoriale de la boutique. */
.shop-catalog {
  padding-top: 145px;
}

.shop-universes {
  margin-bottom: 34px;
}

.shop-universes__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .42fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.shop-universes__head .section-index {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
}

.shop-universes__head h2 {
  margin: 0;
  font: 700 clamp(3.1rem, 6.8vw, 8rem)/.76 var(--display);
  letter-spacing: -.11em;
}

.shop-universes__head h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .88);
}

.shop-universes__head > p:last-child {
  max-width: 275px;
  margin: 0 0 7px;
  color: #9da39f;
  font-size: .78rem;
  line-height: 1.75;
}

.shop-catalog .category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid #303438;
  background: #303438;
}

.shop-catalog .category-list a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 154px;
  padding: 18px 17px 16px;
  overflow: hidden;
  border: 0;
  color: #f1f2ef;
  background: #0d0f11;
  text-align: left;
  isolation: isolate;
  transition: color .35s ease, background-color .35s ease, transform .35s ease;
}

.shop-catalog .category-list a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(84, 112, 255, .26), transparent 52%);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .35s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.shop-catalog .category-list a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.shop-catalog .category-list a > span {
  color: #778fff;
  font: 500 .55rem var(--mono);
  letter-spacing: .14em;
}

.shop-catalog .category-list a strong {
  margin-top: auto;
  font: 700 clamp(.95rem, 1.45vw, 1.65rem)/.9 var(--display);
  letter-spacing: -.065em;
}

.shop-catalog .category-list a small {
  margin-top: 9px;
  color: #858b88;
  font: 500 .43rem/1.35 var(--mono);
  letter-spacing: .08em;
}

.shop-catalog .category-list a b {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #777e7a;
  font-size: .9rem;
  font-weight: 400;
  transition: transform .35s ease, color .35s ease;
}

.shop-catalog .category-list a:hover b {
  color: #aebaff;
  transform: translate(3px, 3px);
}

.shop-catalog .category-list a:hover {
  color: #07090c;
  background: #6f88ff;
}

.shop-catalog .category-list a:hover > span,
.shop-catalog .category-list a:hover small,
.shop-catalog .category-list a:hover b {
  color: #111624;
}

.shop-catalog .category-list a:focus-visible {
  z-index: 2;
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.shop-catalog .catalog-controls {
  padding-top: 18px;
}

@media (max-width: 1000px) {
  .shop-catalog .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 600px) {
  .shop-catalog {
    padding-top: 108px;
  }

  .shop-universes {
    margin-bottom: 18px;
  }

  .shop-universes__head {
    display: block;
    margin-bottom: 28px;
  }

  .shop-universes__head .section-index {
    margin-bottom: 17px;
  }

  .shop-universes__head h2 {
    font-size: 13.8vw;
  }

  .shop-universes__head > p:last-child {
    max-width: 230px;
    margin: 22px 0 0;
    font-size: .7rem;
  }

  .shop-catalog .category-list {
    gap: 1px;
  }

  .shop-catalog .category-list a {
    min-height: 119px;
    padding: 14px 12px 13px;
  }

  .shop-catalog .category-list a strong {
    font-size: clamp(.86rem, 4vw, 1.05rem);
  }

  .shop-catalog .category-list a small {
    font-size: .38rem;
  }

  .shop-catalog .category-list a b {
    top: 11px;
    right: 11px;
  }

  .shop-catalog .catalog-controls {
    padding-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-catalog .category-list a,
  .shop-catalog .category-list a::before,
  .shop-catalog .category-list a b {
    transition: none;
  }
}
