.shirts-page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 72px;
  max-width: 900px;
  margin: 0 auto;
}

.sh-hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.sh-hero-figure {
  margin: 0;
  width: clamp(200px, 30vw, 320px);
}

.sh-hero-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.7);
}

.sh-hero-text {
  text-align: left;
}

.sh-hero-text:last-child {
  text-align: right;
}

.sh-hero-text p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.9;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 600px) {
  .sh-hero {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .sh-hero-text,
  .sh-hero-text:last-child {
    text-align: center;
  }
}

.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 500px) {
  .sh-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
}

.sh-grid figure {
  margin: 0;
  transition: transform 0.2s ease;
}

.sh-grid figure:hover {
  transform: translateY(-4px);
}

.sh-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.5);
}

.sh-grid figcaption, .sh-hero figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.sh-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sh-contact p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.05em;
}

.sh-contact-link {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.sh-contact-link:hover {
  background: white;
  color: black;
}