.catalogue-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}
.no-click {
  cursor: default;
  opacity: 0.9;
}
