.site-shop .hero-content h1 {
  width: min(13ch, 100%);
}

.collection-list {
  width: min(94vw, 1120px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  gap: 1.1rem;
}

.collection-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.collection-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.collection-row h2 {
  margin: 0.5rem 0 0.8rem;
}

.collection-row p {
  max-width: 38rem;
  color: var(--muted);
}

.collection-row .button {
  width: auto;
  margin-top: 1rem;
}

.product-detail {
  width: min(94vw, 1260px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--green-deep);
  font-weight: 760;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.product-media {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--paper-muted);
}

.product-copy {
  padding-top: 0.5rem;
}

.product-copy h1 {
  max-width: 11ch;
  margin-top: 0.5rem;
}

.product-copy .lead {
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1.16rem;
}

.product-copy p:not(.lead):not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
}

.product-copy h2 {
  margin-top: 1.5rem;
  font-size: 1.35rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.52rem;
  border-radius: 50%;
  background: var(--brass);
}

.related-products {
  width: 100%;
  padding-bottom: 0;
}

.product-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

@media (max-width: 860px) {
  .collection-row,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .collection-row .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .product-copy h1 {
    max-width: 100%;
  }

  .product-grid.compact {
    grid-template-columns: 1fr;
  }
}
