/* ── Category Cards (home page) ── */
.cat-card {
  border: none;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 32px 20px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  color: #fff;
  text-decoration: none;
}
.cat-card .cat-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cat-card .cat-badge {
  display: inline-block;
  background: rgba(255,255,255,.28);
  border-radius: 50px;
  padding: 3px 14px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.cat-col { margin-bottom: 24px; }

/* Section heading */
.section-cat-header { text-align: center; margin-bottom: 40px; }
.section-cat-header h2 { font-weight: 800; font-size: 2rem; color: #1a1a2e; }
.section-cat-header p  { color: #6c757d; font-size: 1rem; margin-top: 6px; }
