.breadcrumbs {
  list-style: none;
  padding: 16px 24px;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: #5f6368;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.5;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: block;
  color: #d3d3d3;
  margin-left: 0.8rem;
  font-weight: 300;
}

.breadcrumbs a {
  color: #7cc440;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 400;
}

.breadcrumbs a:hover {
  background: rgba(124, 196, 64, 0.05);
}

.breadcrumbs .active {
  color: #2f3439;
  font-weight: 400;
  padding: 4px 8px;
  opacity: 0.9;
}

.icon-home {
  fill: #7cc440;
  transition: fill 0.2s ease;
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.breadcrumbs a:hover .icon-home {
  opacity: 1;
  transform: scale(1.05);
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 12px 16px;
    font-size: 0.88rem;
    gap: 0.5rem;
  }
            
  .breadcrumbs li::after {
    margin-left: 0.6rem;
  }
            
  .breadcrumbs a {
    padding: 3px 6px;
  }
            
  .icon-home {
    width: 16px;
    height: 16px;
  }
}
    
