/* City page specific styles - extends toilet-finder.css */

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* City stats section */
.city-stats-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card) 100%);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.city-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-row .stat-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

/* Toilet list in SEO content */
.toilet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.toilet-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.toilet-list-item:last-child {
  border-bottom: none;
}

.toilet-name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
}

.toilet-badges {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .city-stats-section {
    padding: 0.75rem;
  }
  
  .stat-row .stat-label {
    font-size: 0.85rem;
  }
  
  .toilet-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .toilet-badges {
    font-size: 0.85rem;
  }
}
