.ccw-category-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ccw-category-item {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 1px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}

.ccw-category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.ccw-cat-left img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 6px;
}

.ccw-cat-right h3 {
  margin: 0;
  font-size: 12px;
  color: #333;
}
