:root {
  --crumb-bg: rgba(113, 106, 106, 0.08);
  --crumb-bg-hover: rgba(255, 255, 255, 0.12);
  --crumb-border: rgba(255, 255, 255, 0.01);
  --crumb-border-hover: rgba(255, 255, 255, 0.22);
  --crumb-text: rgba(255, 255, 255, 0.94);
  --crumb-text-soft: rgba(255, 255, 255, 0.171);
  --crumb-separator: rgba(164, 146, 146, 0.55);
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.crumb,
.crumb-current {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 15px;
  border-radius: 999px;
  border: 1px solid var(--crumb-border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--crumb-text);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.crumb::after,
.crumb-current::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.crumb:hover,
.crumb:focus-visible {
  background: var(--crumb-bg-hover);
  border-color: var(--crumb-border-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.crumb:hover::after,
.crumb:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.crumb-sep {
  color: var(--crumb-separator);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.crumbs:hover .crumb-sep {
  opacity: 0.9;
  transform: translateX(1px);
}

.crumb-current {
  cursor: default;
  background: rgba(173, 173, 173, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.crumb-current::after {
  transform: scaleX(1);
  opacity: 0.75;
}
.crumb {
  animation: crumbFadeIn 0.35s ease;
}

@keyframes crumbFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}