.back-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #374151;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease,
    background-color 0.2s ease;
}

.back-button--secondary {
  background: #f3f4f6;
}

.back-button:hover {
  background: #f9fafb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.back-button__icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.back-button:hover .back-button__icon {
  transform: translateX(-4px);
}

.back-button__label {
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
