.r34-shop-categories {
  margin-top: 34px;
}

.r34-shop-category-intro {
  max-width: 680px;
  margin-bottom: 30px;
}

.r34-shop-category-intro h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.r34-shop-category-intro p {
  max-width: 580px;
  margin: 18px 0 0;
  color: #74654e;
  font-size: 1rem;
  line-height: 1.7;
}

.r34-shop-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.r34-shop-category-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #e7d2aa;
  color: #fffaf0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 42px rgba(43, 36, 26, .12);
  isolation: isolate;
}

.r34-shop-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.r34-shop-category-card:hover img,
.r34-shop-category-card:focus-visible img {
  transform: scale(1.035);
}

.r34-shop-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(17, 16, 13, .82) 100%);
}

.r34-shop-category-card__copy {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 28px;
}

.r34-shop-category-card__copy strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.r34-shop-category-card__copy span {
  display: block;
  max-width: 34ch;
  margin-top: 10px;
  color: rgba(255, 250, 240, .84);
  font-size: .88rem;
  line-height: 1.55;
}

.r34-shop-category-card--selected {
  outline: 3px solid #b98529 !important;
  outline-offset: 3px;
}

.r34-shop-results-heading {
  margin: 64px 0 24px;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 16, 13, .16);
}

.r34-shop-results-heading .eyebrow {
  margin: 0 0 10px;
  color: #b98529;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.r34-shop-results-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.r34-shop-results-heading p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #74654e;
  line-height: 1.65;
}

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

@media (max-width: 680px) {
  .r34-shop-categories {
    margin-top: 24px;
  }

  .r34-shop-category-grid {
    grid-template-columns: 1fr;
  }

  .r34-shop-category-card {
    min-height: 390px;
  }

  .r34-shop-category-card__copy {
    padding: 24px;
  }
}