.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b5d50;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(59, 93, 80, 0.2);
}
.back-button:hover {
  background: #2f4e43;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 93, 80, 0.3);
}
.category-card { position: relative; cursor: pointer; }
.subcategories-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(59,93,80,.9);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}