/* ============================================
   Product category cards (homepage)
   ============================================ */

.sec-lead {
  max-width: 42ch;
  margin: 0.5rem auto 0;
  color: var(--swa-muted, #6a7a70);
  font-size: 1rem;
  line-height: 1.5;
}

.product-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.product-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 241, 0.7));
  border: 1px solid rgba(34, 130, 58, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 32px rgba(12, 40, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-cat:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 130, 58, 0.32);
  box-shadow:
    inset 0 1px 0 #fff,
    0 20px 40px rgba(12, 40, 24, 0.1);
}

.product-cat img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.35rem;
  background: transparent !important;
}

.product-cat h3 {
  font-family: var(--font-head, Syne, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0e1411;
}

.product-cat p {
  margin: 0;
  font-size: 0.88rem;
  color: #6a7a70;
}

.product-cat .pc-go {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #145524;
}

@media (max-width: 900px) {
  .product-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .product-cats {
    grid-template-columns: 1fr;
  }
}
