/* Category card styles */
.category-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1rem;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.12);
}

.category-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: rgba(34, 197, 94, 0.12);
  color: #15803d;
  margin: 0 auto 1rem;
}
