/* Category Grid Styles */
.parent-cat-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.parent-cat-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Arrow indicator styles */
.arrow-indicator {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-indicator svg {
  transition: transform 0.2s ease-in-out;
  color: hsl(var(--bc) / 0.6);
}

.parent-cat-card.has-children:hover .arrow-indicator svg {
  color: hsl(var(--p));
}

.child-categories-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.child-categories-list a {
  color: hsl(var(--p));
  font-weight: 500;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.2s;
}
.child-categories-list a:hover {
  color: hsl(var(--pf));
  text-decoration: underline;
}