.catalogbutton {
  display: inline-block;
  padding: 11px 22px;
  background-color: #ffffff;
  color: #000000;
  font-family: YS Text, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.catalogbutton:hover {
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.catalogbutton:active {
  background-color: #e5e5e5;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.12);
  transform: scale(0.98);
}

.catalogbutton:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
