.sf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #0b1726;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transition: all 0.3s ease;
}
.sf-breadcrumb::-webkit-scrollbar { display: none; }

.sf-home svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.sf-home:hover svg {
  transform: scale(1.1);
}

.sf-sep {
  opacity: 0.6;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.sf-cat, .sf-current {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.sf-cat:hover {
  color: #000;
}
.sf-current {
  font-weight: 600;
}

@media (max-width: 480px) {
  .sf-breadcrumb {
    font-size: 13px;
    gap: 6px;
  }
}
